/* <===================TYPOGRAPHY & FONTS===================> */

@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Quicksand&family=Dancing+Script:wght@400;600&display=swap');

/* <===================CSS VARIABLES===================> */

:root{
    --h1-size: 7rem;
    --h2-size: 2.1rem;
    --h3-size: 1.7rem;
    --text-size: 1.3rem;
    --horizontal-margin-spacing:6rem;
    --grey-color-light: rgba(232,230,230,.6);
    --grey-color: rgba(232,230,230,1);
    --burgundy: #5c2e3a;
    --gold: #c89456;
    --dark: #212121;
    --cream: #faf8f3;
}

/* <===================UNIVERSAL CSS===================> */

*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Cinzel', serif;
    color: #212121;
}
html{
    scroll-behavior: smooth;
}
.hz-margin{
    padding: 0 var(--horizontal-margin-spacing);
}
h1{
    font-size: var(--h1-size);
    font-weight: 500;
    line-height: var(--h1-size);
}
h2{
    font-size: var(--h2-size);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
h2:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    border-radius: 2px;
}
h3{
    font-size: var(--h3-size);
    font-weight: 500;
}
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
  }
  
  .reveal.active{
    transform: translateY(0);
    opacity: 1;
  }
.text{
    font-family: 'Quicksand', sans-serif;
    font-size: var(--text-size);
    line-height: 1.3rem;
}
.huge-btn{
    display: block;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: white;
    border: 2px solid var(--gold);
    padding: 25px 50px;
    border-radius: 50px;
    width: fit-content;
    margin: 30px 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(92, 46, 58, 0.2);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.huge-btn:before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.huge-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(92, 46, 58, 0.35);
    color: white;
}

.huge-btn:hover:before{
    left: 100%;
}
.v-reposition-container{
    position: absolute;
    left: 0;
    width: 100vw;
}
.h-reposition-container{
    width: 100vw;
    position: relative;
    top: 100vh;
}
/* <===================NAVBAR===================> */

