/*==================================================
  SECTION HEADER
==================================================*/

.section-header {
    margin-bottom: 70px;
}

.section-overline {
    display: inline-block;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: var(--primary);

    margin-bottom: 15px;
}

.section-script {
    font-family: var(--font-script);

    font-size: 42px;

    color: var(--primary);

    line-height: 1;

    margin-bottom: 15px;
}

.section-title {
    font-size: 58px;

    font-weight: 700;

    margin-bottom: 20px;
}

.section-description {
    max-width: 720px;

    margin: auto;

    color: #777;
}

/*==================================================
  PREMIUM BUTTON
==================================================*/

.btn-premium {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 16px 42px;

    border-radius: 999px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    border: none;

    overflow: hidden;

    transition: var(--transition);
}

.btn-premium::before {
    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, 0.25);

    transform: skewX(-30deg);

    transition: 0.8s;
}

.btn-premium:hover::before {
    left: 130%;
}

.btn-premium:hover {
    color: #fff;

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);
}

.btn-outline-premium {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 42px;

    border-radius: 999px;

    border: 1px solid var(--primary);

    color: var(--primary);

    background: white;

    transition: var(--transition);
}

.btn-outline-premium:hover {
    background: var(--primary);

    color: white;
}

/*==================================================
  CARD
==================================================*/

.card-premium {
    background: #fff;

    border-radius: var(--radius-lg);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);

    padding: 40px;

    transition: var(--transition);
}

.card-premium:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}
/*==================================================
  GLASS CARD
==================================================*/

.glass {
    background: rgba(255, 255, 255, 0.65);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: var(--radius-lg);
}
/*==================================================
  IMAGE
==================================================*/

.img-rounded {
    border-radius: var(--radius-lg);

    overflow: hidden;
}

.img-rounded img {
    width: 100%;

    transition: 0.6s;
}

.img-rounded:hover img {
    transform: scale(1.08);
}
/*==================================================
  ORNAMENT
==================================================*/

.ornament-top {
    position: absolute;

    top: 0;

    left: 0;

    width: 220px;

    opacity: 0.15;

    pointer-events: none;
}

.ornament-bottom {
    position: absolute;

    right: 0;

    bottom: 0;

    width: 220px;

    opacity: 0.15;

    pointer-events: none;
}
/*==================================================
  SOCIAL ICON
==================================================*/

.social {
    display: flex;

    gap: 12px;
}

.social a {
    width: 46px;

    height: 46px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid var(--border);

    color: var(--primary);

    transition: var(--transition);
}

.social a:hover {
    background: var(--primary);

    color: white;
}
/*==================================================
  MUSIC PLAYER
==================================================*/

.music-player {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 65px;

    height: 65px;

    border-radius: 50%;

    background: white;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: var(--shadow-lg);

    z-index: 999;

    cursor: pointer;
}

.music-player i {
    color: var(--primary);

    font-size: 24px;
}
/*==================================================
  FLOATING NAVBAR
==================================================*/

.navbar-premium {
    position: fixed;

    top: 25px;

    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 60px);

    max-width: 1280px;

    z-index: 999;

    padding: 16px 28px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(18px);

    box-shadow: var(--shadow);

    transition: 0.4s;
}

.navbar-premium.scrolled {
    top: 15px;

    background: rgba(255, 255, 255, 0.92);
}

.navbar-brand {
    font-family: var(--font-heading);

    font-size: 32px;

    color: var(--secondary);

    font-weight: 700;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: var(--secondary);

    font-weight: 500;

    position: relative;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: 0.35s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/*==================================================
  COUNTDOWN BOX
==================================================*/

.count-box {
    background: white;

    border-radius: 24px;

    padding: 35px;

    box-shadow: var(--shadow);

    text-align: center;
}

.count-box h2 {
    font-size: 54px;

    color: var(--primary);

    margin-bottom: 5px;
}

.count-box span {
    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 13px;
}

/*==================================================
  FORM
==================================================*/

.form-control,
.form-select {
    border-radius: 18px;

    border: 1px solid var(--border);

    min-height: 56px;

    padding: 14px 20px;

    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);

    box-shadow: none;
}

