/*=====================================================
  VIJAY ❤️ RASHIMA
  PREMIUM WEDDING WEBSITE
======================================================*/


/*=====================================================
ROOT VARIABLES
======================================================*/
html{
    
overflow-x:hidden;
}
body {
    overflow-x: hidden;
}
:root{

    --primary:#F7D6DD;
    --secondary:#F8EDEB;
    --lavender:#E8DDFD;
    --peach:#FFE4D6;
    --beige:#F6F0EA;
    --white:#FFFFFF;

    --gold:#D4AF37;
    --gold-light:#F8E7A1;

    --text:#433A3F;
    --text-light:#6B6467;

    --glass:rgba(255,255,255,.22);
    --glass-border:rgba(255,255,255,.45);

    --shadow:
        0 20px 45px rgba(0,0,0,.08);

    --radius:24px;

    --transition:.4s ease;

}



/*=====================================================
RESET
======================================================*/

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(
        180deg,
        #FFF7F8,
        #FFFDFB
    );

    color:var(--text);

    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    cursor:pointer;
    border:none;
    outline:none;
    font-family:inherit;

}

section{

    position:relative;

    padding:40px 0;

}



/*=====================================================
CONTAINER
======================================================*/

.container{

    width:min(1200px,92%);
    margin:auto;

}



/*=====================================================
CUSTOM SCROLLBAR
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#fff;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--primary),
        var(--gold)
    );

    border-radius:50px;

}



/*=====================================================
BACKGROUND
======================================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

        radial-gradient(circle at top left,
        rgba(255,215,220,.5),
        transparent 40%),

        radial-gradient(circle at bottom right,
        rgba(230,220,255,.4),
        transparent 35%),

        radial-gradient(circle at center,
        rgba(255,245,225,.25),
        transparent 60%);

    z-index:-2;

}



/*=====================================================
FLOATING BLOBS
======================================================*/

body::after{

    content:"";

    position:fixed;

    width:700px;

    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(255,210,225,.22),
        transparent 70%
    );

    filter:blur(90px);

    right:-250px;

    top:-180px;

    animation:blobMove 16s infinite alternate;

    z-index:-2;

}

@keyframes blobMove{

    from{

        transform:
        translateY(0)
        rotate(0deg);

    }

    to{

        transform:
        translateY(120px)
        rotate(18deg);

    }

}



/*=====================================================
LOADER
======================================================*/
div#floatingHearts span img {
    border-radius: 100%;
}
video {
    filter: blur(1px);
     
    filter: contrast(180%) saturate(180%);
    image-rendering: crisp-edges;
    filter: blur(1px);
}
#loader{

    position:fixed;

    inset:0;

    background:
    linear-gradient(
        135deg,
        #FFF8FA,
        #FCE9F0,
        #F6ECFF
    );

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.loader-content{

    text-align:center;

}

.loader-heart{

    font-size:75px;

    animation:pulse 1.4s infinite;

}

.loader-content h1{

    font-family:'Great Vibes',cursive;

    font-size:72px;

    color:var(--gold);

    margin-top:20px;

}

.loader-content p{

    margin:20px 0;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#666;

}

#openInvitation{

    padding:18px 42px;

    border-radius:60px;

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #FFD86C
    );

    color:white;

    font-weight:600;

    transition:.4s;

    box-shadow:
    0 12px 30px rgba(212,175,55,.35);

}

#openInvitation:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 22px 40px rgba(212,175,55,.45);

}



/*=====================================================
HEADER
======================================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:1000;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.45);

    border-bottom:1px solid rgba(255,255,255,.35);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    font-size:34px;

    font-family:'Great Vibes';

    color:var(--gold);

}

.logo span{

    color:#FF5A9F;

}

nav ul{

    display:flex;

    gap:35px;

}

nav a{

    color:var(--text);

    font-weight:500;

    transition:.35s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

nav a:hover{

    color:var(--gold);

}

nav a:hover::after{

    width:100%;

}



/*=====================================================
SECTION TITLE
======================================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:13px;

}

.section-title h2{

    font-size:54px;

    margin:18px 0;

    font-family:'Playfair Display';

    color:#3E3437;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#6B6467;

    line-height:1.8;

}



/*=====================================================
BUTTONS
======================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    font-weight:600;

    transition:.4s;

}

.btn-primary{

    background:
    linear-gradient(
        135deg,
        var(--gold),
        #FFD86B
    );

    color:white;

    box-shadow:
    0 15px 35px rgba(212,175,55,.35);

}

.btn-primary:hover{

    transform:
    translateY(-5px);

}

.btn-outline{

    border:2px solid var(--gold);

    color:var(--gold);

    background:white;

}

.btn-outline:hover{

    background:var(--gold);

    color:white;

}



/*=====================================================
GLASS CARD
======================================================*/

