/* Hero Section Styles */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background slideshow */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center 15%; /* Offset for portrait photos to show faces */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

/* Gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 78, 124, 0.85) 0%, rgba(139, 95, 191, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    color: var(--white);
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
    letter-spacing: 8px;
}

.ampersand {
    color: var(--silver);
}

.date {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--silver);
}

.venue {
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--white);
    opacity: 0.9;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 2;
    cursor: pointer;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
}