textarea.form-control {
    min-height: 160px;
}

/*==================================================
  GALLERY
==================================================*/

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 24px;
}

.gallery-item img {
    width: 100%;

    transition: 0.7s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.15)
    );

    opacity: 0;

    transition: 0.35s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/*==================================================
LOADER
==================================================*/

#loader {
    position: fixed;

    inset: 0;

    background: var(--light);

    z-index: 99999;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: 1s;
}

#loader.hide {
    opacity: 0;

    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: var(--primary);

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 34px;

    margin-bottom: 25px;

    animation: pulse 2s infinite;
}

.loader-content h2 {
    font-size: 46px;

    margin-bottom: 8px;
}

.loader-content h2 span {
    color: var(--primary);

    margin: 0 10px;
}

.loader-content p {
    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 13px;

    margin-bottom: 30px;
}

.loader-line {
    width: 240px;

    height: 3px;

    background: #e7e7e7;

    border-radius: 999px;

    overflow: hidden;

    margin: auto;
}

.loader-line span {
    display: block;

    width: 0;

    height: 100%;

    background: var(--primary);

    animation: loading 2s linear forwards;
}

/*==================================================
COVER
==================================================*/

.cover-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);
}

.cover-content {
    position: relative;

    z-index: 2;

    color: white;
}

.cover-overline {
    display: inline-block;

    letter-spacing: 5px;

    font-size: 13px;

    margin-bottom: 20px;
}

.cover-title {
    font-family: "Great Vibes", cursive;
    font-size: 92px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.cover-heart {
    width: 70px;

    height: 70px;

    margin: 20px auto;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(12px);
}

.cover-heart i {
    color: var(--primary);

    font-size: 24px;
}

.cover-date {
    letter-spacing: 3px;

    text-transform: uppercase;

    margin-top: 25px;
}

.cover-invitation {
    margin-top: 60px;

    margin-bottom: 40px;
}

.cover-invitation small {
    display: block;

    color: #ddd;

    margin-bottom: 10px;
}

.cover-invitation h4 {
    color: white;

    font-size: 34px;
}
/*==================================================
HERO
==================================================*/

#hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;

    inset: 0;
}

.hero-background img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
}

.hero-content {
    position: relative;

    z-index: 3;

    color: white;
}

.hero-subtitle {
    display: inline-block;

    letter-spacing: 5px;

    text-transform: uppercase;

    margin-bottom: 25px;

    font-size: 14px;
}

.hero-title {
    color: white;

    font-size: 80px;

    line-height: 1.2;

    margin-bottom: 25px;
}

.hero-title span {
    color: var(--primary);
}

.hero-date {
    color: white;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 45px;
}

.scroll-down {
    position: absolute;

    left: 50%;

    bottom: 40px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;

    z-index: 5;
}

.scroll-down span {
    font-size: 13px;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.scroll-down i {
    font-size: 24px;

    animation: bounce 2s infinite;
}

/*==================================================
COUPLE
==================================================*/

.couple-card {
    background: #fff;

    border-radius: 32px;

    padding: 45px;

    box-shadow: var(--shadow);

    transition: 0.4s;
}

.couple-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.couple-photo {
    width: 260px;

    height: 260px;

    margin: auto auto 30px;

    border-radius: 50%;

    overflow: hidden;

    border: 8px solid #fff;

    box-shadow: var(--shadow);
}

.couple-photo img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.couple-card h3 {
    font-size: 42px;

    margin-bottom: 20px;
}

.couple-card p {
    line-height: 2;
}

.love-icon {
    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    box-shadow: var(--shadow-lg);
}

/*==================================================
QUOTE
==================================================*/

#quote {
    position: relative;

    overflow: hidden;

    padding: 120px 0;
}