.glass{

    background:var(--glass);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(20px);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}



/*=====================================================
HERO SECTION
======================================================*/

#hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    position:relative;

    padding-top:120px;

    background:
        linear-gradient(
            135deg,
            rgba(255,247,248,.95),
            rgba(255,255,255,.90)
        );
        transition: all 0.5s;

}


/* Decorative Background */

.hero-bg{

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at 15% 20%,
        rgba(255,210,225,.35),
        transparent 35%),

        radial-gradient(circle at 85% 25%,
        rgba(230,220,255,.35),
        transparent 30%),

        radial-gradient(circle at center,
        rgba(255,240,215,.25),
        transparent 45%);

    z-index:-2;

}


.hero-overlay{

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            rgba(255,255,255,.05),
            rgba(255,255,255,.30)
        );

    z-index:-1;

}


/* Layout */

.hero-wrapper{

   

    align-items:center;

    gap:70px;

}



/* Left Content */

.hero-text{

    animation:fadeLeft 1.2s ease;

}


.hero-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.5);

    color:var(--gold);

    font-weight:600;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}


.hero-text h2{

    font-size:22px;

    color:#666;

    font-weight:500;

    margin-bottom:15px;

}


.hero-text h1{

    font-family:'Great Vibes',cursive;

    font-size:110px;

    line-height:1;

    color:var(--gold);

    margin-bottom:25px;
            font-family: 'IvoryMonoLight';
        letter-spacing: -9px;
        display: flex;
    flex-direction: column;

}

.mdlprnt{
    
        display: inline-block;
    position: relative;
    height: 50px;
    width: 100%;

    
}
/*.hero-text h1 span.mdle{*/

/*    color:#FF5D9A;*/

/*    margin:0 15px;*/
/*    animation: bounce 2s infinite;*/
/*    position: absolute;*/
/*    margin-top: initial;*/
/*    margin-left: 0px;*/
/*}*/

.hero-text h1 span.mdle {
    color: transparent;
    background: transparent;
    margin: 0;
    animation: bounce 2s infinite;
    position: absolute;
    margin-top: initial;
    margin-left: 0px;
    background-image: url(../images/heartcouple.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 49px;
}
.hero-text p{

    font-size:18px;

    color:#666;

    line-height:1.9;

    max-width:520px;

    margin-bottom:45px;

}


.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}



/* Couple Image */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}


.hero-image img:first-child{

    width:100%;

    max-width:500px;

    border-radius:35px;

    box-shadow:

        0 30px 60px rgba(0,0,0,.12);

    animation:floatImage 6s ease-in-out infinite;

}



/* Gold Ring */

.hero-image::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border:3px solid rgba(212,175,55,.35);

    border-radius:50%;

    animation:rotateRing 35s linear infinite;

}



/* Second Ring */

.hero-image::after{

    content:"";

    position:absolute;

    width:620px;

    height:620px;

    border:2px dashed rgba(255,182,193,.30);

    border-radius:50%;

    animation:rotateReverse 55s linear infinite;

}



/* Stickers */

.sticker{

    position:absolute;

    width:70px;

    animation:floatSticker 4s ease-in-out infinite;

}


.sticker-heart{

    top:5%;

    left:10%;

}


.sticker-ring{

    right:8%;

    top:20%;

}


.sticker-flower{

    bottom:8%;

    left:15%;

}



/* Flowers */

.flower{

    position:absolute;

    width:170px;

    opacity:.85;

    pointer-events:none;

}


.flower1{

    top:0;

    left:0;

}


.flower2{

    right:0;

    top:15%;

}


.flower3{

    bottom:0;

    left:10%;

}



/* Scroll Indicator */

.scroll-down{

    position:absolute;

       bottom: -15px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    color:#999;

    animation:bounce 2s infinite;

}


.mouse{

    width:30px;

    height:50px;

    border:2px solid #bbb;

    border-radius:20px;

    margin-top:10px;

    position:relative;

}


.wheel{

    width:6px;

    height:10px;

    background:var(--gold);

    border-radius:20px;

    position:absolute;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    animation:wheelMove 1.5s infinite;

}



/* Floating Hearts */

#floatingHearts{

    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:5;

}


.heart{

    position:absolute;

    bottom:-30px;

    font-size:22px;

    animation:heartFloat linear forwards;

}



/* Sparkles */

#sparkles{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:4;

}


.sparkle{

    position:absolute;

    width:5px;

    height:5px;

    background:var(--gold);

    border-radius:50%;

    box-shadow:0 0 12px var(--gold);

    animation:sparkle 2s infinite;

}



/* Mouse Glow */

.mouse-glow{

    position:fixed;

    width:300px;

    height:300px;

    border-radius:50%;

    pointer-events:none;

    background:

        radial-gradient(circle,
        rgba(255,210,225,.35),
        transparent 70%);

    filter:blur(40px);

    z-index:2;

}



