@import url('https://fonts.cdnfonts.com/css/garet');
@import url('https://fonts.cdnfonts.com/css/cmu-serif');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');
:root {
    /*Colors*//*Colors*//*Colors*//*Colors*/
    --text: #ffffff;
    --secondary-text: #e0c465;
    --button-bg: #e0c465;
    --burger: #e0c465;
    --secondary-bg: #dbd5c2;
    /*Fonts*//*Fonts*//*Fonts*//*Fonts*/
    --Garet: 'Garet', sans-serif;
    --Quicksand: 'Quicksand', sans-serif;
    /*For Calculations*//*For Calculations*//*For Calculations*//*For Calculations*/
}

/* Add to the top of your styles.css file */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #e0c465;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/*Animation keyframes*//*Animation keyframes*//*Animation keyframes*//*Animation keyframes*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInStoryHeading {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.5;
    }
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/*--Website Styles--*//*--Website Styles--*//*--Website Styles--*//*--Website Styles--*/
body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: black;
}
.section-container{
    max-width: 1920px;
    width: 100%;
    padding: 0;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
}
.section{
    position: relative;
    padding: 0;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    align-content: center;
}
/*--Burger Menu Styles--*//*--Burger Menu Styles--*//*--Burger Menu Styles--*//*--Burger Menu Styles--*/

/*--Hero Section Styles--*//*--Hero Section Styles--*//*--Hero Section Styles--*//*--Hero Section Styles--*/
.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    opacity: 0;
}
.hero-bg.animate{
    animation: fadeIn 500ms ease forwards;
}
.hero-content-row {
    width: 100%;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    align-content: center;
}
.hero-content-column {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    /*transform: translateX(clamp(
            0px,
            calc((100dvw - 960px) / 2),
            480px
    ));*/
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    align-items: center;
    justify-content: center;
    z-index: 000;
}
.hero-logo {
    max-width: clamp(250px,30vw,500px);
}
.hero-logo.animate {
    animation: fadeInUp 500ms ease forwards;
}
.countdown-container.animate{
    animation: fadeInUp 1000ms ease forwards;
}
.countdown-display {
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    font-size: clamp(1rem, 8vw, 2rem);
    font-weight: bold;
    letter-spacing: 5px;
}
.rsvp-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.rsvp-row.animate{
    animation: fadeInUp 1500ms  ease forwards;
}
.rsvp-row h2 {
    font-family: var(--Quicksand), sans-serif;
    color: var(--text);
    font-size: clamp(1rem, 4vw, 1.4rem);
}
.hero-icon {
    height: clamp(2.5rem, 8vw, 3rem);
    width: auto;
}

.camicon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.camicon {
    width: 70px;
    height: auto;
}

.camicon-container h2 {
    font-family: var(--Garet), sans-serif;
    color: #e0c465;
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    text-align: center;
    margin-top: 5px;
}
/*--Welcome Section Styles--*//*--Welcome Section Styles--*//*--Welcome Section Styles--*//*--Welcome Section Styles--*/
.welcome{
    max-height: 100svh;
    max-height: calc(var(--vh, 1vh) * 100);
    box-sizing: border-box;
}
.welcome-content-row{
    display: flex;
    flex-direction: row;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    justify-content: center;
    padding: 50px 20px 50px 20px;
    box-sizing: border-box;
    gap: 20px;
    background-color: black;
    border-radius: 30px 30px 0 0;
    align-content: flex-start;
}
.welcome-image-left{
    display: flex;
    border-radius: 20px;
    object-fit: cover;
    flex-grow: 1;
    max-height: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(-100px);
}
.welcome-image-left.animate{
    animation: fadeInLeft 750ms ease forwards;
}
.welcome-image-right {
    display: flex;
    border-radius: 20px;
    object-fit: cover;
    flex-grow: 2;
    max-height: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(100px);
}
.welcome-image-right.animate {
    animation: fadeInRight 750ms ease forwards;
}
/*--Story Section Styles--*//*--Story Section Styles--*//*--Story Section Styles--*//*--Story Section Styles--*/
.story{
    display: flex;
    position: relative;
    background-color: var(--secondary-bg);
    align-items: center;
    box-sizing: border-box;
}
.story-heading{
    position: absolute;
    top: 0;
    left: 45%;
    transform: translateX(-50%);
    opacity: 0;
    width: clamp(375px, 50vw, 1000px);
}
.story-heading.animate{
    animation: fadeInStoryHeading 1000ms ease forwards;
}
.story-content-main-grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    justify-content:center;
    width: 100%;
    height: 70%;
}