.quote-background {
    position: absolute;

    inset: 0;
}

.quote-background img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    animation: kenburns 20s ease-in-out infinite alternate;
}

.quote-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);
}

.quote-box {
    position: relative;

    z-index: 2;

    padding: 70px;

    border-radius: 35px;

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.18);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.quote-box * {
    color: #fff !important;
}

.quote-text,
.quote-text *{

    color:#fff !important;

}

.quote-text {
    font-size: 22px;

    line-height: 2;

    text-align: center;
}

.quote-text p {
    margin-bottom: 20px;
}

.quote-text strong {
    font-weight: 700;
}

.quote-box .divider {
    width: 80px;

    height: 3px;

    background: #d4af37;

    margin: 35px auto;
}

/* Quote COuntdown */
.count-box{

    background:#fff;

    border-radius:24px;

    padding:35px 20px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.3s;

}

.count-box:hover{

    transform:translateY(-8px);

}

.count-box h2{

    color:#c9a14a !important;

    font-size:52px;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

    margin-bottom:10px;

}

.count-box span{

    color:#666 !important;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

}
/* End Countdown */

/*==================================================
EVENT
==================================================*/

.event-card {
    background: #fff;

    padding: 50px;

    border-radius: 32px;

    text-align: center;

    box-shadow: var(--shadow);

    border: 1px solid var(--border);

    transition: 0.4s;
}

.event-card:hover {
    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);
}

.event-icon {
    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--primary), #e4c88f);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    margin-bottom: 25px;
}

.event-card h3 {
    font-size: 42px;

    margin-bottom: 20px;
}

.event-divider {
    width: 70px;

    height: 3px;

    background: var(--primary);

    margin: 25px auto;
}