/* Animations */

@keyframes floatImage{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}


@keyframes floatSticker{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}


@keyframes rotateRing{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}


@keyframes rotateReverse{

    from{

        transform:rotate(360deg);

    }

    to{

        transform:rotate(0deg);

    }

}


@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-50px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}


@keyframes bounce{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,-12px);

    }

}


@keyframes wheelMove{

    0%{

        opacity:1;

        top:8px;

    }

    100%{

        opacity:0;

        top:28px;

    }

}


@keyframes heartFloat{

    from{

        transform:translateY(0);

        opacity:1;

    }

    to{

        transform:translateY(-110vh);

        opacity:0;

    }

}


@keyframes sparkle{

    0%,100%{

        transform:scale(0);

        opacity:0;

    }

    50%{

        transform:scale(1);

        opacity:1;

    }

}


/*=====================================================
LOVE STORY
======================================================*/

#story{

    background:
        linear-gradient(
            180deg,
            #FFFDFB,
            #FFF6F8
        );

    overflow:hidden;

}

.timeline{

    position:relative;

    max-width:1100px;

    margin:80px auto 0;

    padding:20px 0;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    transform:translateX(-50%);

    width:4px;

    height:100%;

    background:
        linear-gradient(
            var(--gold),
            #FFD86C,
            var(--primary)
        );

    border-radius:20px;

}

.timeline-item{

    width:50%;

    position:relative;

    margin-bottom:80px;

}

.timeline-item.left{

    padding-right:70px;

}

.timeline-item.right{

    margin-left:50%;

    padding-left:70px;

}

.timeline-content{

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:25px;

    padding:30px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.timeline-content:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.timeline-content h3{

    font-family:'Playfair Display';

    color:var(--gold);

    font-size:28px;

    margin-bottom:15px;

}

.timeline-content p{

    color:#666;

    line-height:1.9;

}

.timeline-item::before{

    content:"❤";

    position:absolute;

    top:35px;

    width:48px;

    height:48px;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#FF5D9A;

    font-size:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    z-index:10;

}

.timeline-item.left::before{

    right:-24px;

}

.timeline-item.right::before{

    left:-24px;

}



/*=====================================================
GALLERY
======================================================*/

#gallery{

    background:
        linear-gradient(
            180deg,
            #FFF6F8,
            #FFFFFF
        );
        padding-bottom:20px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.gallery-item{

    overflow:hidden;

    border-radius:28px;

    cursor:pointer;

    position:relative;

    

    transition:.45s;

    background:white;

}

.gallery-item img{

    height:380px;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover{

    transform:translateY(-12px);
 

}
#gallery .slick-dots li button:before {
 
    font-size: 16px; 
}

#gallery  .slick-dots li.slick-active button:before {
    opacity: .75;
    color: var(--gold);
}
.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"♡";

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:60px;

    color:white;

    background:rgba(212,175,55,.30);

    opacity:0;

    transition:.4s;

}

.gallery-item:hover::after{

    opacity:1;

}



/*=====================================================
LIGHTBOX
======================================================*/

#lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

#lightbox.active{

    display:flex;

}

#lightbox img{

    max-width:90%;

    max-height:85vh;

    border-radius:25px;

    box-shadow:0 30px 80px rgba(0,0,0,.45);

    animation:zoomImage .35s ease;

}

.close-lightbox{

    position:absolute;

    top:35px;

    right:45px;

    font-size:48px;

    color:white;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    color:var(--gold);

    transform:rotate(90deg);

}

@keyframes zoomImage{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}



/*=====================================================
SECTION DIVIDER
======================================================*/

.section-divider{

    padding:50px 0;

    text-align:center;

    background:transparent;

}

.divider-icon{

    font-size:40px;

    animation:pulseDivider 2s infinite;

}

@keyframes pulseDivider{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.25);

    }

}

/*=====================================================
WEDDING EVENTS
======================================================*/

#events{

    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #FFF8FB
        );

    overflow:hidden;

}

.events-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

    margin-top:70px;

}



/*========================================
EVENT CARD
========================================*/

.event-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.45);

    box-shadow:0 25px 55px rgba(0,0,0,.08);

    transition:.45s;

}

.event-card:hover{

    transform:translateY(-15px);

    box-shadow:0 40px 80px rgba(0,0,0,.16);

}



/*========================================
EVENT IMAGE
========================================*/

.event-image{

    height:320px;

    overflow:hidden;

    position:relative;

}

.event-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.event-card:hover .event-image img{

    transform:scale(1.08);

}



/*========================================
GRADIENT OVERLAY
========================================*/
 



/*========================================
CONTENT
========================================*/

.event-content{

    padding:30px;

}