.story-content-second-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr 1fr;
    align-items: end;
    justify-content:end;
    height: 100%;
}
.story-dates{
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100%;
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    opacity: 0;
}
.story-dates.animate{
    animation: fadeInLeft 1000ms ease forwards;
}
.story-dates p{
    font-family: var(--Garet), sans-serif;
    font-weight: bold;
    color: black;
    padding: 0;
}
.story-dates p span {
    font-weight: 400;
}
.story-paragraph-container{
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2vw 0 2vw;
    box-sizing: border-box;
    opacity: 0;
}
.story-paragraph-container.animate{
    animation: fadeInUp 1000ms ease forwards;
}
.story-paragraph-container2{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    height: 90%;
    padding: 0 2vw 0 2vw;
    box-sizing: border-box;
    opacity: 0;
}
.story-paragraph-container2.animate{
    animation: fadeInRight 1000ms ease forwards;
}
.story-paragraph-container2 p,
.story-paragraph-container p{
    font-family: var(--Garet), sans-serif;
    color: black;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
}
/*--Venue Section Styles--*//*--Venue Section Styles--*//*--Venue Section Styles--*//*--Venue Section Styles--*/
.venue-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.venue-content-row{
    display: flex;
    flex-direction: row;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}
.venue-content-column{
    position: absolute;
    display: flex;
    height: 100%;
    left: 50%;
    max-width: min(clamp(25vw,calc(100dvw / 2), 50vw), 300px);
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0 3vw 0 10vw;
    justify-content: center;
    gap: 0;
    opacity: 0;
}
.venue-content-column.animate{
    animation: fadeInRight 1000ms ease forwards;
}
.venue-content-column h2{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    opacity: 0;
}
.venue-content-column h3{
    font-size: clamp(0.8rem, 2vw, 1.1rem);
}
.venue-content-column h2,
.venue-content-column h3{
    font-family: var(--Garet), sans-serif;
    color: var(--text);
}
.venue-content-column p{
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    font-size: clamp(0.6rem, 2vw, 0.9rem);
}
.venue-content-column h2:nth-of-type(1).animate{
    animation: fadeInRight 250ms ease forwards;
}
.venue-content-column h2:nth-of-type(2).animate{
    animation: fadeInRight 1000ms ease forwards;
}
.venue-content-column h2:nth-of-type(3).animate{
    animation: fadeInRight 1750ms ease forwards;
}
.venue-content-column h3:nth-of-type(1).animate{
    animation: fadeInRight 500ms ease forwards;
}
.venue-content-column p:nth-of-type(1).animate{
    animation: fadeInRight 750ms ease forwards;
}
.venue-content-column p:nth-of-type(2).animate{
    animation: fadeInRight 1250ms ease forwards;
}
.venue-content-column p:nth-of-type(3).animate{
    animation: fadeInRight 1500ms ease forwards;
}
.venue-content-column p:nth-of-type(4).animate{
    animation: fadeInRight 2000ms ease forwards;
}
.venue-content-column p:nth-of-type(5).animate{
    animation: fadeInRight 2250ms ease forwards;
}
.venue-content-column p:nth-of-type(6).animate{
    animation: fadeInRight 2500ms ease forwards;
}
/*--Dress Code Section Styles--*//*--Dress Code Section Styles--*//*--Dress Code Section Styles--*//*--Dress Code Section Styles--*/
.dresscode{
    background-color: black;
}