nav{
    height: 3vh;
    width: 100%;
    margin-bottom: 20vh;
}
label.logo{
    font-size: 35px;
    line-height: 80px;
    padding: 0 0 0 30px;
    font-weight: bold;
}
nav ul{
    float: right;
    margin-right: 20px;
    list-style: none;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
a:hover{
    color: var(--gold);
    transition: .5s;
    text-shadow: 0 0 10px rgba(200, 148, 86, 0.3);
}
.checkbtn{
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
@media (max-width:1000px){
    label.logo{
        font-size: 20px;
    }
    nav ul li a{
        font-size: 10px;
    }
    html{
        font-size: 10px;
    }
}
@media (max-width:570px){
    .checkbtn{
        display: block;
    }
    ul{
        position: fixed;
        width: 100%;
        height: 100vh;
        backdrop-filter: blur(5px);
        top: 80px;
        font-weight: bold;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav li ul a{
        font-size: 20px;
    }
    a:hover, a.active{
        background: none;
        color: grey;
    }
    #check:checked ~ ul{
        left: 0;
    }
}

/* <===================HOME===================> */

.home h3{
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.couple-description{
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
}

.rsvp-prompt{
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    color: #c89456;
    margin: 20px 0 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero date/venue details */
.hero-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3vh;
}

.hero-detail-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
    margin-bottom: 6px;
    font-weight: 700;
    text-align: center;
}

.hero-detail-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.45;
    background: linear-gradient(135deg, var(--burgundy) 20%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    display: inline-block;
}

.hero-detail-value sup {
    font-size: 0.6em;
    vertical-align: super;
}

/* Scroll hint */
.scroll-hint {
    margin-top: 4vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.scroll-hint-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    opacity: 0.8;
    font-style: italic;
}

.scroll-hint-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    animation: bounceDown 1.6s ease-in-out infinite;
    display: inline-block;
    line-height: 1;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%       { transform: translateY(8px); opacity: 1; }
}

.ceremony-time{
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #5c2e3a;
    margin: 15px 0 20px 0;
}

.container-out{
    margin-top: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3vw;
}
.container-in{
    flex: 1;
    padding-right: 2vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-img{
    background-image: url(../images/couple-photo.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatImage 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes floatImage{
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
.home-img-sm{
    display: none;
    width: 100%;
    margin: 20px 0 0 0;
    height: 50vh;
    background-color: var(--cream);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#home-img-lg{
    display: block;
    position: relative;
    height: 70vh;
    width: 30vw;
    background-position: center;
}
@media (max-width:1000px){
    .container-out{
        flex-direction: column;
        gap: 0;
    }
    .container-in{
        padding-right: 0;
        width: 100%;
    }
    .home-img-sm{
        display: block;
    }
    #home-img-lg{
        display: none;
    }
}

/* <===================TIMELINE / SCHEDULE===================> */

.timeline{
    display: block;
    background: #fff;
    float: left;
    position: relative;
    top: -30vh;
    width: 100%;
    padding: 8vh var(--horizontal-margin-spacing);
    border-top: 1px solid rgba(200, 148, 86, 0.18);
    border-bottom: 1px solid rgba(200, 148, 86, 0.18);
}

.schedule-header {
    text-align: center;
    margin-bottom: 6vh;
}

.schedule-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: #2a2a2a;
    letter-spacing: 0.12em;
    line-height: 1.15;
    margin-bottom: 2.5vh;
}

.schedule-rule {
    width: 60px;
    height: 1px;
    background: #2a2a2a;
    margin: 0 auto;
    opacity: 0.3;
}

/* ---- Timeline layout ---- */
.schedule {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 2vh 0;
}

.schedule-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ccc;
    transform: translateX(-50%);
}

.schedule-item {
    display: grid;
    align-items: center;
    margin-bottom: 4vh;
    position: relative;
}

/* LEFT item: [content] [icon] [tick→spine] */
.s-left {
    grid-template-columns: 1fr 68px 16px;
    grid-template-areas: "content icon tick";
}

/* RIGHT item: [tick←spine] [icon] [content] */
.s-right {
    grid-template-columns: 16px 68px 1fr;
    grid-template-areas: "tick icon content";
}

.s-content  { grid-area: content; }
.s-icon     { grid-area: icon; }
.s-tick     { grid-area: tick; }

/* Content alignment */
.s-left .s-content {
    text-align: right;
    padding-right: 16px;
}
.s-right .s-content {
    text-align: left;
    padding-left: 16px;
}

.s-time {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.s-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.7rem, 1.1vw, 0.82rem);
    font-weight: 400;
    color: #666;
    letter-spacing: 0.18em;
    line-height: 1.5;
}

/* Icon */
.s-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-icon svg {
    width: 48px;
    height: 48px;
    color: #2a2a2a;
    stroke: #2a2a2a;
}

/* Tick line from icon to spine */
.s-left .s-tick {
    height: 1px;
    background: #ccc;
    align-self: center;
}
.s-right .s-tick {
    height: 1px;
    background: #ccc;
    align-self: center;
}

/* Couple name at bottom */
.schedule-couple {
    text-align: center;
    margin-top: 4vh;
    font-family: 'Dancing Script', cursive, serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #555;
    letter-spacing: 0.04em;
}

/* Unused legacy selectors kept minimal */
.schedule-ornament, .schedule-footer-rule,
.schedule-dot, .schedule-detail,
.schedule-title, .schedule-sep { display: none; }

@media (max-width:1000px){
    .timeline{
        background: #fff;
        float: none;
        position: relative;
        top: 0;
        width: 100%;
        height: fit-content;
        padding: 6vh 5vw;
    }
    .schedule {
        max-width: 100%;
    }
    .s-icon svg {
        width: 38px;
        height: 38px;
    }
    .s-left  { grid-template-columns: 1fr 50px 14px; }
    .s-right { grid-template-columns: 14px 50px 1fr; }
}

/* <===================STORY===================> */

#story{
    padding-top: 10vh;
    display: flex;
    flex-direction: row;
    margin: 10vh 0;
    background: linear-gradient(135deg, rgba(92, 46, 58, 0.02), rgba(200, 148, 86, 0.02));
    padding: 5vh 3rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}