.event-list {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.event-list li {
    display: flex;

    gap: 15px;

    align-items: center;
}

.event-list i {
    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #f8f8f8;

    color: var(--primary);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 18px;

    flex-shrink: 0;
}

.event-list span {
    text-align: left;

    line-height: 1.8;
}

/*==================================================
MAPS
==================================================*/

/* #maps {
    background: var(--light);
}

.map-card {
    background: white;

    border-radius: 32px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.map-header {
    padding: 35px;

    display: flex;

    align-items: flex-start;

    gap: 20px;
}

.map-header i {
    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    flex-shrink: 0;
}

.map-header h4 {
    margin-bottom: 10px;

    font-size: 30px;
}

.map-header p {
    margin: 0;

    color: #777;

    line-height: 1.8;
}

.map-frame {
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;

    height: 520px;

    border: 0;
} */

/*==================================================
PREMIUM MAPS SECTION
==================================================*/

.premium-maps{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,#fff9f0 0%,transparent 38%),
    radial-gradient(circle at bottom right,#f6ead5 0%,transparent 42%),
    linear-gradient(180deg,#ffffff 0%,#fcfaf7 45%,#f7f2ea 100%);

}

.premium-maps::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-320px;

    left:-250px;

    border-radius:50%;

    background:linear-gradient(135deg,#f9e3a3,#d4af37);

    opacity:.12;

    filter:blur(120px);

}

.premium-maps::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    right:-220px;

    bottom:-180px;

    border-radius:50%;

    background:#d4af37;

    opacity:.08;

    filter:blur(110px);

}



/*==================================================
CARD
==================================================*/

.premium-map-card{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    background:

    rgba(255,255,255,.72);

    backdrop-filter:blur(25px);

    border:1px solid rgba(212,175,55,.18);

    box-shadow:

    0 40px 90px rgba(0,0,0,.08),

    0 15px 35px rgba(212,175,55,.10);

}

.premium-map-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:

    linear-gradient(90deg,

    #a97721,

    #f8e8ae,

    #d4af37,

    #fff3cb,

    #a97721);

}



/*==================================================
LEFT
==================================================*/

.map-info{

    position:relative;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:70px 55px;

    background:

    linear-gradient(180deg,#fffdfb,#fcf8f2,#f9f5ed);

}

.map-info::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    right:-120px;

    top:-120px;

    border-radius:50%;

    background:#d4af37;

    opacity:.05;

}

.venue-badge{

    margin:auto;

    margin-bottom:30px;

    display:inline-block;

    padding:11px 28px;

    border-radius:60px;

    background:

    linear-gradient(135deg,#fff9ef,#f3e2bb);

    border:1px solid rgba(212,175,55,.20);

    color:#bb8b35;

    letter-spacing:3px;

    font-weight:700;

    font-size:12px;

    text-transform:uppercase;

}

.map-icon{

    width:100px;

    height:100px;

    margin:auto auto 30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    linear-gradient(135deg,

    #f8e7b4,

    #d4af37,

    #b88630);

    color:white;

    font-size:42px;

    box-shadow:

    0 25px 50px rgba(212,175,55,.35);

}

.map-info h3{

    text-align:center;

    font-size:42px;

    font-family:'Cormorant Garamond',serif;

    color:#1f1f1f;

    margin-bottom:18px;

}

.address{

    text-align:center;

    font-size:17px;

    color:#777;

    line-height:2;

    margin-bottom:35px;

}



/*==================================================
INFO
==================================================*/

.event-meta{

    width:100%;

    margin-bottom:40px;

}

.meta-item{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:15px;

    margin-bottom:15px;

    border-radius:15px;

    background:white;

    border:1px solid rgba(212,175,55,.12);

    box-shadow:0 8px 20px rgba(0,0,0,.04);

}

.meta-item i{

    color:#c99d43;

    font-size:18px;

}

.meta-item span{

    font-weight:600;

    color:#555;

}



/*==================================================
BUTTON
==================================================*/

.btn-map{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:18px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    color:white;

    background:

    linear-gradient(135deg,

    #aa7723,

    #d4af37,

    #f6dda0);

    transition:.45s;

}

.btn-map:hover{

    color:white;

    transform:translateY(-6px);

    box-shadow:

    0 20px 40px rgba(212,175,55,.40);

}



/*==================================================
MAP
==================================================*/

.map-wrapper{

    position:relative;

    height:100%;

    min-height:720px;

    overflow:hidden;

}

.map-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(to bottom,

    rgba(255,255,255,.02),

    rgba(0,0,0,.04));

    z-index:2;

    pointer-events:none;

}

.map-wrapper iframe{

    width:100%;

    height:100%;

    border:none;

    display:block;

    filter:

    saturate(1.05)

    contrast(1.02)

    brightness(1.02);

}



/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

    .premium-maps{

        padding:90px 0;

    }

    .premium-map-card{

        border-radius:28px;

    }

    .map-info{

        padding:45px 30px;

    }

    .map-info h3{

        font-size:34px;

    }

    .address{

        font-size:15px;

    }

    .map-wrapper{

        min-height:420px;

    }

    .btn-map{

        margin-bottom:30px;

    }

}
/*==================================================
COUNTDOWN
==================================================*/

#countdown {
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);

    color: #fff;
}

#countdown .section-title {
    color: #fff;
}

#countdown .section-description {
    color: #ddd;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 30px;

    padding: 50px;
}

.count-item {
    padding: 20px;
}

.count-item h2 {
    font-size: 72px;

    color: var(--primary);

    margin-bottom: 10px;
}

.count-item span {
    letter-spacing: 3px;

    text-transform: uppercase;

    color: #ddd;
}

/* ===========================
   COUNTDOWN
=========================== */

.countdown-card h3{

    color:#d4af37 !important;

    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    font-weight:700;

    margin-bottom:20px;

}

.countdown-card h3 i{

    color:#d4af37;

    margin-right:8px;

}

.countdown-card p{

    color:#ffffff;

    font-size:17px;

    line-height:1.8;

}

