/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: white;
}

/* === Navbar === */
header.navbar {
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin: 0 15px;
}

.nav-links a.active {
  color: #ff3d75;
}

.contact-btn {
  background: transparent;
  border: 1px solid #ff3d75;
  color: #ff3d75;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  background-color: #ff3d75;
  color: #fff;
}

/* === Hero Section === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    padding-top: 80px;
  }
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
}

.hero-content span {
  color: #ff3d75;
}

.hero-content p {
  margin-top: 10px;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* === Hero Image === */
.hero-image {
  position: relative;
  z-index: 3;
  max-width: 90%;
  border-radius: 12px;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .hero-image {
    margin-left: 100px;
    max-width: 37%;
  }
}

/* === Botones === */
.btn-primary {
  background-color: #ff3d75;
  padding: 10px 20px;
  border: none;
  margin-top: 20px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e43366;
}

.btn-secondary {
  background: none;
  border: 1px solid #ff3d75;
  color: #ff3d75;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

/* === Latest Album === */
.latest-album audio {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .album-grid {
    grid-template-columns: 1fr;
  }

  .album-info iframe {
    height: 250px;
  }
}

/* === About Section === */
.about {
  display: flex;
  flex-direction: column-reverse;
  padding: 60px 20px;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .about {
    flex-direction: row;
    justify-content: space-between;
    padding: 60px 40px;
  }
}

.about-text {
  width: 100%;
  max-width: 500px;
}

/* === About Image === */
.about-img img {
  width: 280px;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* === Events Section === */
.events {
  background: #000000;
  text-align: center;
}

.event-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .event-grid {
    flex-direction: row;
    justify-content: space-around;
  }
}

.event-card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .event-card {
    max-width: 90%;
  }
}

/* === Music Genres Section === */
.music-genres {
  background: #111;
  text-align: center;
  padding: 60px 20px;
}

.genre-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  gap: 40px;
}

.genre {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px; /* ancho fijo para que se alineen bien */
}

.genre img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* opcional, para bordes suaves */
}

.genre-name {
  margin-top: 10px;
  color: white;
  font-size: 18px;
  text-align: center;
}

@media (max-width: 768px) {
  .genre {
    width: 45%; /* 2 por fila si cabe */
  }
}

@media (max-width: 480px) {
  .genre {
    width: 80%; /* 1 por fila en móviles pequeños */
  }
}

/* === Footer === */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
}

/* === Carrusel de Videos Musicales === */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;

  /* Ocultar scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  position: relative;
  flex: 0 0 auto;
  width: 500px;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  box-shadow: 0 8px 20px rgba(255, 61, 117, 0.8);
  transform: scale(1.05);
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* Estilo para el botón de play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 61, 117, 0.8);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

/* Mostrar botón solo al pasar el cursor */
.video-card:hover .play-btn {
  opacity: 1;
  pointer-events: auto;
}

/* Estilo para video ampliado */
.video-card.expanded {
  position: relative;
  z-index: 999;
  transform: scale(1.4);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .video-card.expanded {
    transform: scale(1.1);
  }
}

/* Botones del carrusel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-btn.left {
  left: 0.5rem;
}

.carousel-btn.right {
  right: 0.5rem;
}

/* === Bio Section === */
.bio-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: auto;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bio-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .bio-section h1 {
    font-size: 1.8rem;
  }
}

/* Contenedor que tendrá imagen izquierda + texto */
.bio-top-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
}

/* Imagen izquierda */
.bio-photo {
  flex: 0 0 400px;
}

/* Imagenes estilo similar */
.bio-img {
  width: 400px;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

/* Texto central */
.bio-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  min-width: 250px;
}

/* === NUEVO BLOQUE: Texto final e imagen alineados === */
.bio-final-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.bio-text-final {
  flex: 1 1 60%;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
}

.bio-photo-right {
  flex: 1 1 35%;
  margin-top: 0; /* ya no es necesario el margen si está al lado */
}

.bio-img-inferior-derecha {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .bio-top-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bio-photo,
  .bio-photo-right {
    flex: 0 0 auto;
    margin-bottom: 20px;
  }

  .bio-img, .bio-img-inferior-derecha {
    width: 80%;
    max-width: 300px;
  }

  .bio-text,
  .bio-text-final {
    flex: 1 1 auto;
    min-width: auto;
    text-align: center;
  }

  .bio-final-section {
    flex-direction: column;
    align-items: center;
  }

  .bio-photo-right {
    align-self: center;
  }
}

