/* --- Reseteo y estilos básicos --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    height: 100vh;
    overflow: hidden; /* Evita barras de desplazamiento */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Fondo de montaña con superposición --- */
.mountain-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Utiliza una imagen similar a la montaña en el archivo 1000109998.jpg */
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000](https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000)');
    background-size: cover;
    background-position: center bottom;
    z-index: -2; /* Detrás de todo */
}

/* Superposición de color (gradiente sutil y oscurecedor para el texto) */
.mountain-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradiente que oscurece el fondo y añade el tinte rosado/azulado */
    background: linear-gradient(to bottom, rgba(34, 49, 78, 0.6) 0%, rgba(206, 126, 131, 0.3) 100%);
    z-index: -1; /* Detrás del contenido, delante de la imagen */
}

/* --- Contenedor principal --- */
.container {
    width: 90%;
    max-width: 1000px; /* Centra el contenido en pantallas grandes */
    z-index: 1; /* Encima del fondo */
    text-align: center;
}

/* --- Contenido del héroe --- */
.hero-content h1 {
    font-size: 3.5rem; /* Muy grande, como en el original */
    font-weight: 800; /* Extra bold */
    letter-spacing: 4px; /* Espaciado entre letras */
    margin-bottom: 5rem; /* Espacio antes del temporizador */
    text-transform: uppercase;
}

/* --- Estilos del temporizador --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem; /* Espacio entre los bloques */
    margin-bottom: 5.5rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.time-value {
    font-size: 7rem; /* Valor numérico muy grande */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    font-feature-settings: "tnum" 1; /* Usa anchos de números tabulares (monosespaciados) para que no 'parpadee' */
}

.time-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: none; /* Asegura que la capitalización sea "Days", "Hours", etc. */
}

/* --- Texto descriptivo --- */
.description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #f0f0f0; /* Blanco ligeramente apagado */
    max-width: 750px;
    margin: 0 auto 5rem auto; /* Centrado con margen inferior */
}

/* --- Botones --- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5.5rem;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px; /* Bordes redondeados sutiles */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Botón "Notify Me" - Rosa/Rojo */
.btn-notify {
    background-color: #ff3366; /* Coincide con el rosa vibrante del archivo 1000109998.jpg */
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-notify:hover {
    background-color: #e62e5c;
}

/* Botón "About Us" - Transparente con borde */
.btn-about {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff; /* Borde blanco fino */
}

.btn-about:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* --- Iconos sociales --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.social-icons a {
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #cccccc;
}

/* --- Adaptabilidad móvil (Responsive) --- */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 3.5rem;
    }
    
    .countdown-container {
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }
    
    .time-block {
        min-width: 80px;
    }
    
    .time-value {
        font-size: 4.5rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .countdown-container {
        flex-wrap: wrap; /* Permite que el temporizador se envuelva en pantallas pequeñas */
        gap: 1rem;
    }
    
    .time-block {
        min-width: 45%; /* Dos bloques por fila en móvil */
        margin-bottom: 1.5rem;
    }
    
    .time-value {
        font-size: 3.5rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column; /* Botones apilados en móvil */
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }
}