.event-content h3{

    font-size:30px;

    margin:15px 0;

    font-family:'Playfair Display';

    color:#44383D;

}

.event-content p{

    color:#666;

    line-height:1.8;

}



/*========================================
EVENT TAG
========================================*/

.event-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:40px;

    color:white;

    font-size:14px;

    font-weight:600;

}



/*========================================
DETAILS
========================================*/

.event-details{

    margin-top:25px;

    display:flex;

    flex-direction:column;

    gap:12px;

}

.event-details p{

    display:flex;

    align-items:center;

    gap:10px;

    color:#555;

    font-size:15px;

}



/*=====================================================
HALDI
======================================================*/

.event-card:nth-child(1){

    background:
        linear-gradient(
            180deg,
            #FFFDF4,
            #FFF6D8
        );

}

.event-card:nth-child(1) .event-tag{

    background:
        linear-gradient(
            135deg,
            #FFC107,
            #FFD54F
        );

}



/*=====================================================
MEHENDI
======================================================*/

.event-card:nth-child(2){

    background:
        linear-gradient(
            180deg,
            #F8FFF7,
            #E8F8E7
        );

}

.event-card:nth-child(2) .event-tag{

    background:
        linear-gradient(
            135deg,
            #43A047,
            #66BB6A
        );

}



/*=====================================================
SANGEET
======================================================*/

.event-card:nth-child(3){

    background:
        linear-gradient(
            180deg,
            #F8F3FF,
            #EEE5FF
        );

}

.event-card:nth-child(3) .event-tag{

    background:
        linear-gradient(
            135deg,
            #7E57C2,
            #9575CD
        );

}



/*=====================================================
FEATURED WEDDING
======================================================*/

.featured{

    transform:scale(1.04);

    border:2px solid rgba(212,175,55,.25);

    box-shadow:

        0 30px 70px rgba(212,175,55,.18);

}

.featured:hover{

    transform:scale(1.06) translateY(-15px);

}

.featured::before{

    content:"MOST SPECIAL";

    position:absolute;

    top:20px;

    right:-45px;

    width:180px;

    text-align:center;

    padding:8px;

    background:linear-gradient(
        135deg,
        #D4AF37,
        #FFD86C
    );

    color:white;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    transform:rotate(45deg);

    z-index:20;

}

.featured{

    background:

        linear-gradient(
            180deg,
            #FFFDF9,
            #FFF3D8
        );

}

.featured .event-tag{

    background:
        linear-gradient(
            135deg,
            #D4AF37,
            #FFD86C
        );

}



/*=====================================================
RECEPTION
======================================================*/

.event-card:nth-child(5){

    background:
        linear-gradient(
            180deg,
            #FFF7FA,
            #FFE7F3
        );

}

.event-card:nth-child(5) .event-tag{

    background:
        linear-gradient(
            135deg,
            #EC407A,
            #F06292
        );

}



/*=====================================================
SHIMMER EFFECT
======================================================*/

.event-card::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.45),

            transparent

        );

    transform:skewX(-25deg);

    transition:1s;

}

.event-card:hover::after{

    left:150%;

}



/*=====================================================
EVENT DECORATIVE ICON
======================================================*/

.event-card::before{

    content:"🌸";

    position:absolute;

    font-size:90px;

    opacity:.08;

    right:15px;

    bottom:15px;

    pointer-events:none;

}



/*=====================================================
RESPONSIVE
======================================================*/

 

    .events-grid{

        grid-template-columns:1fr;

    }

    .featured{

        transform:none;

    }

    .featured:hover{

        transform:translateY(-12px);

    }

 

    .event-image{

        height:260px;

    }

    .event-content{

        padding:22px;

    }

    .event-content h3{

        font-size:24px;

    }

 .event-image {
    height: 260px;
    padding-top: 100%;
}


.event-image  video{
	border-radius: 100%;
    position: absolute;
    z-index: 111;
    object-position: right;
    object-fit: cover;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    height: 100%;
    height: auto;
    top: 0;
    width: 100%;
    height: 100%;

}

/*=====================================================
COUNTDOWN
======================================================*/

#countdown{

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #FFF7F8,
            #FFFDFB,
            #F8F0FF
        );

}

#countdown::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at top left,
        rgba(255,215,220,.35),
        transparent 30%),

        radial-gradient(circle at bottom right,
        rgba(212,175,55,.18),
        transparent 35%);

    pointer-events:none;

}

.countdown-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.time-box{

    position:relative;

    text-align:center;

    padding:40px 20px;

    border-radius:28px;

    background:rgba(255,255,255,.60);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.50);

    box-shadow:0 25px 50px rgba(0,0,0,.08);

    transition:.4s;

}

.time-box:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 70px rgba(0,0,0,.15);

}

.time-box h3{

    font-size:68px;

    font-family:'Playfair Display';

    color:var(--gold);

    line-height:1;

    margin-bottom:12px;

}