.dresscode-bg-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: black;
    height: 100%;
    width: 100%;
}
.dresscode-ladies{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.dresscode-gents{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    width: 100%;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 1;
}
.ladies{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
}
.ladies.animate{
    animation: fadeInLeft 1000ms ease forwards;
}
.gents{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
}
.gents.animate{
    animation: fadeInRight 1000ms ease forwards;
}
.ladies-text{
    display: flex;
    flex-direction: column;
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    text-align: right;
    padding: 0 8vw 8svh 0;
}
.ladies-text h2{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    font-size: clamp(0.8rem, 2vw, 1.3rem);
    text-shadow: black 0px 0px 5px;
}
.ladies-text h2.animate{
    animation: fadeInLeft 1000ms ease forwards;
    animation-delay: 100ms;
}
.ladies-text p{
    align-self: end;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    max-width: 70%;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    text-shadow: black 0px 0px 5px;
    text-align: end;
}
.ladies-text p.animate{
    animation: fadeInLeft 1500ms ease forwards;
    animation-delay: 500ms;
}
.gents-text{
    display: flex;
    flex-direction: column;
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    text-align: left;
    padding: 0 0 8svh 8vw;
}
.gents-text h2{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    font-size: clamp(0.8rem, 2vw, 1.3rem);
    text-shadow: black 0px 0px 5px;
}
.gents-text h2.animate{
    animation: fadeInRight 1000ms ease forwards;
    animation-delay: 100ms;
}
.gents-text p{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    max-width: 70%;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    text-shadow: black 3px 3px 5px;
}
.gents-text p.animate{
    animation: fadeInRight 1500ms ease forwards;
    animation-delay: 500ms;
}
/*--Donations Section Styles--*//*--Donations Section Styles--*//*--Donations Section Styles--*//*--Donations Section Styles--*/
.donations-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
@media (max-width: 768px) {
    .donations-bg {
        object-position: 58% 50%;
    }
    
}
.donations-content-row{
    display: flex;
    flex-direction: row;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    align-items: end;
}
.donations-content-column {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 570px;
    width: 350px;
    max-width: 350px;
    border-radius: 999px 999px 0 0;
    padding: 4px;
    align-items: center;
    justify-content: center;
    bottom: 50px;
}
.donations-content-column img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.donations-content-column img.animate {
    animation: fadeInUp 500ms ease forwards;
}

.donations-content-column h2 {
    display: flex;
    font-family: var(--Garet),sans-serif;
    font-size: 1.3rem;
    color: var(--text);
    max-width: 270px;
    text-align: center;
    padding: 0 20px 0 20px;
    opacity: 0;
}
.donations-content-column h2.animate {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 125ms;
}
.donations-content-column h3 {
    display: flex;
    font-family: var(--Garet), sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    max-width: 270px;
    text-align: center;
    padding: 0 20px 0 20px;
    margin: 0;
    opacity: 0;
}
.donations-content-column h3:nth-of-type(1).animate {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 250ms;
}
.donations-content-column h3:nth-of-type(2).animate {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 625ms;
}
.donations-content-column p{
    display: flex;
    font-family: var(--Garet), sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    max-width: 270px;
    text-align: center;
    padding: 0 20px 0 20px;
    opacity: 0;
}
.donations-content-column p:nth-of-type(1) {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 375ms;
}
.donations-content-column p:nth-of-type(2) {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 750ms;
}
.donations-content-column a{
    display: flex;
    display: flex;
    border-radius: 999px;
    font-family: var(--Garet), sans-serif;
    text-decoration: none;
    font-size: 0.7rem;
    color: black;
    max-width: 270px;
    text-align: center;
    padding: 0 20px 0 20px;
    background-color: white;
    opacity: 0;
    margin-bottom: 10px;
}
.donations-content-column a:nth-of-type(1) {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 500ms;
}   
.donations-content-column a:nth-of-type(2) {
    animation: fadeInUp 500ms ease forwards;
    animation-delay: 875ms;
}
/*Party Section*//*Party Section*//*Party Section*//*Party Section*//*Party Section*/
.rsvp-party {
    background-color: var(--secondary-bg);
}
.leaf {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 110%;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}
.party-content-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.party-column1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
}
.party-column1 h2 {
    font-family: var(--Garet), sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 5vw, 3rem);
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
}
.party-svg {
    opacity: 0;
}
.party-column2 {
    display: flex;
    flex-direction: column;
    align-items: start;
    color: black;
}
.party-column2 h2 {
    font-family: var(--Garet), sans-serif;
    color: black;
    font-weight: 700;
}
.party-column2 h3 {
    font-family: var(--Garet), sans-serif;
    color: black;
}
.party-column2 h4 {
    font-family: var(--Garet), sans-serif;
    font-weight: 400;
    color: black;
}
.rsvp-button-adri {
    display: block;
    border: none;
    border-radius: 999px;
    padding: 10px 20px 10px 20px;
    background-color: var(--button-bg);
    color: var(--text);
    font-family: var(--Quicksand), sans-serif;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 12px;
}

