html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ========================= */
/* HERO SECTION */
/* ========================= */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
                url("mainpage.jpg") no-repeat center center/cover;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #fefae0;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* text */
.main-container {
    text-align: center;
    z-index: 2;
}

.tagline {
    font-size: 20px;
    letter-spacing: 5px;
}

.names {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
}

.date {
    font-size: 26px;
}

.line {
    width: 100px;
    height: 2px;
    background: #fefae0;
    margin: 20px auto;
}

.invite-text {
    font-size: 20px;
    line-height: 2;
}


.enter-btn{
    font-size: 15px;
    letter-spacing: 8px;
    padding: 10px 30px;

    background: transparent;
    border: 1px solid #fff;

    color: #fff;
    cursor: pointer;

    transition: 0.3s ease;

    position: relative;
    z-index: 10;
}

.enter-btn:hover{
    background: rgba(255,255,255,0.15);
    transform: scale(1.05);
}

.wedding-hashtags {
    margin-top: 25px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 8px;

    font-size: 40px;          /* 👈 increase size */
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.wedding-hashtags p {
    margin: 0;
}

.hero .hero-rsvp{
    margin-top: 40px !important;
}

/* ========================= */
/* NEWLYWEDS PROFILE SECTION */
/* ========================= */

.profile-section{
    position: relative;
    padding: 140px 60px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #3a4723,
        #4f5d2f,
        #606c38
    );
}

/* BACKGROUND LAYER (PROFILE IMAGE SUPPORT) */
.profile-bg{
    position: absolute;
    inset: 0;

    background: url("profile.jpg") center/cover no-repeat;
    opacity: 0.12;

    filter: blur(2px);
    z-index: 0;
}

/* TITLE */
.profile-title{
    position: relative;
    z-index: 2;

    font-family: 'Playfair Display', serif;
    font-size: 54px;
    text-align: center;

    color: #fefae0;
    letter-spacing: 4px;
}

