/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Restored background: Dark burgundy gradient */
    background: linear-gradient(180deg, #000000 0%, #C82333 100%);
    color: #ffffff; /* White text */
    line-height: 1.6;
    min-height: 100vh;
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
    padding: 20px; /* Add some padding around the content */
}

/* General container for better centering and max-width control */
.container {
    width: 100%;
    max-width: 700px; /* Adjust max-width as needed */
    text-align: center; /* Ensure text inside sections is centered */
}


/* Hero Section */
.hero {
    text-align: center;
    padding: 20px 20px 30px; /* Adjusted padding */
    width: 100%; /* Ensure it takes full width of container */
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 8vw, 4rem); /* Se adapta pero sin exagerar */
  color: #e8cf94;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow:
    1px 1px 3px #000000,     /* 🌑 sombra negra para contorno */
    0 0 8px #e8cf94,
    0 0 12px #e8cf94;
  animation: neonPulse 2s ease-in-out infinite;
}





.subtitulo {

  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem); /* 🔼 Esto agranda el texto y lo hace responsivo */
  margin: 10px 0;
  color: #f0f0f0;
  text-transform: uppercase;       /* Opcional, para más impacto */
  letter-spacing: 1px;             /* Opcional, espacio entre letras */
}


.descripcion {
    font-size: clamp(1rem, 3vw, 1.1rem); /* Responsive font size */
    margin-top: 15px;
    color: #e0e0e0; /* Lighter gray for description */
    max-width: 500px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}

/* Event Information Section */
.evento-info {
    text-align: center;
    padding: 30px 20px;
    /* Restored semi-transparent white background */
    background: rgba(255, 255, 255, 0.1);
    margin: 30px auto; /* Center block and add vertical margin */
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Slightly stronger shadow for contrast */
}

/* Info Item Styling */
.info-item {
    margin: 15px 0;
    padding-bottom: 15px;
    /* Lighter border for separation */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(0.9rem, 2.5vw, 1rem); /* Responsive font size */
}

.info-item:last-child {
    border-bottom: none; /* Remove border from last item */
}

.info-item strong {
    color: #ffffff; /* White labels */
    font-weight: 600; /* Slightly bolder */
    margin-right: 8px;
}

/* Countdown Timer Section */
.contador {
    display: flex;
    justify-content: center;
    align-items: center; /* Align items vertically */
    
    gap: 15px; /* Space between items */
    padding: 5px 15px;
    width: 100%; /* Ensure it takes full width of container */
}

.contador-item {
    /* Restored semi-transparent white background */
    background: rgba(255, 255, 255, 0.15);
    padding: 15px; /* Adjusted padding */
    border-radius: 10px; /* Slightly smaller radius */
    text-align: center;
    min-width: 75px; /* Adjusted min-width */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    /* Corrected box-shadow with subtle effect */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; /* Stack number and label */
}

.contador-item span {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsive font size for numbers */
    font-weight: 600; /* Bolder numbers */
    line-height: 1.1; /* Adjust line height */
}

.contador-item small {
    font-size: clamp(0.7rem, 2vw, 0.8rem); /* Responsive font size for labels */
    color: #e0e0e0; /* Lighter color for labels */
    margin-top: 5px; /* Space between number and label */
    text-transform: uppercase; /* Uppercase labels */
    letter-spacing: 0.5px; /* Slight letter spacing */
}


/* Confirmation Button Section */
.confirmar {
    text-align: center;
    padding: 30px 20px;
    width: 100%; /* Ensure it takes full width of container */
}

.boton-confirmar {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  background-color: #5c1a1b; /* Fondo bordó */
  color: #e8cf94; /* Texto dorado */
    
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #e8cf94, 0 0 20px #e8cf94;
  animation: pulse 2s infinite;
}

.boton-confirmar:hover {
  color: #5c1a1b; /* Texto bordó */
  background-color: #e8cf94; /* Fondo dorado */
  border-color: #e8cf94;
}

/* Efecto resplandor permanente */
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px #e8cf94;
  }
  50% {
    box-shadow: 0 0 20px #e8cf94, 0 0 35px #e8cf94;
  }
  100% {
    box-shadow: 0 0 10px #e8cf94;
  }
}