#story h3{
    width: 40vw;
    color: var(--burgundy);
}
#story p{
    width: 40vw;
    text-align: justify;
    font-size: var(--h3-size);
    line-height: var(--h3-size);
    color: #444;
}
@media (max-width:1000px){
    .h-reposition-container{
        position: relative;
        top: 0;
    }
    #story{
        flex-direction: column;
    }
    #story h3{
        width: 100%;
        margin: 5px 0;
        font-size: var(--h3-size);
    }
    #story p{
        width: 100%;
        margin: 5px 0;
        font-size: var(--text-size);
        line-height: var(--text-size);
    }
}

/* <===================SLIDESHOW===================> */

.slideshow-section {
    padding: 10vh 0;
    width: 100%;
}

.slideshow {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.18);
    border: none;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: rgba(255,255,255,0.35);
}

.slide-prev { left: 14px; }
.slide-next { right: 14px; }

.slide-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .slideshow {
        border-radius: 0;
        max-width: 100%;
    }
    .slide-btn {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
}

/* <===================SAVE THE DATE===================> */

.std-badge {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 5px 18px;
    margin: 0 auto 10px auto;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    background-size: 200% auto;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(92,46,58,0.25);
    animation: shimmer 4s linear infinite;
    width: fit-content;
    text-align: center;
}

@keyframes shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}



.countdown-section {
    padding: 7vh var(--horizontal-margin-spacing);
    text-align: center;
    background: linear-gradient(135deg, rgba(92,46,58,0.06), rgba(200,148,86,0.06));
    border-bottom: 1px solid rgba(200,148,86,0.18);
}

.countdown-label {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3vh;
    opacity: 0.85;
}

.countdown {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(200,148,86,0.3);
    border-radius: 16px;
    padding: 2.5vh 3vw;
    min-width: 90px;
    box-shadow: 0 8px 24px rgba(92,46,58,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    margin: 6px;
}

.countdown-value {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    transition: transform 0.15s ease;
}

.countdown-value.pop {
    transform: scale(1.18);
}

.countdown-name {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.6rem;
    opacity: 0.8;
}

.countdown-sep {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--gold);
    opacity: 0.5;
    padding: 0 2px;
    margin-bottom: 2rem;
    align-self: center;
}

.countdown-date {
    margin-top: 3vh;
    font-size: 0.95rem;
    color: var(--burgundy);
    opacity: 0.65;
    letter-spacing: 0.08em;
}

@media (max-width: 600px) {
    .countdown-unit {
        min-width: 68px;
        padding: 2vh 3vw;
    }
    .countdown-sep {
        font-size: 1.8rem;
        padding: 0;
    }
}
 */
