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

/* Fondo general */
body {
  font-family: 'caveat', serif;
  color: #fff;
  background: url("../assets/microfono.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(96, 56, 43, 0.6);
  z-index: 0;
}

header {
  text-align: center;
  padding: 1rem;
  background-color: rgba(96, 56, 43, 0.7);
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 2rem;
}

/* Contenedor principal */
main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.podcast-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Título del podcast */
.podcast-wrapper h2 {
  font-size: 2.3rem;
  font-family: 'Caveat', cursive;
  margin-bottom: 1rem;
  color: #fceadf;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.podcast-wrapper p {
  font-size: 1.1rem;
  color: #fff4ed;
  margin-bottom: 2rem;
}


/* 🔥 Ajuste de tamaño y marco del micrófono */
.mic-frame {
  max-width: 500px;
  max-height: 300px;
  overflow: hidden;
  border: 4px solid rgba(242, 201, 159, 0.8);
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(242, 201, 159, 0.4);
  margin: 1.5rem auto;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.mic-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.mic-frame:hover {
  box-shadow: 0 0 30px 10px rgba(255, 215, 160, 0.8),
              0 0 10px 5px rgba(255, 200, 120, 0.6) inset;
  transform: scale(1.02);
}

/* 🧹 Menos espacio en el main para evitar tanto scroll */
main {
  padding: 1.2rem;
}

/* Botones */
.botones-secciones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.boton-temporada {
  font-size: 18px;
  font-family: 'Caveat', cursive;
  width: 170px;
  height: 50px;
  border: 1px solid rgba(150, 112, 78, 1);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 0px 2px rgba(242, 201, 159, 1);
  text-shadow: 0px 1px 0px rgba(102, 69, 40, 1);
  background: linear-gradient(rgba(128, 76, 40, 1), rgba(108, 48, 14, 1));
  text-decoration: none;
  display: inline-block;
  line-height: 50px;
  transition: all 0.3s ease;
  text-align: center;
}

.boton-temporada:hover {
  background: linear-gradient(rgba(108, 48, 14, 1), rgba(128, 76, 40, 1));
  transform: scale(1.05);
}
.return-link {
  display: inline-block;
  background: transparent;
  color: #ffccbc;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border: 2px solid #ffccbc;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  margin-top: 2rem;
}

.return-link:hover {
  background: #ffccbc;
  color: #1f1712;
  box-shadow: 0 0 15px rgba(255, 204, 188, 0.8);
  transform: scale(1.05);
}
/* --- FOOTER ESTILIZADO --- */
.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);
}
/* SOLO para podcast.html */
.fondo-podcast::before {
  content: "";
  background: url("../assets/microfono.jpg") no-repeat center center fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.08;
  filter: blur(1px);
}
