/* Hero Section - Elegante Minimalista TEMA CLARO */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(20%) brightness(1.1) contrast(0.95);
    transition: var(--transition-smooth);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(254, 254, 254, 0.8) 0%,
        rgba(248, 248, 248, 0.6) 50%,
        rgba(254, 254, 254, 0.85) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-invitation {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero-names {
    font-family: var(--font-script);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    color: var(--accent-cream);
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-details {
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.hero-date {
    font-family: var(--font-script);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-location {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-beige), transparent);
    position: relative;
    animation: scrollPulse 2s infinite ease-in-out;
}

.scroll-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--accent-beige);
    animation: scrollArrow 2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(5px);
    }
}

/* Efectos hover sutiles */
.hero:hover .hero-image {
    filter: grayscale(10%) brightness(1.15) contrast(1);
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-names {
        margin-bottom: 2rem;
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .hero-details {
        margin-top: 2rem;
    }
    
    .hero-invitation {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }
    
    .hero-scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-line {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-date {
        margin-bottom: 0.5rem;
    }
    
    .hero-location {
        font-size: 0.85rem;
    }
}

/* Animación de entrada personalizada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}