/* FONTS */
@font-face {
    font-family: 'Griffo Classico';
    src: url('assets/font/Griffo Classico.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Accountant Signature';
    src: url('assets/font/aAccountantSignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Upright';
    src: url('assets/font/CormorantUpright-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pinyon Script';
    src: url('assets/font/PinyonScript-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Louis George Cafe';
    src: url('assets/font/Louis George Cafe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pinky Vanilla';
    src: url('assets/font/Pinky Vanilla.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-serif: 'Griffo Classico', serif;
    --font-sans: 'Griffo Classico', serif;
    --color-text: #F5F5F5;
    --color-bg: #111111;
    --color-overlay: rgba(0, 0, 0, 0.5);
    --color-overlay-dark: rgba(0, 0, 0, 0.7);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow: hidden;
    /* Prevent scroll until opened */
}

html,
body {
    scroll-behavior: smooth;
}

/* Biar serasa di HP walau dibuka di laptop - center di tengah layar */
body {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    background-color: #000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Responsive untuk tablet dan desktop */
@media (min-width: 481px) and (max-width: 1024px) {
    body {
        max-width: 100%;
        box-shadow: none;
    }
}

@media (min-width: 1025px) {
    body {
        max-width: 480px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
}

/* TYPOGRAPHY UTILITIES */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-italic {
    font-style: italic;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.w-100 {
    width: 100%;
}

.title-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    /* space for monogram */
    width: 100%;
}

.subtitle {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-top: 10px;
    text-transform: uppercase;
}

.title {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 5.5rem;
    letter-spacing: 1px;
    margin: 5px 0 10px 0;
    line-height: 1.05;
    font-weight: normal;
}

.ampersand {
    font-family: 'Cormorant', serif;
    font-size: 0.95em;
    display: inline-block;
    transform: translateY(-2px);
    font-style: italic;
}

.date {
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

.title-medium {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 5px 0;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: normal;
}

.monogram {
    font-family: var(--font-serif);
    font-size: 3.7rem;
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.letter-j {
    transform: translateY(-10px);
}

.monogram-small {
    font-family: var(--font-serif);
    font-size: 2.5rem;
}

/* BUTTONS */
.btn-primary {
    background: rgba(255, 255, 255, 0.6);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-save-date {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-save-date:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.link-underline {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding-bottom: 2px;
}

/* FLOATING ACTION BUTTONS */
.fab-container,
.fab-bottom-right {
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Show FABs after cover is opened */
body.cover-opened .fab-container,
body.cover-opened .fab-bottom-right {
    opacity: 1;
    visibility: visible;
}

.fab-container {
    top: 20px;
    right: 20px;
}

.fab-bottom-right {
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fab {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MENU OVERLAY */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 9998;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Background blur ketika klik di luar */
.menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active::before {
    opacity: 1;
}

.menu-content {
    position: relative;
    width: 100%;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 70px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -3px 0 20px rgba(0, 0, 0, 0.3);
}

.menu-overlay.active .menu-content {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 18px;
    border-radius: 15px;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    transition: 0.2s;
    opacity: 0;
    transform: translateX(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-link:last-child {
    border-bottom: none;
}

.menu-overlay.active .menu-link {
    animation: menuLinkSlideRight 0.35s ease forwards;
}

.menu-overlay.active .menu-link:nth-child(1) {
    animation-delay: 0.05s;
}

.menu-overlay.active .menu-link:nth-child(2) {
    animation-delay: 0.1s;
}

.menu-overlay.active .menu-link:nth-child(3) {
    animation-delay: 0.15s;
}

.menu-overlay.active .menu-link:nth-child(4) {
    animation-delay: 0.2s;
}

.menu-overlay.active .menu-link:nth-child(5) {
    animation-delay: 0.25s;
}

.menu-overlay.active .menu-link:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes menuLinkSlideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-link:hover {
    opacity: 0.6;
}

/* Responsive untuk mobile */
@media (max-width: 480px) {
    .menu-content {
        max-width: 70%;
    }

    .menu-link {
        font-size: 1rem;
    }
}

/* SECTIONS STRUCTURE */
.cover-section,
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    background-size: cover;
    background-position: center;
}

/* Background placehodlers (Ganti URL dengan gambar lu sendiri) */
.cover-section {
    background-image: none;
    background: transparent;
}

/* UNIVERSAL BACKGROUND VIDEO */
#bg-video {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 480px;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
    opacity: 1;
    pointer-events: none;
}

/* Pastikan video tetap di posisi untuk body dengan max-width */
@media (min-width: 481px) and (max-width: 1024px) {
    #bg-video {
        max-width: 100%;
        left: 0;
        transform: none;
    }
}

@media (min-width: 1025px) {
    #bg-video {
        left: 50%;
        transform: translateX(-50%);
    }
}

#intro,
#bride,
#groom,
#story,
#save-date,
#events,
#attire,
#streaming,
#our-moment,
#rsvp,
#wishes,
#wedding-gift,
#closing {
    background: transparent;
    z-index: 0;
}





#short-quote {
    /* short quote styles */
}

/* FALLING QUOTE SECTION */
#quote-falling {
    background: transparent;
    z-index: 1; /* Above background video */
    justify-content: flex-start;
    position: relative;
    padding-top: 10vh;
    padding-bottom: 5vh;
    min-height: auto;
}



#quote-falling .content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding-top: 0;
}

.falling-quote {
    font-family: 'Pinky Vanilla', cursive;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.3;
    transform: rotate(-10deg);
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    font-style: italic;
    margin-bottom: 0;
}

#bride {
    justify-content: center;
    padding-top: 5vh;
    padding-bottom: 10vh;
    position: relative;
    text-align: center;
}

#groom {
    justify-content: center;
    padding-top: 5vh;
    padding-bottom: 10vh;
    position: relative;
    text-align: center;
}

.profile-section-title {
    font-family: 'Pinky Vanilla', cursive;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1.2;
    transform: rotate(-5deg);
    text-align: left;
    margin-bottom: 30px;
    margin-left: 10px;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.profile-card {
    background: #ffffff;
    padding: 15px 15px 25px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 90%;
    margin: 0 auto;
    color: #121212;
}

.profile-img-wrapper {
    width: 100%;
    margin-bottom: 15px;
    overflow: hidden;
}

.profile-img-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.profile-card .profile-name {
    font-family: 'Pinky Vanilla', cursive;
    color: #121212;
    font-size: 2.2rem;
    margin: 10px 0;
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
}

.profile-card .profile-title {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 500;
    font-style: normal;
    color: #333;
}

.profile-card .profile-parents {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #333;
    font-weight: 400;
}

.profile-card .ig-link {
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    color: #121212 !important;
    text-decoration: none;
    display: inline-block;
}

.profile-card .ig-link i {
    margin-right: 5px;
}



#story {
    align-items: center;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}



.story-image-frame {
    display: none;
}

.story-image-frame img {
    display: none;
}

.story-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 2.8rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 50px;
    font-style: italic;
    text-transform: none;
}

.story-couple-name {
    display: none;
}

.story-item {
    margin-bottom: 40px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.story-date {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-style: italic;
    text-transform: none;
    text-align: left;
}

.story-text {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

#save-date {
    padding-top: 15vh;
    padding-bottom: 15vh;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.save-date-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px auto;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.save-date-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.save-date-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-style: italic;
    text-transform: none;
}

.save-date-wedding-date {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.save-date-quote {
    display: none;
}

.countdown-label {
    font-family: 'Louis George Cafe', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 400;
}

#save-date .content-wrapper {
    text-align: center;
}

#save-date .countdown-container {
    justify-content: center;
}

#events {
    align-items: center;
    text-align: center;
}

.events-main-heading {
    display: none;
}

.event-item-new {
    margin-bottom: 60px;
    text-align: center;
}

.event-item-new:last-child {
    margin-bottom: 0;
}

.event-title-new {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: normal;
    text-transform: none;
    font-style: italic;
}

.event-date-new {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 10px 0 5px 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
}

.event-time-new {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 5px 0 25px 0;
    font-weight: 400;
}

.event-venue-new {
    font-family: 'Cabin', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 15px 0 10px 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.event-address-new {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 10px auto 25px auto;
    font-weight: 400;
    max-width: 85%;
}

.btn-maps {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-maps:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* OLD EVENT STYLES - KEEP FOR BACKWARD COMPATIBILITY */
.event-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 0;
}

.event-item {
    margin-bottom: 0;
}

.event-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
}

.event-title {
    font-family: 'Noto Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.event-time {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    line-height: 1.5;
    margin: 8px 0 15px 0;
    font-weight: 400;
}

.event-venue-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 12px 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    line-height: 1.5;
    margin: 0 0 18px 0;
    font-weight: 400;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    padding: 8px 18px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 0;
}

.btn-location i {
    font-size: 0.9rem;
}

.btn-location:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ATTIRE SECTION */
#attire {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.attire-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-style: italic;
}

.attire-description {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 0 auto 45px auto;
    max-width: 85%;
    text-align: center;
}

.attire-colors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.color-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.color-circle:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .attire-heading {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .attire-description {
        font-size: 0.8rem;
        max-width: 90%;
    }

    .attire-colors {
        gap: 15px;
    }

    .color-circle {
        width: 60px;
        height: 60px;
    }
}

/* STREAMING SECTION - NEW DESIGN */
#streaming {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    text-align: left;
}

.streaming-section .content-wrapper {
    width: 100%;
    max-width: 100%;
}

.streaming-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 0;
}

.streaming-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.streaming-content {
    width: 100%;
}

.streaming-title {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #fff;
}

.streaming-details {
    margin-bottom: 25px;
}

.streaming-day {
    font-family: 'Bitter', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #fff;
}

.streaming-time {
    font-family: 'Bitter', serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

.streaming-description {
    font-family: 'Bitter', serif;
    font-size: 0.8rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 30px;
    color: #fff;
    max-width: 90%;
}

.btn-join-live {
    display: inline-block;
    padding: 12px 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: #fff;
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-join-live:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
    .streaming-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .streaming-day,
    .streaming-time {
        font-size: 0.75rem;
    }

    .streaming-description {
        font-size: 0.75rem;
        max-width: 100%;
    }

    .btn-join-live {
        font-size: 0.75rem;
        padding: 10px 30px;
    }
}

/* OLD STREAMING STYLES - KEEP FOR BACKWARD COMPATIBILITY */
.streaming-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 0;
}

.streaming-image-frame {
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
    overflow: hidden;
    border-radius: 0;
}

.streaming-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.streaming-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 0;
}