/* DIVIDER */
.profile-divider{
    width: 120px;
    height: 2px;
    margin: 20px auto;

    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* INTRO TEXT */
.profile-intro{
    position: relative;
    z-index: 2;

    text-align: center;
    font-family: 'Montserrat', sans-serif;

    color: rgba(255,255,255,0.85);
    font-size: 15px;

    max-width: 600px;
    margin: 20px auto 70px;
}

/* CONTAINER */
.profile-container{
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* CARD */
.profile-card{
    width: 320px;
    text-align: center;

    padding: 30px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.25);

    border-radius: 20px;
    backdrop-filter: blur(12px);

    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

.profile-card:hover{
    transform: translateY(-10px);
}

/* CIRCLE IMAGE */
.profile-circle{
    width: 180px;
    height: 180px;

    margin: 0 auto 20px;

    border-radius: 50%;
    overflow: hidden;

    border: 3px solid rgba(212,175,55,0.5);

    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* IMAGES */
.profile-circle img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.profile-name{
    font-family: 'Playfair Display', serif;
    font-size: 24px;

    color: #fefae0;
    letter-spacing: 1px;
}

/* ROLE */
.profile-role{
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;

    color: #d4af37;
    margin-top: 5px;
}

/* TEXT */
.profile-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;

    color: rgba(255,255,255,0.8);

    margin-top: 15px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .profile-container{
        gap: 40px;
    }
}

.profile-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.profile-card {
    width: 420px;
    max-width: 90%;
    text-align: center;
}

/* ✨ DETAILS STYLE */
.profile-details {
    margin: 20px 0;
    font-size: 8px;
    letter-spacing: 1px;
    color:rgba(255,255,255,0.8);
    line-height: 1.8;
}
	
.profile-details .highlight {
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

/* STORY SECTION */
.story-section {
    display: flex;
    min-height: 100vh;
}

/* TEXT (SMALLER SIDE) */
.story-text {
    width: 40%; /* 🔥 smaller */
    background: #fefae0;
    color: #2f3e2e;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

/* IMAGE (DOMINANT SIDE) */
.story-image {
    width: 60%; /* 🔥 bigger */
    background: url("ourstory.jpg") no-repeat center center/cover;
}

/* ELEGANT TYPOGRAPHY */
.story-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: #606c38;
    margin-bottom: 15px;
}

/* COMPRESSED TEXT */
.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b705c;
    max-width: 90%;
}

/* MOBILE FIX  */
@media (max-width: 900px) {
    .story-section {
        flex-direction: column;
    }

    .story-image,
    .story-text {
        width: 100%;
    }

    .story-image {
        min-height: 300px;
    }
/* ========================= */
/* STORY MOBILE CENTER FIX */
/* ========================= */

.story-text{
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.story-text p{
    max-width: 100%;
}

.story-text h1,
.story-text h2{
    text-align: center;
}

}

/* TIMER SECTION */
.timer-section {
    height: 100vh;
    background: url("timerbackground.jpg") no-repeat center center/cover;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* overlay for readability */
.timer-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* content */
.timer-content {
    position: relative;
    text-align: center;
    color: #fefae0;
}

/* title */
.timer-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 30px;
}

/* countdown layout */
.countdown {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* numbers */
.countdown span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    font-weight: bold;
    display: block;
}

/* labels */
.countdown p {
    margin-top: 5px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* ========================= */
/* PROGRAM SECTION BACKGROUND */
/* ========================= */

.program-section {
    min-height: 100vh;

    /* 🔥 BACKGROUND IMAGE */
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
        url("programbackground.jpg") no-repeat center center/cover;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fefae0;

    overflow: hidden;
}

/* overlay (extra depth) */
.program-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* container */
.program-container {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 60px;
}

/* title */
.program-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* subtitle */
.program-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* ========================= */
/* LUXURY TIMELINE LAYOUT */
/* ========================= */

.program-list {
    position: relative;
    max-width: 700px;
    margin: auto;
}

/* center line */
.program-list::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: rgba(254, 250, 224, 0.4);
    left: 50%;
    transform: translateX(-50%);
}

/* items */
.program-item {
    width: 50%;
    position: relative;

    padding: 20px 30px;
    margin-bottom: 20px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(254, 250, 224, 0.3);

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* reveal animation */
.program-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT SIDE */
.program-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 40px;
}

/* RIGHT SIDE */
.program-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 40px;
}

/* timeline dots */
.program-item::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fefae0;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* dot positions */
.program-item:nth-child(odd)::before {
    right: -6px;
}

.program-item:nth-child(even)::before {
    left: -6px;
}

/* hover glow */
.program-item:hover {
    transform: scale(1.05);
    border-color: #fefae0;
    box-shadow: 0 0 25px rgba(254, 250, 224, 0.2);
}

/* text styling */
.time {
    font-weight: bold;
    font-size: 18px;
    display: block;
}

.event {
    font-size: 18px;
}


/* ========================= */
/* LUXURY WEDDING SLIDER */
/* ========================= */

.wedding-slider {
    background: #606c38; /* olive green */
    min-height: 100vh;
    padding: 80px 60px;
    color: #fefae0;
    position: relative;
}

/* TITLE TOP LEFT */
.slider-title {
    position: absolute;
    top: 40px;
    left: 60px;

    font-family: 'Playfair Display', serif;
    font-size: 48px;
    letter-spacing: 3px;
}

/* CONTAINER */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* VIEWPORT */
.slider-wrapper {
    width: 80%;
    overflow: hidden;
}

/* TRACK */
.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* EACH SLIDE */
.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE STYLE */
.slide img {
    width: 75%;
    height: auto;

    border-radius: 10px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 2px solid rgba(254,250,224,0.3);
}

/* BUTTONS */
.slider-btn {
    background: transparent;
    border: 1px solid #fefae0;
    color: #fefae0;
    font-size: 28px;

    padding: 12px 18px;
    cursor: pointer;

    transition: 0.3s;
}

.slider-btn:hover {
    background: #fefae0;
    color: #606c38;
}


/* ========================= */
/* SPLIT SLIDER LAYOUT */
/* ========================= */

.split-slider {
    display: flex;
    height: 100vh;
}

/* LEFT IMAGE SIDE */
.left-side {
    width: 50%;
    background: url("background.jpg") no-repeat center center/cover;
}

/* RIGHT CONTENT SIDE */
.right-side {
    width: 50%;
    background: #606c38; /* olive green */
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* TITLE CENTER TOP */
.split-title {
    position: absolute;
    top: 40px;

    font-family: 'Playfair Display', serif;
    font-size: 40px;
    letter-spacing: 3px;

    text-align: center;
    width: 100%;
    color: #fefae0;
}

/* SLIDER */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.slider-wrapper {
    width: 80%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 80%;
    border-radius: 10px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* BUTTONS */
.slider-btn {
    background: transparent;
    border: 1px solid #fefae0;
    color: #fefae0;
    font-size: 28px;

    padding: 12px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #fefae0;
    color: #606c38;
}

/* ========================= */
/* LUXURY LOCATION SECTION */
/* ========================= */

.location-section{
    position: relative;
    min-height: 100vh;
    padding: 140px 60px;
    overflow: hidden;
}

/* BACKGROUND LAYERS */
.bg-gradient{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135 deg, #fefae0, #faedcd);
    z-index: -3;
}

.bg-glow{
    position: absolute;
    width: 700px;
    height: 700px;
    background: rgba(204, 213, 174, 0.35);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    filter: blur(160px);
    animation: float 10s ease-in-out infinite alternate;
    z-index: -2;
}

.bg-noise{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.15s;
    z-index: -1;
}

/* FLOAT ANIMATION */
@keyframes float{ 
    from { transform: translateY(0); }
    to { transform: translateY(80px); }
}

/* TITLE */
.location-title{ 
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    letter-spacing: 5px;
    color: #606c38;
}

/* SHIMMER LINE */
.location-divider{
    width: 120px;
    height: 2px;
    margin: 25px auto 80px;

    background: linear-gradient(90deg, transparent, #606c38, transparent);
    background-size: 200%;

    animation: shimmer 3s linear infinite;
}

@keyframes shimmer{
    from { background-position: 200%; }
    to { background-position: -200%; }
}

/* CONTAINER */
.location-container{ 
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

/* CARD */
.location-card {
    width: 420px;
    padding: 20px;

    border-radius: 20px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(96,108,56,0.2);

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);

    transition: all 0.5s ease;
}

.location-card:hover{
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* ========================= */
/* LUXURY ADD-ONS */
/* ========================= */

/* FIX SMALL BUG */
.bg-gradient{
    background: linear-gradient(135deg, #fefae0, #faedcd);
}

.bg-noise{
    opacity: 0.15; /* fixed typo */
}

/* IMAGE HOVER ZOOM */
.img-wrapper img{
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.location-card:hover img{
    transform: scale(1.1);
}

/* OVERLAY TEXT IMPROVEMENT */
.img-overlay{
    position: absolute;
    bottom: 20px;
    left: 20px;

    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;

    background: rgba(0,0,0,0.35);
    padding: 10px 18px;
    border-radius: 30px;

    backdrop-filter: blur(6px);
    letter-spacing: 1px;
}

/* LOCATION INFO TEXT */
.location-info{
    text-align: center;
    margin-top: 18px;
}

.venue-name{
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #283618;
    letter-spacing: 1px;
}

.venue-address{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #606c38;
    opacity: 0.85;
    margin-top: 5px;
}

/* LUXURY BUTTON */
.location-btn{
    margin-top: 18px;
    padding: 12px 28px;

    border-radius: 30px;
    border: none;

    background: linear-gradient(135deg, #606c38, #283618);
    color: #fff;

    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-size: 13px;

    cursor: pointer;
    transition: all 0.4s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.location-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);

    background: linear-gradient(135deg, #283618, #606c38);
}

/* CARD SHINE EFFECT */
.location-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transform: skewX(-25deg);
    pointer-events: none;
}

.location-card:hover::before{
    animation: shineSweep 1s ease forwards;
}

@keyframes shineSweep{
    from{
        left: -120%
}
    to{
        left: 130%;
    }
}

/* GOLD CORNER ACCENTS */
.location-card::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    border: 1px solid rgba(212, 175, 55, 0.25); /* gold */
    pointer-events: none;
}

/* SOFT FADE IN */
.location-card{
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;

    position: relative;
    overflow: hidden;
}

.location-card:nth-child(2){
    animation-delay: 0.3s;
}

@keyframes fadeUp{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================= */
/* CEREMONY NOTE */
/* ========================= */

.ceremony-note-wrapper{
    position: relative;
    z-index: 3;

    margin: 90px auto 140px;
    max-width: 1000px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.ceremony-divider{
    width: 140px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(40,54,24,0.65),
        transparent
    );
}

.ceremony-note{
    max-width: 900px;
    margin: 25px auto;

    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 2;

    color: #283618;

    font-weight: 500;
    letter-spacing: 0.8px;

    padding: 0 20px;

    text-shadow: 0 2px 18px rgba(255,255,255,0.7);
}

/* ========================= */
/* ATTIRE + GRATITUDE BACKGROUND WRAPPER */
/* ========================= */

.attire-main-section{
    position: relative;

    background:
    linear-gradient(
        135deg,
        rgba(47,79,62,0.96) 0%,
        rgba(96,108,56,0.93) 30%,
        rgba(163,177,138,0.88) 65%,
        rgba(248,245,239,0.96) 100%
    );

    padding: 40px 0 0;
}

/* ========================= */
/* ATTIRE SECTION */
/* ========================= */

.attire-section{
    position: relative;

    margin: 0px 0 0px; /* MOVED UP */

    padding: 100px 60px;

    border-radius: 35px;

    border: 1px solid rgba(255,255,255,0.18);

    overflow: hidden;
    isolation: isolate;

    box-shadow:
    0 35px 120px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

/* soft overlay */
.attire-section::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
    radial-gradient(circle at top right, rgba(255,255,255,0.20), transparent 40%),
    radial-gradient(circle at bottom left, rgba(248,245,239,0.18), transparent 35%);

    z-index: 0;
}

/* glow */
.attire-glow{
    position: absolute;
    width: 600px;
    height: 600px;

    background: rgba(212,175,55,0.14);
    border-radius: 50%;

    top: -250px;
    right: -150px;

    filter: blur(130px);
    z-index: 0;
}

/* HEADER */
.attire-header{
    position: relative;
    z-index: 2;

    text-align: center;
}

.attire-couple{
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;

    color: #f8f5ef;
    font-size: 13px;

    margin-bottom: 15px;
}

.attire-title{
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    letter-spacing: 6px;

    color: #ffffff;
}

.attire-divider{
    width: 140px;
    height: 2px;

    margin: 30px auto;

    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    background-size: 200%;
    animation: shimmer 3s linear infinite;
}

.attire-description{
    max-width: 780px;
    margin: auto;

    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.9;

    color: rgba(255,255,255,0.92);
}

/* ========================= */
/* ATTIRE CARDS */
/* ========================= */

.attire-cards{
    position: relative;
    z-index: 2;

    margin-top: 70px;

    display: flex;
    justify-content: center;
}

.attire-card{
    width: 100%;
    max-width: 900px;

    padding: 60px;

    border-radius: 28px;

    background: rgba(255,255,255,0.20);
    border: 1px solid rgba(255,255,255,0.18);

    backdrop-filter: blur(18px);

    box-shadow: 0 25px 80px rgba(0,0,0,0.18);

    transition: 0.4s ease;
}

.attire-card:hover{
    transform: translateY(-8px);
}

.attire-card h3{
    text-align: center;

    font-family: 'Playfair Display', serif;
    font-size: 36px;
    letter-spacing: 4px;

    color: #fff;

    margin-bottom: 50px;
}

.attire-details{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.attire-box{
    flex: 1;
    min-width: 260px;

    padding: 35px;
    border-radius: 22px;

    background: rgba(248,245,239,0.88);

    text-align: center;

    position: relative;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* subtle glow */
.attire-box::before{
    content:"";
    position:absolute;
    inset:0;

    background: radial-gradient(circle at top, rgba(255,255,255,0.6), transparent 70%);
    opacity: 0.35;
}

.attire-box h4{
    font-family: 'Playfair Display', serif;
    font-size: 28px;

    color: #283618;
}

.attire-box p{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;

    color: #606c38;
}

/* ========================= */
/* COLOR PALETTE */
/* ========================= */

.color-guide{
    position: relative;
    z-index: 2;

    margin-top: 90px;

    text-align: center;
}

.color-title{
    font-family: 'Playfair Display', serif;
    font-size: 38px;

    color: #fff;
}

.color-description{
    max-width: 800px;
    margin: auto;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;

    color: rgba(255,255,255,0.92);
}

.color-palette{
    margin-top: 55px;

    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.color-item{
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;
    width: 140px;
}

.color-circle{
    width: 85px;
    height: 85px;

    border-radius: 50%;

    border: 4px solid rgba(255,255,255,0.85);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.25),
    inset 0 3px 10px rgba(255,255,255,0.6);
}

/* COLORS */
.forest{ background:#2f4f3e; }
.olive{ background:#708238; }
.sage{ background:#a3b18a; }
.taupe{ background:#c2b280; }
.cream{ background:#f8f5ef; }

/* ========================= */
/* GRATITUDE (WHITE CARD - KEPT LUXURY) */
/* ========================= */

.gift-message-container{
    margin: 0 auto 120px;

    max-width: 900px;

    padding: 80px 40px;

    border-radius: 25px;

    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.35);

    box-shadow: 0 40px 120px rgba(0,0,0,0.15);

    position: relative;
    overflow: hidden;

    transition: 0.4s ease;
}

.gift-message-container:hover{
    transform: translateY(-6px);
}

.gift-glow{
    position: absolute;
    width: 500px;
    height: 500px;

    background: rgba(212,175,55,0.18);

    top: -200px;
    right: -200px;

    filter: blur(140px);
}

.gift-content{
    position: relative;
    text-align: center;
}

.gift-title{
    font-family: 'Playfair Display', serif;
    font-size: 34px;

    color: #283618;
}

.gift-divider{
    width: 100px;
    height: 2px;

    margin: 20px auto 30px;

    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    background-size: 200%;
}

.gift-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;

    color: #606c38;

    font-style: italic;
    line-height: 1.8;

    max-width: 700px;
    margin: auto;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

    .attire-section{
        padding: 70px 25px;
    }

    .attire-title{
        font-size: 38px;
    }

    .attire-card{
        padding: 35px 22px;
    }

    .gift-message-container{
        padding: 60px 25px;
    }
}

/* ========================= */
/* PRENUP SECTION */
/* ========================= */

.prenup-section{
    position: relative;
    padding: 140px 60px;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #606c38 0%,
        #4f5d2f 50%,
        #3a4723 100%
    );
}

/* ========================= */
/* BACKGROUND */
/* ========================= */

.prenup-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.prenup-gradient{
    position: absolute;
    width: 100%;
    height: 100%;

    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(0,0,0,0.2), transparent 60%);
}

.prenup-texture{
    position: absolute;
    width: 100%;
    height: 100%;

    background: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.06;
}

/* ========================= */
/* TITLE */
/* ========================= */

.prenup-title{
    position: relative;
    z-index: 2;

    font-family: 'Playfair Display', serif;
    font-size: 54px;
    text-align: center;

    color: #fefae0;
    letter-spacing: 4px;
}

.prenup-divider{
    position: relative;
    z-index: 2;

    width: 120px;
    height: 2px;
    margin: 20px auto 70px;

    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* ========================= */
/* GALLERY (FIXED - NO CUTTING) */
/* ========================= */

.prenup-gallery{
    position: relative;
    z-index: 2;

    column-count: 3;
    column-gap: 25px;
}


@media(max-width: 900px){
    .prenup-gallery{
        column-count: 2;
    }
}

@media(max-width: 500px){
    .prenup-gallery{
        column-count: 1;
    }
}

/* CARD */
.prenup-item{
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;

    border-radius: 16px;
    overflow: hidden;
	
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);

    box-shadow: 0 20px 60px rgba(0,0,0,0.25);

    position: relative;

    /* 🔥 FIX ONLY (prevents column layout glitches) */
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 25px;
}


/* MOBILE */

@media (max-width: 900px) {
    .prenup-gallery {
        column-count: 2;
    }
}

@media (max-width: 500px) {
    .prenup-gallery {
        column-count: 1;
    }

}
/* IMAGE FIX (NO CROPPING EVER) */
.prenup-item img{
    width: 100%;
    height: auto;
    display: block;

    transition: transform 0.6s ease;
}

.prenup-item:hover img{
    transform: scale(1.05);
}

/* OVERLAY */
.prenup-overlay{
    position: absolute;
    bottom: 15px;
    left: 15px;

    font-family: 'Playfair Display', serif;
    font-size: 16px;

    color: #fff;

    background: rgba(0,0,0,0.4);
    padding: 6px 14px;
    border-radius: 30px;

    backdrop-filter: blur(6px);

    opacity: 0;
    transition: 0.4s ease;
}

.prenup-item:hover .prenup-overlay{
    opacity: 1;
}

/* ======================== */
/* FAQ SECTION LUXURY STYLE */
/* ========================= */

.faq-section{
    position: relative;
    padding: 140px 60px;
    overflow: hidden;
}

/* PRENUP BACKGROUND IMAGE */
.faq-section::before{
    content: "";
    position: absolute;
    inset: 0;

    background: url("prenup3.jpg") center/cover no-repeat;
    filter: blur(10px) brightness(0.35);
    transform: scale(1.1);

    z-index: 0;
}

/* DARK OVERLAY */
.faq-section::after{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(120 deg, rgba(0,0,0,0.75),rgba(0,0,0,0.5));
    z-index: 1;
}

/* TITLE */
.faq-title{
    position: relative;
    z-index: 2;
     
    font-family: 'Playfair Display', serif;
    font-size: 45px;

    text-align: center;
    color: #fefae0;

    letter-spacing: 3px;
}

/* DIVIDER */
.faq-divider{
    position: relative;
    z-index: 2;

    width: 120px;
    height: 2px;

    margin: 20px auto 70px;

    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* GRID */
.faq-grid{
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    gap: 60px;

    max-width: 1200px;
    margin: auto;
}

/* COLUMN */
.faq-column{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* FAQ CARD (LUXURY GLASS EFFECT) */
.faq-card{
    padding: 25px 30px;

    border-radius: 18px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.025);

    backdrop-filter: blur(14px);

    box-shadow: 0 25px 60px rgba(0,0,0,0.35);

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.faq-card:hover{
    transform: translateY(-6px);
    border-color: rgba(212,175,55,0.6);
}

/* QUESTION */
.faq-card h2{
    font-family: 'Playfair Display', serif;
    font-size: 18px;

    color: #fafea0;
    margin-bottom: 10px;
}

/* ANSWER */
.faq-card p{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;

    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}


/* ========================= */
/* RSVP SECTION */
/* ========================= */
.rsvp-section {
    position: relative;
    padding: 120px 20px;
    background: url('profile.jpg') center/cover no-repeat;
    text-align: center;
    color: #2e2e2e;
}

.rsvp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.rsvp-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rsvp-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 10px;
    color: #556b2f;
}

.rsvp-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    color: #777;
}

/* FORM */
.rsvp-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
}

/* RADIO */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    font-size: 14px;
}

/* BUTTON */
.rsvp-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #556b2f;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.rsvp-btn:hover {
    background: #6b8e23;
}

/* ===== MUSIC PLAYER (LUXURY STYLE) ===== */

.music-player{
    margin-top: 40px;
    padding: 18px 25px;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* LEFT SIDE */
.music-info{
    display: flex;
    align-items: center;
    gap: 15px;
}

.album-art{
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: url('prenup1.jpg') center/cover;
}

.song-details h3{
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin: 0;
}
 
.song-details p{
    font-size: 12px;
    opacity: 0.7;
}

/* PLAY BUTTON */
.play-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;

    font-size: 18px;
    cursor: pointer;

    background: linear-gradient(135deg, #d4af37, #f7e7a9);
    color: #000;

    box-shadow: 0 4px 15px rgba(212,175,55,0.4);

    transition: 0.3s;
}

.play-btn:hover{
    transform: scale(1.1);
}

/* ========================= */
/* RESPONSIVE FIX (MOBILE SUPPORT ONLY) */
/* ========================= */

@media (max-width: 1024px){

    /* GLOBAL SAFETY */
    body{
        overflow-x: hidden;
    }

    /* HERO TEXT */
    .names{
        font-size: 40px;
    }

    .tagline,
    .date{
        font-size: 14px;
    }

    /* PROFILE SECTION */
    .profile-container{
        flex-direction: column;
        align-items: center;
    }

    .profile-card{
        width: 90%;
        margin-bottom: 30px;
    }

    /* STORY */
    .story-section{
        flex-direction: column;
        text-align: center;
    }

    .story-text{
        padding: 20px;
    }

    /* TIMER */
    .countdown{
        flex-wrap: wrap;
        gap: 20px;
    }

    /* PROGRAM */
    .program-list{
        flex-direction: column;
        gap: 15px;
    }

    /* SLIDER */
    .split-slider{
        flex-direction: column;
    }

    .left-side,
    .right-side{
        width: 100%;
    }

    /* LOCATION */
    .location-container{
        flex-direction: column;
        align-items: center;
    }

    /* PRENUP GALLERY */
    .prenup-item{
        width: 100% !important;
    }

    /* FAQ SPLIT → STACK ON MOBILE */
    .faq-grid{
        flex-direction: column;
        gap: 30px;
    }

    /* RSVP */
    .rsvp-container{
        width: 90%;
        margin: auto;
    }

    /* BUTTON SIZES */
    button{
        touch-action: manipulation;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

@media (max-width: 900px){

    /* FORCE ALL SECTIONS SAFE */
    section{
        width: 100%;
        overflow-x: hidden;
    }

    /* FIX FLEX LAYOUT */
    .profile-container,
    .location-container,
    .program-list,
    .split-slider {
        flex-direction: column !important;
        align-items: center;
    }

    /* FIX TEXT OVERFLOW */
    h1, h2, p  {
        word-wrap: break-word;
    }

    /* FIX TEXT OVERFLOW */
    .profile-card,
    .location-card {
        width: 90% !important;
    }
}
  

/* ========================= */
/* 🔥 FINAL MOBILE FIX (DO NOT EDIT ABOVE, ONLY ADD THIS BELOW) */
/* ========================= */

html, body {
overflow-x: hidden;
}

/* ========================= */
/* MOBILE FIX START */
/* ========================= */
@media (max-width: 768px){

/* 🔥 REMOVE RANDOM WHITE SPACES FROM FULL HEIGHT SECTIONS */
.hero,
.timer-section,
.program-section,
.split-slider {
    height: auto !important;
    min-height: auto !important;
    padding: 80px 20px !important;
}

/* 🔥 FIX SPLIT SLIDER GAP */
.split-slider {
    flex-direction: column;
}

.left-side {
    width: 100%;
    height: 250px;
}

.right-side {
    width: 100%;
    padding: 40px 20px;
}

.slider-wrapper {
    width: 100%;
}

.slide img {
    width: 100%;
}

/* 🔥 FIX PROGRAM TIMELINE BREAK (MAJOR GAP ISSUE) */
.program-list::before {
    display: none;
}

.program-item {
    width: 100% !important;
    left: 0 !important;
    text-align: center !important;
    padding: 15px !important;
}

.program-item::before {
    display: none;
}

/* 🔥 FIX LOCATION EXTRA SPACE */
.location-section {
    padding: 80px 20px !important;
}



h1 {
    font-size: 26px !important;
    line-height: 1.2;
}

h2 {
    font-size: 18px !important;
}

p {
    font-size: 13px !important;
    line-height: 1.5;
}

.names {
    font-size: 32px !important;
}

.invite-text {
    font-size: 14px !important;
}

/* 🔥 PREVENT AWKWARD TEXT BREAKING */
.location-title,
.profile-title,
.prenup-title {
    word-break: keep-all;
}

}
/* ========================= */
/* MOBILE FIX END */
/* ========================= */