/* Location Map Section */
.ubicacion {
    text-align: center;
    padding: 40px 20px 60px; /* Adjusted padding */
    width: 100%; /* Ensure it takes full width of container */
}

.ubicacion h2 {
    font-size: clamp(1.5rem, 5vw, 2rem); /* Responsive font size */
    margin-bottom: 25px;
    color: #ffffff;
}

.mapa {
    width: 100%; /* Make map container responsive */
    max-width: 650px; /* Max width for the map */
    margin: 0 auto; /* Center the map container */
    height: 350px; /* Default height */
    overflow: hidden; /* Hide anything outside the container */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Adjusted shadow */
}

.mapa iframe {
    border: none;
    width: 100%;
    height: 100%; /* Make iframe fill the container */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 40px 15px 20px;
    }
    .evento-info {
        padding: 25px 15px;
        width: 95%;
    }
    .contador {
       /* padding: 25px 15px;*/
        gap: 10px;
    }
    .contador-item {
        min-width: 65px;
        padding: 12px;
    }
    .confirmar {
        padding: 25px 15px;
    }
    .ubicacion {
        padding: 30px 15px 40px;
    }
     .mapa {
        height: 300px; /* Adjust map height for smaller screens */
    }
}

@media (max-width: 480px) {
    .contador {
        gap: 8px; /* Further reduce gap */
    }
    .contador-item {
        min-width: 60px; /* Smaller items */
        padding: 10px 8px;
    }
    .boton-confirmar {
        padding: 10px 24px;
    }
     .mapa {
        height: 250px; /* Adjust map height for mobile */
    }
	{
  .hero h1 {
    font-size: 2.5rem;
  }
}
}
.info-item i {
  margin-right: 8px;      /* Espacio entre el icono y el texto */
  font-size: 1.2em;       /* Ajusta el tamaño del icono */
  vertical-align: middle; /* Alineación vertical con el texto */
}
.info-item i {
  display: block;         /* Fuerza el ícono a ocupar su propia línea */
  font-size: 4em;         /* 4 veces más grande */
  margin-bottom: 10px;    /* Espacio entre ícono y texto */
  color: #ffffff;         /* Asegura que tenga buen contraste */
}
.icono-evento {
  display: block;
  margin: 0 auto 10px; /* centrado + espacio abajo */
  width: 60px;         /* ajustá el tamaño según tus íconos */
  height: auto;
}
.bloque-con-imagen {
  background-image: url("img/fondo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px 40px;
  border-radius: 20px; /* Bordes redondeados */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4); /* Sombra sutil pero notoria */
  margin: 30px auto; /* Centrado con margen vertical */
  max-width: 900px; /* Control del ancho si querés limitarlo */
}
.contador-arriba,
.contador-abajo {
  font-size: clamp(1.5rem, 4vw, 2.2rem); /* más grande */
  
  color: #fff;
  
  font-family: 'Playfair Display', serif; /* una fuente elegante */
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* suave sombra para destacarse */
  letter-spacing: 1.5px;
}

.contador-abajo {
  font-style: italic; /* le da un toque más emotivo */
  font-size: clamp(1.2rem, 3vw, 1.8rem); /* un poco más pequeño que "Faltan" */
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      1px 1px 3px #000000,
      0 0 8px #e8cf94,
      0 0 12px #e8cf94;
  }
  50% {
    text-shadow:
      1px 1px 3px #000000,
      0 0 4px #e8cf94,
      0 0 6px #e8cf94;
  }
}
.reproductor-musica {
  position: fixed;
  top: 20px;       /* 👈 Lo movemos hacia arriba */
  right: 20px;     /* 👈 Esquina derecha */
  z-index: 9999;   /* Asegura que esté por encima de todo */
}

#boton-musica {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #e8cf94;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 0 10px #e8cf94;
  transition: background 0.3s ease, transform 0.2s ease;
}


#boton-musica:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

#boton-musica img {
  width: 32px;
  height: 32px;
}
.animado {
  opacity: 0;
  transform: translateY(30px);
  animation: aparecer 0.8s ease-out forwards;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Animaciones suaves de entrada */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}