/* Banner full-width container */
.banner-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 2rem;
    background: black;
}

/* Banner image styling */
.banner-image {
    width: 100vw;
    height: 1000px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    opacity: 50%;
}

/* Banner overlay text */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.banner-title {
    color: #f8f6f2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    font-size: 8rem;
    font-family: 'Cormorant Garamond','Georgia',sans-serif;
    margin: 0;
}

/* Navigation buttons below banner */
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: -1rem 0 2rem 0;
    flex-wrap: wrap;
}

.nav-button {
    background: #b7c7b7;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(166,124,82,0.15);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #7c8a7c;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(166,124,82,0.25);
}

/* Welcome text styling */
.welcome-text-title {
    text-align: center;
    font-size: 4rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    color: #617461;
    margin: 3rem auto;
    max-width: 100%;
    line-height: 1.4;
    white-space: nowrap;
    padding: 0 1rem;
}

.welcome-text {
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #617461;
    margin: 2rem auto;
    max-width: 800px;
    line-height: 1.6;
    padding: 0 1rem;
}

/* RSVP button styling */
.rsvp-button-container {
    text-align: center;
    margin: 3rem auto;
}

.rsvp-button {
    background: #b7c7b7;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 48px;
    font-size: 1.5em;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(166,124,82,0.15);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.rsvp-button:hover {
    background: #7c8a7c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166,124,82,0.25);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .page-container {
        padding-top: 0;
    }
    
    /* Banner adjustments for mobile */
    .banner-container {
        margin-bottom: 2rem;
    }
    
    .banner-image {
        height: 300px;
    }
    
    .banner-overlay {
        height: 300px;
    }
    
    .banner-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    /* Navigation buttons on mobile */
    .nav-buttons {
        gap: 1rem;
        margin: -0.5rem 1rem 1.5rem 1rem;
    }
    
    .nav-button {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    /* Welcome text adjustments */
    .welcome-text-title {
        font-size: 1.8rem;
        white-space: normal;
        margin: 2rem 1rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .welcome-text {
        font-size: 1.1rem;
        margin: 1.5rem 1rem;
        padding: 0 1rem;
    }
    
    .rsvp-button {
        font-size: 1.3em;
        padding: 14px 40px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .banner-image {
        height: 250px;
    }
    
    .banner-overlay {
        height: 250px;
    }
    
    .banner-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .nav-buttons {
        gap: 0.8rem;
        margin: -0.5rem 0.5rem 1rem 0.5rem;
    }
    
    .nav-button {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }
    
    .welcome-text {
        font-size: 1.4rem;
        margin: 1.5rem 0.5rem;
        padding: 0 0.5rem;
    }
    
    .rsvp-button {
        font-size: 1.2em;
        padding: 12px 32px;
    }
}