.btn-stream i {
    font-size: 0.9rem;
}

.btn-stream:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* OUR MOMENT */
#our-moment {
    text-align: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.our-moment-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.our-moment-quote {
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    font-style: normal;
    line-height: 1.6;
    margin: 15px auto 30px auto;
    font-weight: 400;
    text-align: center;
    max-width: 85%;
}

.our-moment-caption {
    display: none;
}

.video-caption {
    display: none;
}

.video-container {
    display: none;
}

.video-container iframe {
    display: none;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 25px;
    padding: 0;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.photo-grid::-webkit-scrollbar {
    width: 4px;
}

.photo-grid::-webkit-scrollbar-track {
    background: transparent;
}

.photo-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.photo-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.photo-grid-item {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}

.photo-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.photo-grid-item img:hover {
    transform: scale(1.05);
}

/* QUOTES SECTION */
#quotes {
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.quotes-images {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.quote-image-item {
    width: 45%;
    max-width: 200px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0;
}

.quote-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quotes-text {
    font-family: 'Bitter', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 30px auto;
    max-width: 90%;
    text-align: left;
    font-style: normal;
}

.quotes-author {
    font-family: 'Bitter', serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: right;
    margin-top: 15px;
    padding-right: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* RSVP */
#rsvp {
    align-items: flex-start;
    text-align: left;
    padding-top: 10vh;
    padding-bottom: 5vh;
}

.rsvp-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-style: italic;
}

.rsvp-description {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
}

.rsvp-form-new {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    margin-bottom: 8px;
    display: block;
    color: #fff;
}

.form-input-new {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    transition: 0.3s;
}

.form-input-new::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input-new:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.radio-group-buttons {
    display: none;
}

.radio-button-label {
    position: relative;
    display: block;
    cursor: pointer;
}

.radio-button-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-button-text {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
    font-family: 'Bitter', serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.radio-button-label input[type="radio"]:checked+.radio-button-text {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.radio-button-label:hover .radio-button-text {
    background: rgba(255, 255, 255, 0.25);
}

/* Keep old radio-group for backward compatibility */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #fff;
    cursor: pointer;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    transition: 0.3s;
    cursor: pointer;
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

.form-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.form-textarea-new {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    transition: 0.3s;
    resize: vertical;
    min-height: 100px;
}

.form-textarea-new::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea-new:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.btn-rsvp-submit {
    padding: 10px 35px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
}

.btn-rsvp-submit:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.rsvp-success {
    text-align: center;
    padding: 40px 20px;
}

.rsvp-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.rsvp-success h3 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.rsvp-success p {
    font-family: 'Bitter', serif;
    font-size: 0.9rem;
    font-weight: 300;
}

/* WISHES */
#wishes {
    align-items: flex-start;
    text-align: left;
    padding-top: 5vh;
    padding-bottom: 10vh;
}

.wishes-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-style: italic;
}

.wishes-description {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
}

.wishes-list-new {
    width: 100%;
    max-width: 100%;
    max-height: 60vh;
    overflow-y: auto;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.wishes-list-new::-webkit-scrollbar {
    width: 4px;
}

.wishes-list-new::-webkit-scrollbar-track {
    background: transparent;
}

.wishes-list-new::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.wishes-list-new::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.wish-item-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 12px;
}

.wish-item-new:last-child {
    margin-bottom: 0;
}

.wish-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wish-name-new {
    font-family: 'Cabin', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wish-name-new i {
    color: #4CAF50;
    font-size: 0.85rem;
}

.wish-time-new {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.wish-message-new {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}
    letter-spacing: 0.3px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wish-name-new i {
    font-size: 0.85rem;
    color: #4CAF50;
}

.wish-time-new {
    font-family: 'Bitter', serif;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-top: 8px;
}

.wish-message-new {
    font-family: 'Bitter', serif;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    opacity: 0.95;
    color: #fff;
}

/* WEDDING GIFT */
#wedding-gift {
    align-items: flex-start;
    text-align: left;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

.gift-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3rem;
    text-transform: none;
    font-weight: normal;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-style: italic;
}

.gift-description {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: left;
}

.gift-tabs {
    display: none;
}

.btn-gift-tab {
    display: none;
}

.gift-accounts {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gift-account-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.gift-account-card:last-child {
    border-bottom: none;
}

.account-details {
    flex: 1;
}

.account-bank-name {
    font-family: 'Cabin', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #fff;
}

.account-number-text {
    font-family: 'Cabin', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 5px 0;
    letter-spacing: 0.5px;
    color: #fff;
}

.account-holder-name {
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin: 5px 0;
    color: #fff;
}

.gift-address-text {
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.9;
    margin: 5px 0;
    color: #fff;
    max-width: 90%;
}

.btn-copy-account {
    padding: 8px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 25px;
}

.btn-copy-account:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.gift-confirm-form {
    display: none;
}
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 25px;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.btn-copy-account:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.gift-confirm-heading {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}

.gift-confirm-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gift-input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
    font-family: 'Bitter', serif;
    font-size: 0.9rem;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gift-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.gift-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.gift-select {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: #fff;
    font-family: 'Bitter', serif;
    font-size: 0.9rem;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.gift-select option {
    background: #000;
    color: #fff;
}

.gift-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.btn-confirm-whatsapp {
    width: 100%;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: #fff;
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 10px;
}

.btn-confirm-whatsapp:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* OLD STYLES - KEEP FOR BACKWARD COMPATIBILITY */
.gift-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.gift-content {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 0;
    margin-bottom: 25px;
}

.gift-account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.gift-account-item:last-of-type {
    border-bottom: none;
}

.account-info-left {
    flex: 1;
}

.account-bank {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.account-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 3px 0;
    letter-spacing: 0.5px;
}

.account-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.8;
    margin: 3px 0;
}

.btn-salin {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 0;
    white-space: nowrap;
}

.btn-salin:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-salin i {
    margin-right: 5px;
}

.gift-kado-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
}

.kado-icon {
    font-size: 2rem;
    color: #fff;
    opacity: 0.9;
}

.kado-info {
    flex: 1;
}

.kado-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.kado-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.gift-form {
    width: 100%;
    max-width: 100%;
}

.btn-gift-submit {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gift-submit:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* CLOSING / THANK YOU */
#closing {
    justify-content: center;
    align-items: center;
    padding-top: 15vh;
    padding-bottom: 8vh;
    text-align: center;
}



.thankyou-heading {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 3.5rem;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    font-style: normal;
    transform: rotate(-15deg) !important;
    display: inline-block;
    width: auto;
}

.thankyou-text {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 25px auto;
    max-width: 85%;
}

.thankyou-signature {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 1.8rem;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 40px 0 60px 0;
    text-transform: none;
    font-style: italic;
}

.thankyou-content {
    display: none;
}

.thankyou-image-frame {
    display: none;
}

.thankyou-image-frame img {
    display: none;
}

.closing-footer {
    margin-top: auto;
    padding-top: 40px;
}

.footer-brand {
    font-family: 'Cabin', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

.footer-brand:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials i {
    background: none !important;
    border-radius: 0 !important;
}

.social-link {
    background: none !important;
    border: none !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    transition: opacity 0.3s ease;
    text-decoration: none !important;
}

.social-link:hover {
    opacity: 0.7;
    text-decoration: none !important;
}

.social-link i {
    background: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
}

.social-link::before,
.social-link::after {
    display: none !important;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 0.8;
    background: none !important;
}

.social-link:hover i {
    background: none !important;
}

.social-link:active,
.social-link:focus {
    background: none !important;
    outline: none;
}

/* OVERLAYS */
.cover-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Gradient overlay untuk fullscreen/desktop - lebih gelap di kanan */
@media (min-width: 481px) {
    .cover-section::before {
        background: linear-gradient(to left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    }
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-overlay-dark);
    z-index: 1;
}

.cover-content,
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
    padding: 4vh 2rem 8vh 2rem;
}

.cover-top,
.cover-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.cover-top {
    margin-bottom: 12vh;
}

/* Untuk fullscreen mode / desktop - konten center di tengah */
@media (min-width: 481px) {
    .cover-content {
        align-items: center;
        justify-content: center;
        padding: 4vh 4rem 8vh 4rem;
    }

    .cover-top,
    .cover-bottom {
        align-items: center;
        text-align: center;
        max-width: 500px;
        width: auto;
    }

    .cover-top {
        margin-bottom: 14vh;
    }

    .guest-info {
        text-align: center;
    }

    .guest-info .guest-label,
    .guest-info .guest-name,
    .guest-info .guest-message {
        text-align: center;
    }
}

.cover-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 13px 32px;
    border-radius: 30px;
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cover-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Date split at top of cover */
.cover-date-top {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 25px auto;
    display: flex;
    justify-content: space-between;
    padding: 0;
    z-index: 3;
}

.cover-date-left,
.cover-date-right {
    font-family: 'Cabin', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
}

.guest-info {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-family: var(--font-serif);
}

.guest-info .guest-label {
    font-family: 'Cabin', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.guest-info .guest-name {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 2rem;
    font-weight: normal;
    margin: 0 0 15px 0;
}

.guest-info .guest-message {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Cover page specific styles */
#cover-page .subtitle {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    font-weight: 400;
}

#cover-page .title {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 5.5rem;
    font-weight: normal;
    margin: 25px 0 35px 0;
    letter-spacing: 1px;
    line-height: 1.0;
    text-transform: none;
}

#cover-page .cover-btn {
    font-family: 'Cabin', sans-serif;
    border-radius: 30px;
    padding: 13px 32px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

.guest-info h2 {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 2rem;
    margin: 10px 0;
}

.small-text {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* PROFILE STYLES */
.profile-label {
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem;
    line-height: 1.2;
    margin: 0 0 3px 0;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-name {
    font-family: 'Cormorant', serif;
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    white-space: nowrap;
}

.profile-title {
    font-family: 'Cormorant', serif;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 8px 0;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}

.profile-parents {
    font-family: 'Cormorant', serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 20px 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.name-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 10px 0;
}

.parents {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.signature {
    font-family: 'Accountant Signature', cursive;
    font-size: 1.8rem;
}

.quote-intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.85;
}

.verse-ref {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.85;
}

.intro-content {
    margin-top: 45vh;
}

/* DATE INFO TOP */
.date-info-top {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 2rem;
    z-index: 3;
}

.date-item {
    text-align: center;
}

.date-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
    opacity: 0.9;
}

.date-value {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.ig-link {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.ig-link:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-color: rgba(255, 255, 255, 1);
}

.ig-link:hover i {
    color: #000;
}

.ig-link::before,
.ig-link::after {
    display: none !important;
}

.ig-link i {
    font-size: 1.2rem;
    background: none !important;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

/* LOVE STORY */
.image-frame {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.image-frame img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}

.story-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 15px;
    text-align: justify;
    opacity: 0.9;
}

/* COUNTDOWN */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: transparent;
    padding: 0;
    text-align: center;
}

.time-box span {
    font-family: 'Bitter', serif;
    font-size: 3rem;
    display: block;
    font-weight: 300;
}

.time-box p {
    font-family: 'Bitter', serif;
    font-size: 0.75rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-top: 5px;
    font-weight: 300;
}

/* EVENTS */
.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.event-details h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.event-details p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ATTIRE */
.color-palette {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.color-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: inline-block;
}

/* LIVE STREAMING */
.small-image-frame {
    width: 120px;
    height: 120px;
}

.small-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* TRANSITIONS */
#cover-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    transition: opacity 0.8s ease, filter 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hide #intro content initially until cover is opened */
#intro .intro-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

/* Show #intro content after cover is opened */
body.cover-opened #intro .intro-content {
    opacity: 1;
    visibility: visible;
}

/* Intro header styles */
#intro .intro-header {
    margin-bottom: 180px;
    margin-top: -180px;
    position: relative;
}


#intro .intro-subtitle {
    font-family: 'Cabin', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

#intro .intro-title {
    font-family: 'Pinky Vanilla', cursive;
    font-size: 5.5rem;
    font-weight: normal;
    margin: 25px 0 35px 0;
    letter-spacing: 1px;
    line-height: 1.0;
    text-transform: none;
    opacity: 0;
    transform: translateY(20px) rotate(-10deg);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

#intro .intro-date-top {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

body.cover-opened #intro .intro-subtitle,
body.cover-opened #intro .intro-date-top {
    opacity: 1;
    transform: translateY(0);
}