.time-box span{

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    color:#666;

}

.time-box::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    padding:2px;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.65),
            rgba(255,255,255,.15)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}

.time-box::after{

    content:"❤";

    position:absolute;

    top:18px;

    right:20px;

    font-size:18px;

    opacity:.25;

}

.time-box:hover h3{

    transform:scale(1.08);

    transition:.3s;

}



/*=====================================================
SCRATCH SECTION
======================================================*/

#scratch{

    position:relative;

    background:

        linear-gradient(
            180deg,
            #FFFDFB,
            #FFF5F8
        );
        padding-bottom:50px;

}

.scratch-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:60px;

}

.scratch-card{

    position:relative;

    width:700px;

    max-width:100%;

    height:350px;

    overflow:hidden;

    border-radius:35px;

    background:

        linear-gradient(
            135deg,
            #FFF8F9,
            #FFFFFF
        );

    box-shadow:

        0 35px 80px rgba(0,0,0,.10);

}

.scratch-result{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:

        linear-gradient(
            135deg,
            #FFF7F7,
            #FFF2D9
        );

}

.scratch-result h3{

    font-size:22px;

    color:#777;

    margin-bottom:15px;

}

.scratch-result h1{

    font-size:56px;

    font-family:'Playfair Display';

    color:var(--gold);

    margin-bottom:20px;

}

.scratch-result p{

    color:#555;

    letter-spacing:2px;

}

#scratchCanvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    cursor:pointer;

}
.scratch-result{
    margin:0;
    filter: blur(3px);
    
}
.scratch-result.active{
    
   filter: blur(0px); 
}

/*=====================================================
SCRATCH DECORATIONS
======================================================*/

.scratch-card::before{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:

        radial-gradient(circle,
        rgba(255,215,220,.25),
        transparent);

    top:-80px;

    left:-80px;

}

.scratch-card::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:

        radial-gradient(circle,
        rgba(212,175,55,.15),
        transparent);

    right:-90px;

    bottom:-90px;

}



/*=====================================================
GOLD SHIMMER
======================================================*/

.scratch-result h1{

    background:

        linear-gradient(

            90deg,

            #C79A1D,

            #FFE48C,

            #C79A1D

        );

    background-size:300%;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:goldShine 4s linear infinite;

}

@keyframes goldShine{

    from{

        background-position:0%;

    }

    to{

        background-position:300%;

    }

}



/*=====================================================
FLOATING RINGS
======================================================*/

#scratch .ring{

    position:absolute;

    width:120px;

    opacity:.12;

    animation:ringFloat 8s infinite ease-in-out;

}

@keyframes ringFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-25px);

    }

}

section#gallery  .slick-slide {
      margin: 0 10px;
  }

section#gallery .slick-list {
      margin: 0 -10px;
  }
section#gallery .slick-list{padding:0 12% 0 0 !important;}
section#thankyou video {
    filter: none;
    width: 100%;
    height: 100%;
    display: block;
}

section#thankyou {
    min-height: auto;
    padding: 0;
}
/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

    .countdown-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .countdown-wrapper{

        grid-template-columns:1fr 1fr;

        gap:18px;

    }

    .time-box{

        padding:28px 15px;

    }

    .time-box h3{

        font-size:42px;

    }

    .scratch-card{

        height:270px;

        border-radius:24px;

    }

    .scratch-result h1{

        font-size:34px;

    }

}

@media(max-width:480px){

    .countdown-wrapper{

        grid-template-columns:1fr;

    }

}

/*=====================================================
RSVP SECTION
======================================================*/

#rsvp{

    position:relative;

    background:
        linear-gradient(
            180deg,
            #FFF8FA,
            #FFFFFF
        );

    overflow:hidden;

}

#rsvp::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at left top,
        rgba(255,220,230,.30),
        transparent 35%),

        radial-gradient(circle at right bottom,
        rgba(212,175,55,.15),
        transparent 35%);

    pointer-events:none;

}

#rsvpForm{

    max-width:950px;

    margin:auto;

    background:rgba(255,255,255,.60);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.45);

    border-radius:35px;

    padding:45px;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    font-weight:600;

    margin-bottom:10px;

    color:#555;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;

    padding:16px 18px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.20);

    background:rgba(255,255,255,.85);

    font-size:15px;

    transition:.35s;

    outline:none;

}

.form-group textarea{

    resize:none;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(212,175,55,.12);

}

.submit-btn{

    margin-top:35px;

    width:100%;

    padding:18px;

    border:none;

    border-radius:50px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #FFD86C
        );

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.submit-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(212,175,55,.35);

}



/*=====================================================
VENUE
======================================================*/

#venue{

    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #FFF6F9
        );

}

.venue-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:center;

}