/* === Show Page Content === */
.content {
  padding-top: 120px; /* deja espacio bajo el header fijo */
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  text-align: center;
  color: white;
}

@media (max-width: 480px) {
  .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* === Sección de Shows === */
.show-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.show-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  flex-wrap: wrap;
  justify-content: center;
}

.show-item img {
  width: 461px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.show-text {
  max-width: 600px;
  color: white;
}

.show-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.show-text p {
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .show-item {
    flex-direction: column;
    text-align: center;
  }

  .show-text {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .show-item img {
    width: 90%;
    height: auto;
  }
}

/* === Carrusel de Eventos === */
.events {
  margin-top: 60px;
  text-align: center;
}

.events h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

/* Contenedor general del carrusel */
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 10px 40px;
}

/* Carrusel con scroll horizontal */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}

/* Oculta la barra de scroll horizontal */
.carousel::-webkit-scrollbar {
  display: none;
}

.video-card {
  min-width: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.05);
}

.video-card video {
  width: 100%;
  height: 621px;
  display: block;
}

@media (max-width: 768px) {
  .video-card video {
    height: 250px;
  }
}

/* Botones de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px 14px;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* Adaptabilidad para móviles */
@media (max-width: 768px) {
  .carousel-container {
    padding: 10px 20px;
  }

  .video-card {
    min-width: 250px;
  }

  .carousel-btn {
    font-size: 22px;
    padding: 6px 10px;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #111;
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.nav-links a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

.nav-links a.active {
  font-weight: bold;
  border-bottom: 2px solid white;
}

.contact-btn {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

/* Álbumes */
.latest-album {
  padding: 2rem;
}

.latest-album h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album-info iframe {
  width: 100%;
  height: 352px;
  border-radius: 12px;
  border: none;
}

@media (max-width: 768px) {
  .latest-album {
    padding: 1.5rem 1rem;
  }

  .latest-album h2 {
    font-size: 1.5rem;
  }
}

/* Footer */
footer {
  background-color: #000;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
/* === Contactos === */
.contactos-section {
  padding: 120px 20px 60px;
  text-align: center;
  background-color: #0e0e0e;
}

.contactos-section h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff3d75;
}

.contactos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Tarjeta de contacto */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 300px;
  flex: 1 1 300px;
}

.contact-card:hover {
  transform: scale(1.05);
}

.contact-card img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 61, 117, 0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card img:hover {
  box-shadow: 0 8px 24px rgba(255, 61, 117, 0.6);
}

.contact-name {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
}

/* Responsive Contactos */
@media (max-width: 768px) {
  .contactos-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .contact-card img {
    max-width: 180px;
  }

  .contact-name {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    gap: 20px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
  }
}

/* Mostrar ambas imágenes por defecto (escritorio) */
.freddy-image,
.gallo-image {
  display: block;
}

/* Solo mostrar gallo.png en móvil */
@media (max-width: 768px) {
  .gallo-image {
    display: none !important;
  }

  .freddy-image {
    display: block !important;
    margin: auto;
  }
}

/* Arreglo visual solo en escritorio para evitar que se monten */
@media (min-width: 768px) {
  .hero-images {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }

  .freddy-image {
    margin-left: 0; /* sin margen adicional */
  }

  .gallo-image {
    margin-left: 100px; /* mismo margen que tenías en .hero-image */
  }
}

@media (max-width: 768px) {
  .bio-text,
  .bio-text-final {
    padding: 0 10px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .show-text {
    padding: 0 15px;       /* Espacio horizontal */
    font-size: 1rem;       /* Tamaño de letra legible */
    line-height: 1.6;      /* Mejor interlineado */
    text-align: justify;   /* Texto justificado para mejor organización */
    max-width: 100%;       /* Que ocupe todo el ancho posible */
    margin: 0 auto;        /* Centrado horizontal si aplica */
  }
}

.serenatas-section {
  background: #111;
  color: white;
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.serenatas-section h2 {
  color: #ff3d75;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.serenatas-section p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.serenatas-section .btn-primary {
  display: inline-block;
  margin-top: 20px;
}