.count-item h2{

    color:#d4af37;

    font-family:'Cormorant Garamond', serif;

    font-size:58px;

    font-weight:700;

    margin-bottom:10px;

}

.count-item span{

    color:rgba(255,255,255,.8);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

    font-weight:600;

}

/*==================================================
LOVE STORY
==================================================*/

#love-story {
    background: #faf7f2;
}

.timeline {
    position: relative;

    max-width: 1100px;

    margin: auto;
}

.timeline::before {
    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 50%;

    width: 3px;

    background: var(--primary);

    transform: translateX(-50%);
}

.timeline-item {
    position: relative;

    width: 50%;

    padding: 25px 50px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-card {
    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: 0.4s;
}

.timeline-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);
}

.timeline-image img {
    width: 100%;

    height: 260px;

    object-fit: cover;
}

.timeline-content {
    padding: 30px;
}

.timeline-date {
    display: inline-block;

    background: var(--primary);

    color: #fff;

    padding: 8px 20px;

    border-radius: 999px;

    font-size: 13px;

    margin-bottom: 18px;
}

.timeline-content h3 {
    margin-bottom: 18px;

    font-size: 32px;
}

.timeline-content p {
    line-height: 1.9;
}

.timeline-item::before {
    content: "";

    position: absolute;

    top: 60px;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background: var(--primary);

    border: 5px solid #fff;

    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-item.left::before {
    right: -11px;
}

.timeline-item.right::before {
    left: -11px;
}

/*==================================================
GALLERY
==================================================*/

#gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.gallery-item {
    overflow: hidden;

    border-radius: 24px;

    position: relative;

    cursor: pointer;

    box-shadow: var(--shadow);
}

.gallery-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;

    height: 340px;

    object-fit: cover;

    transition: 0.6s;
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    transition: 0.4s;
}

.gallery-overlay i {
    color: #fff;

    font-size: 38px;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/*=============================
MODAL
=============================*/

#galleryModal {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.92);

    display: none;

    justify-content: center;

    align-items: center;

    z-index: 99999;
}

#galleryModal.active {
    display: flex;
}

#galleryImage {
    max-width: 92%;

    max-height: 92vh;

    border-radius: 18px;
}

#galleryClose {
    position: absolute;

    top: 35px;

    right: 45px;

    color: #fff;

    font-size: 34px;

    cursor: pointer;
}

/*==================================================
GIFT
==================================================*/

#gift {
    background: #fffaf6;
}

.gift-card {
    background: #fff;

    border-radius: 30px;

    padding: 45px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: 0.4s;

    height: 100%;
}

.gift-card:hover {
    transform: translateY(-8px);
}

.gift-logo {
    width: 90px;

    margin-bottom: 25px;
}

.gift-card h4 {
    font-size: 28px;

    color: var(--primary);

    margin-bottom: 20px;
}

.gift-owner {
    font-size: 20px;

    font-weight: 600;
}

.gift-number {
    margin-top: 18px;

    font-size: 22px;

    letter-spacing: 2px;

    font-weight: 700;

    color: var(--secondary);
}

/*==================================================
RSVP
==================================================*/

#rsvp {
    background: #ffffff;
}

.rsvp-card {
    background: #fff;

    padding: 60px;

    border-radius: 30px;

    box-shadow: var(--shadow);
}

.rsvp-card label {
    margin-bottom: 8px;

    font-weight: 600;
}

.rsvp-card .form-control,
.rsvp-card .form-select {
    height: 58px;

    border-radius: 15px;
}

.rsvp-card textarea {
    min-height: 160px;

    border-radius: 15px !important;
}

/* Wishes */
/* =====================
   PREMIUM WISHES
===================== */

.wishes-section {
    background: linear-gradient(
        rgba(250, 247, 242, 0.95),
        rgba(250, 247, 242, 0.95)
    );

    padding: 90px 0;
}