.venue-info{

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(18px);

    border-radius:30px;

    padding:40px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.venue-info h3{

    font-size:34px;

    color:var(--gold);

    margin-bottom:20px;

    font-family:'Playfair Display';

}

.venue-info p{

    line-height:1.8;

    color:#666;

}

.venue-info ul{

    margin:25px 0;

}

.venue-info li{

    margin-bottom:12px;

    color:#555;

}

.direction-btn{

    display:inline-block;

    padding:15px 30px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        #F7D6DD,
        #FFD86C
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.direction-btn:hover{

    transform:translateY(-4px);

}

.venue-map{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 25px 55px rgba(0,0,0,.10);

}

.venue-map iframe{

    width:100%;

    height:450px;

    border:0;

}



/*=====================================================
FAMILY
======================================================*/

#family{

    background:
        linear-gradient(
            180deg,
            #FFF7F9,
            #FFFFFF
        );

}

.family-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.family-card{

    background:rgba(255,255,255,.65);

    border-radius:30px;

    overflow:hidden;

    text-align:center;

    backdrop-filter:blur(18px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

}

.family-card:hover{

    transform:translateY(-10px);

}

.family-card img{

    height:320px;

    object-fit:cover;

}

.family-card h3{

    margin:25px 0 10px;

    font-size:28px;

    color:var(--gold);

    font-family:'Playfair Display';

}

.family-card p{

    padding:0 25px 30px;

    color:#666;

}



/*=====================================================
DRESS CODE
======================================================*/

#dress-code{

    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #FFF9F3
        );

}

.dress-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.dress-card{

    text-align:center;

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(15px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.dress-card:hover{

    transform:translateY(-10px);

}

.dress-icon{

    font-size:65px;

    margin-bottom:20px;

}

.dress-card h3{

    font-size:28px;

    margin-bottom:15px;

    color:var(--gold);

    font-family:'Playfair Display';

}



/*=====================================================
TRAVEL
======================================================*/

#travel{

    background:
        linear-gradient(
            180deg,
            #FFF8FA,
            #FFFFFF
        );

}

.travel-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.travel-card{

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(18px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.travel-card:hover{

    transform:translateY(-10px);

}

.travel-card h3{

    margin-bottom:15px;

    color:var(--gold);

    font-size:26px;

    font-family:'Playfair Display';

}

.travel-card p{

    line-height:1.8;

    color:#666;

}



/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

    .venue-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .form-grid{

        grid-template-columns:1fr;

    }

    #rsvpForm{

        padding:25px;

    }

    .dress-grid{

        grid-template-columns:1fr;

    }

}

/*=====================================================
WEDDING HASHTAG
======================================================*/

#hashtag{

    padding:100px 0;

    background:linear-gradient(
        135deg,
        #FFF7F8,
        #FDF2FF
    );

}

.hashtag-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px 40px;

    border-radius:35px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(18px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.hashtag-card span{

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

}

.hashtag-card h2{

    font-size:35px;

    margin:15px 0;

    font-family:'Great Vibes';

    color:var(--gold);

}

.hashtag-card p{

    max-width:600px;

    margin:auto;

    color:#666;

    line-height:1.8;

}



/*=====================================================
GUESTBOOK
======================================================*/

#guestbook{

    background:#FFFDFB;

}

#guestbookForm{

    max-width:800px;

    margin:0 auto 50px;

    display:flex;

    flex-direction:column;

    gap:20px;

}

#guestbookForm input,
#guestbookForm textarea{

    padding:18px;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.20);

    outline:none;

    font-size:16px;

}

#guestbookForm textarea{

    resize:none;

}

#guestbookForm button{

    padding:18px;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--gold),
        #FFD86C
    );

    color:#fff;

    font-size:17px;

    cursor:pointer;

    transition:.35s;

}

#guestbookForm button:hover{

    transform:translateY(-4px);

}

#guestMessages{

    display:grid;

    gap:25px;

}

.guest-message{

    padding:25px;

    border-radius:24px;

    background:rgba(255,255,255,.75);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}



/*=====================================================
FAQ
======================================================*/

#faq{

    background:linear-gradient(
        180deg,
        #FFF7FA,
        #FFFFFF
    );

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:20px;

    border-radius:22px;

    overflow:hidden;

    background:rgba(255,255,255,.75);

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.faq-question{

    width:100%;

    padding:24px;

    text-align:left;

    font-size:18px;

    background:none;

    border:none;

    cursor:pointer;

    font-weight:600;

    position:relative;

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:25px;

    font-size:28px;

    color:var(--gold);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 24px 24px;

    line-height:1.8;

    color:#666;

}

.faq-item.active .faq-answer{

    max-height:250px;

}

.faq-item.active .faq-question::after{

    content:"−";

}



/*=====================================================
THANK YOU
======================================================*/