body.cover-opened #intro .intro-title {
    opacity: 1;
    transform: translateY(0) rotate(-10deg);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1s ease 0.9s, transform 1s ease 0.9s;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

body.cover-opened .scroll-indicator {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 480px) {
    #intro .intro-header {
        margin-top: -280px;
        margin-bottom: 120px;
        padding: 0 1rem;
    }

    #intro .intro-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2.5px;
        margin: 0 0 8px 0;
    }

    #intro .intro-title {
        font-size: 4.2rem;
        line-height: 1.0;
        margin: 25px 0 35px 0;
    }

}

.hide-cover {
    opacity: 0;
    pointer-events: none;
    filter: blur(20px);
}

/* COVER PAGE ENTRANCE ANIMATION */
@keyframes coverReveal {
    0% {
        opacity: 0;
        transform: translateY(22px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes coverRevealTilt {
    0% {
        opacity: 0;
        transform: translateY(22px) rotate(-10deg);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(-10deg);
        filter: blur(0);
    }
}

/* Terapkan animasi ke setiap elemen cover secara berurutan */
#cover-page .cover-date-top {
    animation: coverReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.3s;
}

#cover-page .subtitle {
    animation: coverReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.5s;
}

#cover-page .title {
    animation: coverRevealTilt 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.7s;
    transform: rotate(-10deg);
}