.rsvp-button-ryno {
    display: block;
    border: none;
    border-radius: 999px;
    padding: 10px 20px 10px 20px;
    background-color: var(--button-bg);
    color: var(--text);
    font-family: var(--Quicksand), sans-serif;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
}

.rsvp-button-seating {
    display: block;
    border: none;
    border-radius: 999px;
    padding: 10px 20px 10px 20px;
    background-color: var(--button-bg);
    color: var(--text);
    font-family: var(--Quicksand), sans-serif;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .party-column1 {
        display: none;
    }
    .party-content-grid {
        display: flex;
        flex-direction: column;
    }
    .party-column2 h2 {
    font-family: var(--Garet), sans-serif;
    color: black;
    font-weight: 700;
    font-size: 14px;
}
.party-column2 h3 {
    font-family: var(--Garet), sans-serif;
    color: black;
    font-size: 11px;
}
.party-column2 h4 {
    font-family: var(--Garet), sans-serif;
    font-weight: 400;
    color: black;
    font-size: 11px;
}

}
    


/*Celebration Section*//*Celebration Section*//*Celebration Section*//*Celebration Section*//*Celebration Section*/
.celebration-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.celebration-content-grid {
    display: flex;
    height: 100%;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: end;
    padding-bottom: 5%;
    gap: 200px;
    box-sizing: border-box;
}
.celebration-content-left {
    justify-self: end;
    display: flex;
    width: 100%;
    flex-direction: column;
    max-width: 350px;

}
.celebration-content-left h2 {
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    font-size: 19px;
}
.celebration-content-left p {
    color: var(--text);
    font-family: var(--Garet), sans-serif;
}
.celebration-content-right {
    display: flex;
    flex-direction: column;
    max-width: 350px;
}
.celebration-content-right h2 {
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    font-size: 19px;
}
.celebration-content-right p {
    color: var(--text);
    font-family: var(--Garet), sans-serif;
}
/*Gallery Section*//*Gallery Section*//*Gallery Section*//*Gallery Section*//*Gallery Section*/
.gallery {
    background-color: var(--secondary-bg);
}
.flowers {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 30%;
    transform: translateX(-50%);
    z-index: 50;
}
.box-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(15%);
    height: 35%;
    z-index: 100;
}
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: relative; /* Added for positioning the controls */
}

/* Swiper specific styles to match your original design */
.mySwiper {
    width: 70%;
    height: 70%;
}

.swiper-slide {
    box-sizing: border-box;
    border-radius: 25px;
    width: 400px;
    flex-shrink: 0;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide img {
    border-radius: 25px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
    transform: scale(0.8);
}

@media (min-width: 768px) {
    .swiper-slide img.active {
        transform: scale(1);
        z-index: 10;
    }
}
@media (max-width: 768px) {
    .swiper-slide img {
    transform: scale(1);
    }
}

/* Navigation button styles */
.carousel-controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px; /* Add some padding for better spacing */
    box-sizing: border-box;
    z-index: 20;
}

.carousel-controls button {
    background: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
/*RSVP Wdding Section*//*RSVP Wdding Section*//*RSVP Wdding Section*//*RSVP Wdding Section*//*RSVP Wdding Section*/
.rsvp-bg {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.rsvp-wedding {
    display: flex;
    align-items: center;
    justify-content: center;
}
.presence-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.presence-container img{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(300px, 50vw, 800px);
    opacity: 50%;
    z-index: 0;
}
.presence-container h2{
    color: var(--text);
    font-family: CMU Serif, sans-serif;
    font-size: 4rem;
    padding: 0;
    margin: 0;
    z-index: 1;
}
.presence-container h3{
    color: var(--text);
    font-family: var(--Quicksand), sans-serif;
    z-index: 1;
    font-size: 2rem;
    padding: 0;
    margin: 0;
    font-weight: 100;
}
.rsvp-content-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 80%;
}
.rsvp-info{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rsvp-info h2{
    font-family: var(--Garet), sans-serif;
    color: var(--secondary-text);
    font-size: 18px;
}
.rsvp-content-column p {
    font-family: var(--Garet), sans-serif;
    font-size: 12px;
    color: var(--text);
    max-width: 300px;
}
.pixelsfooter {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
    padding: 0 0 20px 0;
}
.pixelsfooter img{
    object-fit: contain;
    max-width: 100px;
    height: auto;
}
.pixelsfooter p{
    font-family: var(--Quicksand), sans-serif;
    color: var(--text);
    font-size: 0.6rem;
}
/*Image styles*//*Image styles*//*Image styles*//*Image styles*/
.fixed-3d-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    z-index: 20;
    pointer-events: none;
}

.welcome-img {
    position: absolute;
    top: -3%;
    left: -6%;
    width: 1000px;
    height: auto;
    object-fit: cover;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .welcome-img {
        top: -5%;
        left: -15%;
    }
    
}
.dresscode-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px;
    height: auto;
    object-fit: cover;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
}