.section-header .subtitle {
    font-family: "Great Vibes", cursive;
    font-size: 38px;
    color: #b08d57;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-top: 5px;
    color: #333;
}

.section-header p {
    color: #777;
    max-width: 500px;
    margin: auto;
}

.wishes-wrapper {
    margin-top: 40px;
}

.wish-card {
    background: white;

    border-radius: 25px;

    padding:25px 30px;

    margin-bottom: 20px;

    position: relative;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
}

.wish-card:hover {
    
    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.wish-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 25px;

    width: 4px;
    height: 50px;

    background: #c9a45c;

    border-radius: 10px;
}

.wish-top {
    display: flex;

    align-items: center;
}

.wish-avatar {
    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: linear-gradient(135deg, #c9a45c, #e7c98a);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: bold;
}

.wish-top h5 {
    margin: 0;

    font-size: 18px;

    font-family: "Playfair Display", serif;
}

.wish-top span {
    font-size: 13px;

    color: #a17c3a;
}

.wish-message {
    margin-top: 20px;

    color: #555;

    line-height: 1.8;

    font-style: italic;

    font-size: 15px;
}

.wish-date {
    margin-top: 15px;

    text-align: right;

    color: #aaa;

    font-size: 12px;

     opacity:.6;
}

.empty-wish {
    text-align: center;

    padding: 40px;

    background: white;

    border-radius: 20px;

    color: #888;
}
/* End Wishes */

/* Musik */
/*==================================================
 MUSIC PLAYER
==================================================*/

#music-player {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 9999;
}

.music-btn {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(135deg, #c6a15b, #e9c46a);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.music-btn:hover {
    transform: scale(1.08);
}

.music-btn:focus {
    outline: none;
}

.music-btn.playing {
    animation: musicRotate 5s linear infinite;
}

.music-btn i {
    pointer-events: none;
}

@keyframes musicRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    #music-player {
        right: 20px;
        bottom: 85px;
    }

    .music-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* End Music */
/* Footer */
/*=========================================
FOOTER
=========================================*/

.footer-section {
    background: #111;
    color: #fff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85));
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-title span {
    color: #fff;
    margin: 0 12px;
}

.footer-thanks {
    max-width: 650px;
    margin: auto;
    line-height: 1.9;
    color: #ddd;
    font-size: 16px;
}

.footer-prayer {
    margin: 40px auto;
    max-width: 700px;
}

.footer-prayer p {
    font-style: italic;
    line-height: 1.9;
    color: #f5f5f5;
}

.footer-prayer span {
    display: block;
    margin-top: 15px;
    color: #d4af37;
    font-weight: 600;
}

.footer-love {
    width: 70px;
    height: 70px;
    margin: 35px auto;
    border-radius: 50%;
    background: #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    animation: pulseFooter 2s infinite;
}

.footer-closing {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-divider {
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 30px auto;
}

.footer-copyright {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
}

@keyframes pulseFooter {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 70px 0 40px;
    }

    .footer-title {
        font-size: 34px;
    }

    .footer-thanks,
    .footer-prayer p {
        font-size: 15px;
    }

    .footer-love {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
/* End Footer */

/* Mempelai */
/*=====================================================
        PREMIUM COUPLE SECTION
=====================================================*/

.couple-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(180deg, #fcfaf6, #f8f3eb, #fcfaf6);
    overflow: hidden;
}

.couple-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    top: -220px;
    left: -220px;
    filter: blur(20px);
}

.couple-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    bottom: -220px;
    right: -220px;
    filter: blur(20px);
}

.couple-subtitle {
    display: block;

    font-family: "Great Vibes", cursive;

    font-size: 58px;

    color: #c7a14b;

    margin-bottom: 10px;
}

.couple-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 56px;

    font-weight: 700;

    color: #222;
}

.couple-title span {
    color: #c7a14b;

    margin: 0 15px;
}

.divider-flower {
    width: 130px;

    margin: 20px auto;

    display: block;
}