#cover-page .guest-info {
    animation: coverReveal 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 0.9s;
}

#cover-page .cover-btn {
    animation: coverReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 1.1s;
}

/* Monogram C & S di cover — muncul TERAKHIR, menyatu dari kiri & kanan */
@keyframes coverLetterFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-55px) translateY(-10px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-10px);
        filter: blur(0);
    }
}

@keyframes coverLetterFromRight {
    0% {
        opacity: 0;
        transform: translateX(55px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Monogram container: tersembunyi lalu fade in ke opacity 0.15 (semi-transparan by design) */
@keyframes coverMonogramFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.15;
    }
}

#cover-page .monogram {
    opacity: 0;
    animation: coverMonogramFade 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 1.5s;
}

/* Huruf C — meluncur dari kiri */
#cover-page .letter-j {
    animation: coverLetterFromLeft 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 2s;
}

/* Huruf S — meluncur dari kanan */
#cover-page .letter-r {
    animation: coverLetterFromRight 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation-delay: 2s;
}

/* LETTER SLIDE-IN ANIMATION untuk halaman #intro */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px) translateY(-10px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-10px);
        filter: blur(0);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Animasi monogram container di #intro: fade in ke opacity 0.15 */
@keyframes introMonogramFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.15;
    }
}

/* Monogram di #intro mulai hidden, akan dianimasikan via JS */
#intro .monogram {
    opacity: 0;
}

