/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: url("../assets/microfono.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color: #1f1712; /* Tono oscuro parecido al fondo del micro */
  color: #fef8f6;
  padding: 1rem;
  min-height: 100vh;
}

/* Cabecera */
header {
  text-align: center;
  margin-bottom: 1rem;
}

header h1 {
  font-size: 2.5rem;
  color: #fef8f6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* Botones de navegación entre temporadas y debates */
.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.nav-btn {
  text-decoration: none;
  background: transparent;
  color: #ffccbc;
  border: 2px solid #ffccbc;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.nav-btn:hover {
  background: #ffccbc;
  color: #1f1712;
  box-shadow: 0 0 15px rgba(255, 204, 188, 0.8);
  transform: scale(1.05);
}

/* Sección de episodios */
main {
  max-width: 1200px;
  margin: 0 auto;
}

.episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.episode {
  background: linear-gradient(
    145deg,
    rgba(43, 28, 23, 0.85),
    rgba(60, 40, 30, 0.8)
  );
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(255, 215, 160, 0.3); /* línea dorada */
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.episode:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 215, 160, 0.4);
  border-bottom: 1px solid rgba(255, 215, 160, 0.6);
}

.episode:hover::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 10px;
  background: radial-gradient(rgba(255, 215, 160, 0.2), transparent);
  z-index: -1;
}

.episode h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fef8f6;
}

.episode a {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: #ffccbc;
  border: 2px solid #ffccbc;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.episode a:hover {
  background: #ffccbc;
  color: #1f1712;
  box-shadow: 0 0 12px rgba(255, 204, 188, 0.7);
  transform: scale(1.05);
}

/* Botón de volver al podcast principal */
.return {
  text-align: center;
  margin-top: 2rem;
}

.return a {
  text-decoration: none;
  font-weight: bold;
  color: #ffccbc;
  transition: transform 0.3s, box-shadow 0.3s;
}

.return a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 204, 188, 0.8);
}
.site-footer {
  background: rgba(60, 30, 20, 0.85);
  color: #fceadf;
  text-align: center;
  padding: 2rem 1rem;
  font-family: 'Georgia', serif;
  position: relative;
  z-index: 1;
}

.site-footer h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.site-footer p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.site-footer h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links li a {
  color: #fdd1b6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #ffdcb3;
  text-shadow: 0 0 5px rgba(255, 204, 188, 0.8);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-socials img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.footer-socials img:hover {
  transform: scale(1.2);
}