.couple-text {
    max-width: 650px;

    margin: auto;

    line-height: 2;

    color: #777;

    font-size: 17px;
}

/*================ CARD =================*/

.premium-card {
    position: relative;

    background: rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 35px;

    padding: 50px 35px;

    text-align: center;

    overflow: hidden;

    transition: 0.45s;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.premium-card:hover {
    transform: translateY(-15px);

    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.card-ornament {
    position: absolute;

    width: 70px;

    height: 70px;

    border: 2px solid #d4af37;

    opacity: 0.15;
}

.ornament-left {
    top: 20px;

    left: 20px;

    border-right: none;

    border-bottom: none;
}

.ornament-right {
    bottom: 20px;

    right: 20px;

    border-left: none;

    border-top: none;
}

/*================ FOTO =================*/

.premium-photo {
    margin-bottom: 35px;
}

.photo-ring {
    width: 270px;

    height: 270px;

    margin: auto;

    border-radius: 50%;

    padding: 10px;

    background: linear-gradient(135deg, #b88a2c, #e8d089, #b88a2c);

    position: relative;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.photo-ring::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 2px dashed rgba(255, 255, 255, 0.8);

    border-radius: 50%;
}

.photo-ring img {
    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    border: 8px solid #fff;

    transition: 0.5s;
}

.premium-card:hover img {
    transform: scale(1.08);
}

/*================ TEXT =================*/

.premium-label {
    display: inline-block;

    padding: 7px 22px;

    background: #f5efe4;

    color: #b98a2e;

    border-radius: 50px;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 13px;

    font-weight: 600;
}

.premium-name {
    margin-top: 20px;

    font-family: "Great Vibes", cursive;

    font-size: 62px;

    color: #2b2b2b;

    line-height: 1.1;
}

.premium-description {
    margin: 20px 0 30px;

    color: #777;

    line-height: 2;
}

/*================ FAMILY =================*/

.family-box {
    background: #fcfaf6;

    border-radius: 20px;

    padding: 28px;

    border: 1px solid rgba(212, 175, 55, 0.15);
}

.family-box small {
    display: block;

    color: #999;

    margin-bottom: 12px;
}

.family-box h5 {
    font-family: "Cormorant Garamond", serif;

    font-size: 29px;

    font-weight: 700;

    color: #333;

    margin: 8px 0;
}

.family-box span {
    display: block;

    color: #d4af37;

    font-size: 24px;
}

/*================ SOCIAL =================*/

.premium-social {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}

.premium-social a {
    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: linear-gradient(135deg, #c39a41, #e4cb84);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 20px;

    transition: 0.35s;
}

.premium-social a:hover {
    transform: translateY(-8px) rotate(360deg);

    background: #222;
}

/*================ LOVE =================*/

.love-wrapper {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    height: 100%;
}

.love-line {
    width: 2px;

    height: 80px;

    background: #d4af37;

    opacity: 0.4;
}

.love-circle {
    width: 110px;

    height: 110px;

    border-radius: 50%;

    background: linear-gradient(135deg, #be9338, #e9d08a);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 42px;

    margin: 20px 0;

    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.35);

    animation: heartPremium 2s infinite;
}

@keyframes heartPremium {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/*================ MOBILE =================*/

@media (max-width: 991px) {
    .love-wrapper {
        flex-direction: row;

        gap: 20px;

        margin: 25px 0;
    }

    .love-line {
        width: 80px;

        height: 2px;
    }
}

@media (max-width: 768px) {
    .couple-section {
        padding: 90px 0;
    }

    .couple-subtitle {
        font-size: 42px;
    }

    .couple-title {
        font-size: 38px;
    }

    .photo-ring {
        width: 210px;

        height: 210px;
    }

    .premium-name {
        font-size: 46px;
    }

    .family-box h5 {
        font-size: 22px;
    }

    .love-circle {
        width: 80px;

        height: 80px;

        font-size: 28px;
    }
}
/* End Mempelai */
