* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner {
    height: 100vh;
    /* background-image: url('https://images.pexels.com/photos/931176/pexels-photo-931176.jpeg?auto=compress&cs=tinysrgb&w=1920'); */
    background-image: url('../public/img1.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    text-align: center;
    color: white;
    overflow: hidden;
}

.names-display {
font-family: "Sail", system-ui;
font-size: 95px;
color: #361041;
margin-top: 70px;
margin-bottom: var(--spacing-md);
text-align: center;
/* letter-spacing: 6px; */
position: relative;
line-height: 110px;
font-weight: 500;
z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 1;
    /* max-width: 800px; */
    padding: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-title {
    font-family: 'Manrope', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #F41870;
}

.banner-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #F41870;
}

.banner-date {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #F41870;
    margin: 0px auto 20px;
}


.scroll-indicator {
    /* position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) !important; */
    position: relative;
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}



.scroll-text {
    color: #361041;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #361041;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.scroll-arrow::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #361041;
    border-bottom: 2px solid #361041;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.invitation-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #CDE7FF, #FFD6E8);

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.invitation-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Manrope', sans-serif;
}

.greeting {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.together {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.names {
    font-family: 'Sail', system-ui;
    font-size: 3rem;
    margin: 1rem 0;
    color: #800020;
}

.ampersand {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    margin: 1rem 0;
    font-style: italic;
    color: #666;
}

.invitation-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    margin: 2rem 0;
    color: #444;
}

.date {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    margin: 2rem 0;
    color: #D4AF37;
}

.names-display .name {
   margin-top: 70px !important;
   line-height: 100px !important;
}

.venue {
    margin: 1.5rem 0;
}

.venue-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #D4AF37;
}

.address {
   
    margin: 0.5rem 0;
}

.contact {
    color: #D4AF37;
    margin: 1rem 0;
}

.footer-text {
    font-style: italic;
    color: #F41870;
    margin: 2rem 0;
}

.header-logo {
      border-radius: 50%;
    width: 250px;
    height: auto;
}

@media (max-width:1200px) {
    .names-display {
        font-family: "Sail", system-ui;
        font-size: 65px;
        color: #361041;
        margin-top: 10px;
        margin-bottom: var(--spacing-md);
        text-align: center;
        /* letter-spacing: 6px; */
        position: relative;
        line-height: 100px;
        font-weight: 500;
        z-index: 1;
        }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.4rem;
    }

    .banner-date {
        font-size: 1.2rem;
    }

    .invitation-card {
        padding: 2rem 1rem;
    }

    .greeting {
        font-size: 1.5rem;
    }

    .names {
        font-size: 2rem;
    }
    .btn-submit.download-btn {
        position: relative !important;
        margin: 15px auto 0;
        right: 0 !important;
    }

    .names-display {
        font-family: "Sail", system-ui;
        font-size: 65px;
        color: #361041;
        margin-top: 10px;
        margin-bottom: var(--spacing-md);
        text-align: center;
        /* letter-spacing: 6px; */
        position: relative;
        line-height: 90px;
        font-weight: 500;
        z-index: 1;
        }
        .header-logo {
            border-radius: 50%;
          width: 200px;
          height: auto;
      }
}

.content h1, .content p:first-of-type {
    color: #800020; /* Burgundy for names or special text */
}

.content p:last-of-type {
    color: #D4AF37; /* Gold for highlights */
}
h1 {
    font-family: 'Manrope', sans-serif;
font-size: 36px;
color: #c94f7c;
}

p {
font-size: 20px;
margin: 20px 0;
}

.highlight {
color: #bf1650;
font-weight: bold;
}

.details {
margin-top: 40px;
font-size: 18px;
line-height: 1.6;
}

.footer {
margin-top: 50px;
font-size: 14px;
color: #F41870;
}

.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
background: rgba(0,0,0,0.35);
justify-content: center;
align-items: center;
}
.modal.show {
display: flex;
}
.modal-content {
width: 400px;
height: 500px;
padding: 24px;
max-width: 400px;
border-radius: 24px;
border: 1px solid #F41870;
background: #FFBBBC;
display: flex;
flex-direction: column;
}
.modal-header {
margin-bottom: 0;
}
.heart-icon {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 0.5rem auto;

}
.modal-header h2 {
color: #361041;
text-align: center;
font-family: "Sail", system-ui !important;
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
margin-bottom: 48px;
}
.modal-body p {
color: #7b3f00;
font-size: 1.1rem;
margin-bottom: 1.2rem;
}
#guestName {
width: 80%;
padding: 12px;
font-size: 1.1rem;

margin-bottom: 1rem;

border-radius: 8px;
border: 1px solid #FFF;
background: rgba(255, 255, 255, 0.40) !important;
width: 100%;
color: #361041;
height: 56px;
margin-bottom: 16px;
}
.btn-submit {
padding: 0.7rem 2rem;
font-size: 1.1rem;
border: none;
border-radius: 8px;
border: 1px solid #F41870;
background: #F41870;
color: #fff;
font-family: 'Manrope', sans-serif;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
width: 100%;
height: 56px;    }
.btn-submit:hover {
background: #e31668;
}


.personal-greeting {
font-family: 'Sail', system-ui;
font-size: 2rem;
color: #361041;
margin-bottom: 0.5rem;
margin-top: 0.5rem;
opacity: 0;
transition: opacity 0.5s;
text-align: center;
}
.personal-greeting.visible {
opacity: 1;
}
.personalized-message {
font-family: 'Manrope', sans-serif;
font-size: 1.1rem;
color: black;
margin-bottom: 1.2rem;
text-align: center;
}
.update-name-btn {
margin-bottom: 1.2rem;
padding: 0.5rem 1.5rem;
font-size: 1rem;
border: 1.5px solid #361041;
border-radius: 8px;
background: #fff8f0;
color: #361041;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}
.update-name-btn:hover {
background: #361041;
color: #fff;
}

.address-link {
font-family: 'Manrope', sans-serif;
cursor: pointer;
color: #7B3F00;
transition: all 0.2s ease-in-out;
text-decoration: none;
font-weight: 500;
}

.address-link:hover {
color:#7b3f00;
text-decoration: underline;
}

.download-btn {
    position:relative;
    display: block;
   margin:10px auto 0px;
    background: #F41870;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: auto;
    border-radius: 8px;
    height: 56px;
    padding: 16px 24px;
    border: none;
    font-size: 16px;
}

.download-btn:hover {
    background: #e31668;
}

.download-btn svg {
    margin-right: 8px;
    position: relative;
    bottom: -3px;
}