.quote{
    margin: 10vh 0;
    padding: 5vh 2rem;
    background: linear-gradient(135deg, rgba(92, 46, 58, 0.05), rgba(200, 148, 86, 0.05));
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.quote:before{
    content: "«";
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 120px;
    color: var(--gold);
    opacity: 0.15;
}

.quote h1{
    width: 55vw;
    font-size: 4rem;
    text-align: center;
    margin: auto;
    color: var(--burgundy);
}
.author{
    text-align: center;
    margin: 20px 0 10vh 0;
}
@media (max-width:1570px){
    .quote h1{
        font-size: 2rem;
        line-height: 2rem;
    }
}

/* <===================VENUE GALLERY===================> */

.venue-section{
    padding: 10vh var(--horizontal-margin-spacing);
    background: linear-gradient(135deg, rgba(92, 46, 58, 0.03), rgba(200, 148, 86, 0.03));
    border-top: 2px solid rgba(200, 148, 86, 0.2);
    border-bottom: 2px solid rgba(200, 148, 86, 0.2);
}

.venue-map {
    margin-top: 5vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid rgba(200, 148, 86, 0.25);
}

.directions-btn {
    display: inline-block;
    margin: 3vh auto 0 auto;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(92,46,58,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: fit-content;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(92,46,58,0.4);
}

.venue-section > .directions-btn {
    display: block;
    max-width: 220px;
    margin: 3vh auto 0;
}
.venue-section h2{
    text-align: center;
    margin-bottom: 6vh;
    color: var(--burgundy);
}
.venue-photos{
    display: flex;
    flex-direction: row;
    gap: 2vw;
    justify-content: center;
    align-items: stretch;
}
.venue-photo-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.venue-photo-wrapper .venue-photo {
    flex: 1;
}
.venue-photo-label {
    text-align: center;
    margin-top: 12px;
    font-family: 'Cinzel', serif;
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: var(--burgundy);
    letter-spacing: 0.1em;
    opacity: 0.85;
}
.venue-photo{
    flex: 1;
    height: 55vh;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.venue-photo:hover{
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 18px 45px rgba(92,46,58,0.25);
}
.venue-photo-hall {
    background-image: url(../images/Wedding-hall.jpeg);
}
.venue-photo-hotel {
    background-image: url(../images/Wedding-hotel.jpeg);
}
.venue-caption{
    text-align: center;
    margin-top: 3vh;
    font-family: 'Quicksand', sans-serif;
    color: #888;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
@media (max-width:1000px){
    .venue-photos{
        flex-direction: column;
        gap: 3vw;
    }
    .venue-photo{
        height: 50vw;
        min-height: 200px;
    }
}

/* <===================DIVIDER===================> */

.section-divider {
    height: 6vh;
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(var(--primary-color-rgb, 139,90,60), 0.08), transparent);
}

    /* <===================STAY===================> */
    #stay{
        background: linear-gradient(135deg, var(--grey-color-light), var(--grey-color));
        padding: 10vh var(--horizontal-margin-spacing);
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    #stay:before{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(200, 148, 86, 0.1), transparent);
        border-radius: 50%;
    }
    
    #stay h2{
        position: relative;
        z-index: 1;
    }

.stay-container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 20vh 0;
    position: relative;
    z-index: 1;
}