#thankyou{

    text-align:center;

    padding:50px 0;

    background:linear-gradient(
        135deg,
        #FFF6F8,
        #FFFDFB
    );

}

.thankyou-content{

    max-width:800px;

    margin:auto;

}

.thankyou-content h2{

    font-size:80px;

    font-family:'Great Vibes';

    color:var(--gold);

    margin-bottom:20px;

}

.thankyou-content p{

    font-size:20px;

    color:#666;

    line-height:1.8;

}

.thankyou-content h3{

    margin-top:35px;

    font-family:'Playfair Display';

    color:#444;

}



/*=====================================================
FOOTER
======================================================*/

footer{

    background:#2E2529;

    color:white;

    text-align:center;

    padding:70px 0;

}

.footer-content h2{

    font-family:'Great Vibes';

    font-size:60px;

    margin-bottom:10px;

    color:var(--gold-light);

}

.footer-content p{

    color:#ddd;

}

.footer-icons{

    margin:30px 0;

    display:flex;

    justify-content:center;

    gap:20px;

    font-size:28px;

}

footer small{

    color:#aaa;

}



/*=====================================================
BACK TO TOP
======================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        #FFD86C
    );

    color:white;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:999;

    box-shadow:0 15px 35px rgba(212,175,55,.35);

    transition:.35s;

}

#backToTop:hover{

    transform:translateY(-5px) rotate(360deg);

}



/*=====================================================
REVEAL ANIMATION
======================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.reveal.show{

    opacity:1;

    transform:translateY(0);

}



/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

    .timeline::before{

        left:25px;

    }

    .timeline-item{

        width:100%;

        margin-left:0;

        padding-left:80px;

        padding-right:0;

    }

    .timeline-item.left,
    .timeline-item.right{

        margin-left:0;

        padding-left:80px;

        padding-right:0;

    }

    .timeline-item::before{

        left:0;

    }

}

@media(max-width:768px){

    .hero-wrapper{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-text h1{

        font-size:72px;

    }

    .hero-image{

        margin-top:50px;

    }

    nav{

        display:none;

    }

    .section-title h2{
letter-spacing: -2px;
        font-size:37px;

    }
 

    .thankyou-content h2{

        font-size:60px;

    }

}

@media(max-width:480px){

    section{

        padding:40px 0;

    }

    .hero-text h1{

        font-size:58px;

    }

    .btn{

        width:100%;

    }

    .hero-buttons{

        flex-direction:column;

    }

}


/*====================================
Lightbox Animation
====================================*/

#lightbox img{

    transition:
        opacity .3s ease,
        transform .3s ease;

}

#lightbox.active{

    animation:
        fadeLightbox .35s ease;

}

@keyframes fadeLightbox{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}


/*=============================
SCRATCH CARD EFFECTS
=============================*/

#scratchCanvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    border-radius:22px;

    cursor:pointer;

}

.confetti{

    position:fixed;

    top:-20px;

    width:10px;

    height:18px;

    z-index:99999;

    animation:confettiFall linear forwards;

}

@keyframes confettiFall{

    from{

        transform:translateY(0) rotate(0);

        opacity:1;

    }

    to{

        transform:translateY(110vh) rotate(720deg);

        opacity:0;

    }

}

.scratch-card{
    position: relative;
    overflow: hidden;
}

.scratch-result{
    position: relative;
    z-index: 1;
}

#scratchCanvas{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}


/* ===================================================
   PREMIUM SCRATCH CARD
=================================================== */

.scratch-section{
    padding:120px 20px;
    position:relative;
    overflow:hidden;
    text-align:center;
}

.scratch-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at top,#fff8e7 0%,transparent 45%),
        radial-gradient(circle at bottom,#ffe7c4 0%,transparent 40%);
    opacity:.25;
    pointer-events:none;
}

.scratch-header{
    max-width:700px;
    margin:0 auto 60px;
}

.scratch-mini{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.7);
    color:#9a6b00;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:18px;
    backdrop-filter:blur(8px);
}

.scratch-header h2{
    font-size:48px;
    margin:0 0 15px;
    color:#222;
}

.scratch-header p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

/* ============================= */

.scratch-wrapper{
    max-width:520px;
    margin:auto;
}

/* ============================= */

.scratch-card{

    position:relative;

    width:100%;

    height:340px;

    border-radius:28px;

    overflow:hidden;

    background:linear-gradient(
    145deg,
    #fffefb,
    #f7f2eb);

    box-shadow:
    0 40px 80px rgba(0,0,0,.15),
    inset 0 1px rgba(255,255,255,.8);

}

/* ============================= */

.scratch-border{

    position:absolute;

    inset:0;

    border-radius:28px;

    padding:2px;

    background:
    linear-gradient(
    135deg,
    #d6a300,
    #fff3b0,
    #b8860b,
    #fff7d0);

    -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

    z-index:20;

}

/* ============================= */

.shine{

    position:absolute;

    top:-150%;

    left:-40%;

    width:50%;

    height:400%;

    transform:rotate(25deg);

    background:
    linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.55),
    transparent);

    animation:shineMove 4s linear infinite;

    z-index:15;

    pointer-events:none;

}