.donations-img {
    position: absolute;
    top: 0;
    left: 5%;
    width: 1000px;
    height: auto;
    object-fit: cover;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .donations-img {
        top: -1%;
        left: 20%;
    }
    
}

.party-img {
    position: absolute;
    top: 0;
    left: -5%;
    width: 1000px;
    height: auto;
    object-fit: contain;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
}

.celebration-img {
    position: absolute;
    top: -3%;
    left: -2%;
    width: 1000px;
    height: auto;
    object-fit: contain;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
    .celebration-img {
        top: 1%;
    }
    
}
.rsvp-button {
        display: block;
        border: none;
        border-radius: 999px;
        padding: 10px 20px 10px 20px;
        background-color: var(--button-bg);
        color: var(--text);
        font-family: var(--Quicksand), sans-serif;
        font-weight: 600;
        text-decoration: none;
    }


/*Responsive Styles*//*Responsive Styles*//*Responsive Styles*//*Responsive Styles*/
/*Medium screens*//*Medium screens*//*Medium screens*//*Medium screens*//*Medium screens*/
@media (max-width: 1366px) {
    .story{
        align-items: center;
    }
    .story-content-main-grid{
        max-height: 70%;
    }
    .story-dates{
        justify-content: start;
        align-items: center;
    }
}
/*Tablet screens*//*Tablet screens*//*Tablet screens*//*Tablet screens*//*Tablet screens*/
@media (max-width: 1024px) {
    .story{
        align-items: end;
        padding-bottom: 20px;
    }
    .story-content-main-grid {
        grid-template-columns:1fr;
        grid-template-rows: 1fr;
        max-height: 70%;
        width: 100%;
    }
    .story-content-second-grid {
        grid-template-columns:1fr;
        grid-template-rows: 2fr 1fr;
    }
    .story-dates {
        grid-column: 1;
        grid-row: 1;
        align-items: center;
        justify-content: end;
        height: 100%;
    }
    .story-paragraph-container {
        grid-column: 1;
        grid-row: 2;
        align-items: start;
        padding: 0 5vw 0 5vw;
    }
    .story-paragraph-container2 {
        align-items: start;
        padding: 0 5vw 0 5vw;
    }
}
/*Phone screens*//*Phone screens*//*Phone screens*//*Phone screens*//*Phone screens*/
@media (max-width: 768px) {

    .hero-bg {
        height: 100svh;
        height: calc(var(--vh, 1vh) * 100);
    }
    /*Welcome section*/
    .welcome-content-row{
        flex-direction: column;
    }
    .welcome-image-left{
        max-height: 50%;
        object-position: top;
    }
    .welcome-image-right{
        max-height: 50%;
    }
    /*Story section*/
    .story{
        padding-bottom: 10%;
        height: fit-content;
    }
    .story-heading{
        left: 50%
    }
    .story-content-main-grid {
        grid-template-columns: 1fr;
        margin-top: 200px;
    }
    .story-content-second-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        align-items: start;
    }
    .story-paragraph-container{
        justify-content: start;
    }
    .story-paragraph-container2{
        width: 100%;
    }
    .story-dates,
    .story-paragraph-container,
    .story-paragraph-container2 {
        align-items: center; /* Center the text when columns are stacked */
        height: auto;
    }
    .story-dates{
        justify-content: start;
    }
    .story-dates p {
        text-align: center;
    }
    /*Venue section*/
    .venue-content-column{
        left: 35%;
        max-width: 75%;
    }
    /*Donations section*/
    .donations-content-column{
        justify-content: center;
        width: 280px;
        height:460px;
    }
    .donations-content-column p{
        font-size: 11px;
    }
    .donations-content-column h2{
        font-size: 16px;
    }
    .donations-content-column h3{
        font-size: 14px;
    }
    /*Party section*/
    .leaf {
    position: absolute;
    bottom: 0;
    right: -55%;
    height: 110%;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    }
    .party-column1 {
        display: none;
    }
    .party-content-row {
        height: 100%;
    }
    .party-content-grid {
        height: 100%;
    }
    .party-column2 {
        height: 100%;
        align-items: start;
        justify-content: end;
        gap: 10px;
        padding-left: 20px;
        padding-bottom: 20px;
        box-sizing: border-box;
    }
    .party-column2 h2 {
        padding: 0;
        margin: 0;
        font-family: var(--Garet), sans-serif;
        color: black;
        font-weight: 400;
    }
    .party-column2 h3 {
        padding: 0;
        margin: 0;
        font-family: var(--Garet), sans-serif;
        color: black;
    }
    .party-column2 h4 {
        padding: 0;
        margin: 0;
        font-family: var(--Garet), sans-serif;
        font-weight: 400;
        color: black;
    }
    .rsvp-button {
        display: block;
        border: none;
        border-radius: 999px;
        padding: 10px 20px 10px 20px;
        background-color: var(--button-bg);
        color: var(--text);
        font-family: var(--Quicksand), sans-serif;
        font-weight: 600;
        text-decoration: none;
    }
    /*Celebration section*/
    .celebration-content-grid {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
        padding-bottom: 5%;
        gap: 0px;
        box-sizing: border-box;
        height: 100%;
    }
    .celebration-content-left {
        justify-self: start;
        align-self: start;
        display: flex;
        width: 100%;
        flex-direction: column;
        max-width: 250px;
        padding-left: 10px;
    }
    .celebration-content-left h2 {
    font-family: var(--Garet), sans-serif;
    color: var(--text);
    font-size: 13px;
    }
    .celebration-content-left p {
        color: var(--text);
        font-family: var(--Garet), sans-serif;
        font-size: 12px;
    }
    .celebration-content-right {
        display: flex;
        flex-direction: column;
        max-width: 250px;
        align-self: start;
        padding-left: 10px;
    }
    .celebration-content-right h2 {
        font-family: var(--Garet), sans-serif;
        color: var(--text);
        font-size: 13px;
    }
    .celebration-content-right p {
        color: var(--text);
        font-family: var(--Garet), sans-serif;
        font-size: 12px;
    }
    /*Gallery section*/

    /*RSVP section*/
    .rsvp-wedding{
        align-items: end;
        box-sizing: border-box;
    }
    .rsvp-content-column {
        align-items: center;
        justify-content: end;
        height: 60%;
        box-sizing: border-box;
        gap: 50px;
        padding-bottom: 15svh;
    }
    .presence-container img{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: clamp(300px, 50vw, 800px);
        opacity: 50%;
        z-index: 0;
    }
    .presence-container h2{
        color: var(--text);
        font-family: CMU Serif, sans-serif;
        font-size: 2rem;
        padding: 0;
        margin: 0;
        z-index: 1;
    }
    .presence-container h3{
        color: var(--text);
        font-family: var(--Quicksand), sans-serif;
        z-index: 1;
        font-size: 1rem;
        padding: 0;
        margin: 0;
        font-weight: 100;
    }
    .pixelsfooter p{
        font-size: 8px;
    }
}

/*--Add to your existing CSS file--*//*--Add to your existing CSS file--*//*--Add to your existing CSS file--*/
.ring-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

/* Update your existing CSS file */
/* This ensures the canvas stays in the viewport as you scroll */
#modelCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    pointer-events: none;
    z-index: 10;
}
/* Remove previous @media queries from styles.css for the .ring-container */
/* The positioning will now be handled entirely by JavaScript */


/* Add these styles to the bottom of your styles.css file */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background-color: var(--secondary-bg);
    color: #000;
    padding: 30px;
    border-radius: 15px;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #000;
}

.modal-heading {
    font-family: var(--Garet), sans-serif;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
}

.bank-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    text-align: left;
    margin-bottom: 20px;
}

.bank-details-grid p {
    font-family: var(--Quicksand), sans-serif;
    margin: 0;
}

.bank-details-grid p:nth-child(odd) {
    font-weight: bold;
}

/* Copy Button */
.copy-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn {
    background: var(--button-bg);
    color: var(--text);
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #c2ac57;
}

.copy-btn svg {
    width: 20px;
    height: 20px;
}

.reference-note {
    font-family: var(--Quicksand), sans-serif;
    font-style: italic;
    font-size: 0.9rem;
    color: #333;
}