.stay-item{
    padding: 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.stay-item:hover{
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(92, 46, 58, 0.15);
    border-color: rgba(200, 148, 86, 0.3);
}

.stay-item h3{
    color: var(--burgundy);
    margin-bottom: 1rem;
}
.links{
    cursor: pointer;
    text-decoration: underline;
}
@media (max-width:1000px){
    .stay-container{
        flex-direction: column;
        margin: 10px 0;
    }
    .stay-item{
        margin: 2vh 0;
    }
}

/* <===================REGISTRY===================> */

#registry{
    padding: 20vh var(--horizontal-margin-spacing) 0 var(--horizontal-margin-spacing); 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.registry-container{
    display: block;
    width: 30vw;
}
.registry-container .text{
    text-align: justify;
    margin: 20px 0;
}

/* <===================RSVP FORM===================> */
.rsvp-form{
    background: linear-gradient(135deg, rgba(250, 248, 243, 0.95), rgba(255, 255, 255, 0.98));
    padding: 3vh 2.5vh;
    border-radius: 12px;
    margin-top: 2vh;
    box-shadow: 0 8px 25px rgba(92, 46, 58, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(200, 148, 86, 0.2);
    backdrop-filter: blur(10px);
}

.form-group{
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label{
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--burgundy);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding: 0.8rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: #333;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 148, 86, 0.15), 0 2px 10px rgba(200, 148, 86, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-group textarea{
    resize: vertical;
    min-height: 80px;
    font-family: 'Quicksand', sans-serif;
}

.radio-group{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-option{
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    color: #333;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(200, 148, 86, 0.03);
}

.radio-option:hover{
    background: rgba(200, 148, 86, 0.08);
    transform: translateX(5px);
}

.radio-option input[type="radio"]{
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.rsvp-form button{
    margin-top: 1.5rem;
    align-self: flex-start;
    width: 100%;
    max-width: 300px;
}

.form-status{
    font-family: 'Quicksand', sans-serif;
    margin-top: 1rem;
    padding: 1.2rem;
    border-radius: 8px;
    display: none;
    font-weight: 600;
    line-height: 1.5;
    animation: slideInUp 0.4s ease;
    border-left: 4px solid transparent;
}

@keyframes slideInUp{
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status.success{
    background: linear-gradient(135deg, #d4edda, #e8f5e9);
    color: #155724;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #28a745;
    display: block;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.15);
}

.form-status.error{
    background: linear-gradient(135deg, #f8d7da, #ffebee);
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #dc3545;
    display: block;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

@media (max-width:1000px){
    .rsvp-form{
        padding: 2vh 1.5vh;
    }
    .rsvp-form button{
        width: 100%;
    }
}

.registry-img{
    display: block;
    height: 100vh;
    width: 40vw;
    background-image: url(../images/photo5.jpeg);
    background-size: cover;
    background-position-y: top;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3), inset 0 0 80px rgba(0, 0, 0, 0.1);
    -webkit-mask-image: radial-gradient(ellipse at center, white 0%, white 65%, rgba(255,255,255,0.8) 85%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, white 0%, white 65%, rgba(255,255,255,0.8) 85%, transparent 100%);
    /* background-attachment: fixed; */
}
.registry-img-sm{
    display: none;
}
.registry-img-lg{
    display: block;
}
@media (max-width:1000px){
    #registry{
        flex-direction: column;
    }
    .registry-img{
        width: 100%;
        height: 50vh;
    }
    .registry-img-sm{
        margin-top: 10vh;
        display: block;
    }
    .registry-img-lg{
        display: none;
    }
    .registry-container{
        width: 100%;
    }
    #registry button{
        margin-inline: auto;
    }
}


/* <===================PARTING MESSAGE===================> */
.parting-message{
    text-align: center;
    padding: 10vh 2rem;
}
.parting-message h1{
    margin-top: 5vh;
    font-size: 3rem;
}
.parting-message p{
    margin: 3vh 0;
    font-size: 1.2rem;
}
@media (max-width:1000px){
    .parting-message{
        padding: 5vh 1.5rem;
    }
    .parting-message h1{
        font-size: 2rem;
        margin-top: 2vh;
    }
}

/* <===================FOOTER===================> */

footer{
    margin-top: 20vh;
    height: fit-content;
    width: 100%;
    background: linear-gradient(135deg, rgba(92, 46, 58, 0.1), rgba(200, 148, 86, 0.08));
    padding: 10vh 6rem;
    text-align: center;
    border-top: 2px solid rgba(200, 148, 86, 0.3);
    position: relative;
    overflow: hidden;
}

footer:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 148, 86, 0.1), transparent);
    border-radius: 50%;
    animation: floatBg 6s ease-in-out infinite;
}

@keyframes floatBg{
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

footer h2{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2vh;
    color: var(--burgundy);
    position: relative;
    z-index: 1;
}
footer h3{
    font-size: 1.1rem;
    margin-bottom: 1vh;
    color: #555;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

footer h3:hover{
    color: var(--gold);
    transform: translateY(-2px);
}
@media (max-width:1000px){
    footer{
        padding: 5vh 2rem;
    }
    footer h2{
        font-size: 1.5rem;
    }
    footer h3{
        font-size: 1rem;
    }
}