@keyframes shineMove{

    0%{

        left:-60%;

    }

    100%{

        left:130%;

    }

}

/* ============================= */

#scratchCanvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:10;

    cursor:crosshair;

}

/* ============================= */

.scratch-result{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:1;

    background:
    radial-gradient(circle,#fffdf9,#f6efe2);

}

/* ============================= */

.save-date{

    display:inline-block;

    padding:10px 24px;

    border-radius:30px;

    background:linear-gradient(
    90deg,
    #d4af37,
    #fff2a8);

    color:#5a3b00;

    font-weight:bold;

    letter-spacing:2px;

    margin-bottom:18px;

    box-shadow:0 8px 20px rgba(212,175,55,.35);

}

/* ============================= */

.scratch-result h1{

    font-size:86px;

    margin:0;

    color:#d6a300;

    line-height:1;

}

.scratch-result h3{

    margin:12px 0;

    font-size:30px;

    letter-spacing:2px;

    color:#333;

}

.scratch-result p{

    font-size:22px;

    color:#555;

}

/* ============================= */

.scratch-progress{

    margin-top:40px;

    display:flex;

    justify-content:center;

}

.progress-ring{

    position:relative;

    width:90px;

    height:90px;

}

.progress-ring svg{

    transform:rotate(-90deg);

}

.ring-bg{

    fill:none;

    stroke:#ececec;

    stroke-width:8;

}

.ring-fill{

    fill:none;

    stroke:#d4af37;

    stroke-width:8;

    stroke-linecap:round;

    stroke-dasharray:239;

    stroke-dashoffset:239;

    transition:.3s;

}

#scratchPercent{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    color:#444;

    font-size:18px;

}

/* ============================= */

#scratchMessage{

    margin-top:25px;

    font-size:20px;

    color:#777;

    transition:.4s;

}

/* ============================= */

.scratch-reset{

    margin-top:30px;

    border:none;

    outline:none;

    padding:14px 34px;

    border-radius:40px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    color:white;

    background:linear-gradient(
    90deg,
    #d4af37,
    #b8860b);

    transition:.35s;

    box-shadow:0 12px 30px rgba(212,175,55,.35);

}

.scratch-reset:hover{

    transform:translateY(-3px) scale(1.05);

    box-shadow:0 20px 40px rgba(212,175,55,.45);

}

/* ============================= */

.revealed .scratch-card{

    animation:popReveal .8s ease;

}

@keyframes popReveal{

    0%{

        transform:scale(.95);

    }

    40%{

        transform:scale(1.04);

    }

    100%{

        transform:scale(1);

    }

}

/* ============================= */

@media(max-width:768px){

    .scratch-header h2{

        font-size:34px;

    }

    .scratch-card{

        height:280px;

    }

    .scratch-result h1{

        font-size:64px;

    }

    .scratch-result h3{

        font-size:22px;

    }

    .scratch-result p{

        font-size:18px;

    }

}


/*==========================================
SCRATCH SIDE PANEL
==========================================*/

.scratch-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.scratch-info{
    display:flex;
    align-items:center;
    gap:22px;
}

.scratch-progress{
    position:relative;
    width:78px;
    height:78px;
}

.progress-ring{
    width:78px;
    height:78px;
    transform:rotate(-90deg);
}

.ring-bg{
    fill:none;
    stroke:#ececec;
    stroke-width:8;
}

.ring-fill{
    fill:none;
    stroke:#d4af37;
    stroke-width:8;
    stroke-linecap:round;
    stroke-dasharray:239;
    stroke-dashoffset:239;
    transition:.35s;
}

#scratchPercent{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:700;
    font-size:20px;
    color:#444;
}

.scratch-text{
    display:flex;
    flex-direction:column;
    gap:8px;
}

#scratchMessage{
    font-size:30px;
    color:#666;
    line-height:1.4;
    font-weight:500;
}

.scratch-reset{
    border:none;
    outline:none;
    padding:18px 34px;
    border-radius:999px;
    background:#c99a13;
    color:#fff;
    font-weight:700;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 10px 25px rgba(201,154,19,.25);
}

.scratch-reset:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(201,154,19,.35);
}

#story, section#gallery,section#events,section#events,section.section-divider,section.section-divider,#family,#hashtag,#thankyou,footer,#countdown,#venue {
    display:none;
}
.float_date{
   color: #ff5c9a;
    animation: bounce 2s infinite;
    position: absolute;
    left: 100px;
    top: 13px; 
}