/* Estilos específicos para la sección Home
   Versión: 1.0.0 - 18/06/2025
*/

/* Hero section con imagen de fondo */
.landing-hero {
    margin: 0;
    max-width: none;
    padding: 0;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2)), url('../images/img_story4.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo del contenido principal del hero */
.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-script);
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.countdown-label {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.3s ease;
}

#home-countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    font-family: var(--font-secondary);
    animation: fadeInUp 1.4s ease;
}

.hero-countdown .countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
}

.hero-countdown .count {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}

.hero-countdown .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wedding-date {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 400;
    animation: fadeInUp 1.5s ease;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 2rem;
    margin-top: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.6s ease;
}

/* Estilos para la sección de bienvenida debajo del hero */
.welcome-section {
    background: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome-content h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.welcome-content p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    #home-countdown {
        flex-wrap: wrap;
    }
}