#intro .monogram.animate {
    animation: introMonogramFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Huruf C di #intro — meluncur dari kiri */
#intro .letter-j {
    opacity: 0;
}

#intro .letter-j.animate {
    animation: slideFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Huruf S di #intro — meluncur dari kanan */
#intro .letter-r {
    opacity: 0;
}

#intro .letter-r.animate {
    animation: slideFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Lazy load YouTube thumbnail & play button */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

/* SCROLL REVEAL BLUR FADE-IN */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Quote Ecclesiastes di halaman pertama — transisi lebih panjang & lembut */
#intro .quote-intro.reveal {
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#intro .verse-ref.reveal {
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESPONSIVE UNTUK MOBILE */
@media (max-width: 480px) {
    .title {
        font-size: 3.2rem;
        margin: 0 0 5px 0;
    }

    .subtitle {
        font-size: 0.7rem;
        letter-spacing: 2.5px;
    }

    .monogram {
        font-size: 2.8rem;
    }

    .letter-j {
        transform: translateY(-8px);
    }

    .title-group {
        min-height: 80px;
    }

    .guest-info {
        margin-top: 0;
    }

    .date {
        font-size: 0.85rem;
    }

    #cover-page {
        height: 100dvh;
        /* better for mobile Safari */
    }

    .cover-content {
        padding: 4vh 1.5rem 8vh 1.5rem;
        justify-content: center;
    }

    .cover-date-top {
        max-width: 260px;
        margin-bottom: 20px;
        padding: 0;
    }

    .cover-date-left,
    .cover-date-right {
        font-size: 0.8rem;
    }

    .cover-top {
        margin-bottom: 8vh;
    }

    .cover-top,
    .cover-bottom {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    #cover-page .title {
        font-size: 4.2rem;
        line-height: 1.0;
    }

    .guest-info {
        text-align: center;
    }

    .guest-info .guest-name {
        font-size: 1.7rem;
    }

    .guest-info .guest-label,
    .guest-info .guest-name,
    .guest-info .guest-message {
        text-align: center;
    }

    .cover-btn {
        padding: 12px 28px;
        font-size: 0.75rem;
    }
}