/* ==============================
   Jade Pavilion
   ============================== */

:root {

  /* PRIMARY */
  --primary:        #7A6242; /* warm bronze — dari pagoda & frame */
  --primary-dark:   #4A3C28; /* deep umber — untuk hover/emphasis */
  --primary-soft:  #C9A97A; /* celadon — accent dari hydrangea */

  /* BACKGROUND */
  --surface: color-mix(in srgb, #FAF8F4 75%, transparent);

  /* TEXT */
  --text:           #FAF8F4; /* ink brown — untuk bg terang */
  --text-dark:      #3A2E1E; /* parchment — untuk bg gelap */

  /* RADIUS */
  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      24px;

  /* SHADOW */
  --shadow-soft:   0 2px 16px rgba(122, 98, 66, 0.10);
  --shadow-medium: 0 6px 32px rgba(122, 98, 66, 0.18);
  
}  

body.theme-fixed-bg::before{
    background:url("image/jp-bg1.jpeg") center / cover no-repeat;
}


section.section-fullscreen:has(.pembuka-photo):not(.cover){
    background:url('image/jp-bg2.jpeg') center / cover no-repeat;
}

section.cover{
    background: url('image/jp-bg3.jpeg') center / cover no-repeat !important;
}

/* ================= FLORAL MID ================= */

.dekorasi-satu::before{
    content:"";
    display:block;

    width:100%;
    height:90px;

    background:url('image/pv-dk1.png') top center / contain no-repeat;

    margin-bottom:5px;
    pointer-events:none;

    animation: breathe 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes breathe{
    0%{
        transform: scale(1) translateY(0);
    }
    50%{
        transform: scale(1.1) translateY(-6px);
    }
    100%{
        transform: scale(1) translateY(0);
    }
}

/* ================= FLORAL TOP ================= */
.floral-top::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:180px;
    background:url('image/pv-dk1.png') top center / contain no-repeat;
    pointer-events:none;
    z-index:2;
}

/* ================= FLORAL BOTTOM ================= */
.floral-bottom::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:120px;
    background:url('image/pv-dk2.png') bottom center / contain no-repeat;
    pointer-events:none;
    z-index:2;
}

/* ================= Paralax ================= */
.floral-top,
.floral-bottom{
    position: relative;
    overflow: hidden;
}

/* FLORAL TOP */
.floral-top::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:160px;
    background:url('image/pg-pv1.png') top center / contain no-repeat;
    pointer-events:none;
    z-index:2;

    transform: translateY(var(--parallax-top, 0));
    will-change: transform;
}

/* FLORAL BOTTOM */
.floral-bottom::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:150px;
    background:url('image/pv-dk1.png') bottom center / contain no-repeat;
    pointer-events:none;
    z-index:2;

    transform: translateY(var(--parallax-bottom, 0));
    will-change: transform;
}

/* =================================================
   RESET
================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}



body{ /* font ini hanya atur quote, teks the wedding of*/
    font-family:var(--font-body);
    font-size:14px;
    color:var(--text);
    margin-bottom: 10px;
    font-weight: 400;                   /* Lighter — lebih premium dari 500 */
    line-height: 1.75;
}

/* =================================================
   FIXED BACKGROUND SYSTEM
================================================= */

body.theme-fixed-bg::before{
    content:"";
    position:fixed;
    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:480px;
    max-width:100vw;
    height:100vh;
    z-index:0;
}

body.theme-fixed-bg::after{
    content:"";
    position:fixed;
    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:540px;
    max-width:100vw;
    height:100vh;
    background:color-mix(in srgb, var(--primary) 20%, transparent);
    z-index:1;
    pointer-events:none;
}

body.theme-fixed-bg{
    background:transparent;
}

body.theme-fixed-bg section{
    position:relative;
    z-index:2;
    background-color:transparent;
}

/* disable bg template */
body.theme-fixed-bg 
.section-bg:not(.section-fullscreen):not(.penutup){
    background-image:none;
}



/* =================================================
   SECTION SYSTEM 
================================================= */

section{
    max-width:480px;
    margin:0 auto;
    padding:60px 20px;
    text-align:center;
    position:relative;
}

.section-bg{
    position:relative;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.section-bg > *{
    position:relative;
    z-index:3;
}

/* fullscreen layout */
.section-fullscreen{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* ===============================================
   WATERMARK
================================================= */

.watermark{
    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);
    z-index:9999;

    background:linear-gradient(135deg,#f5d06f,#d4af37,#b8962e);
    color:#3a2c00;

    padding:8px 26px 10px;
    font-size:13px;
    font-weight:700;

    border-bottom-left-radius:18px;
    border-bottom-right-radius:18px;

    box-shadow:
        0 6px 14px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.6);
}

.watermark::before,
.watermark::after{
    content:"";
    position:absolute;
    top:0;
    border-top:18px solid #b8962e;
}

.watermark::before{
    left:-18px;
    border-left:18px solid transparent;
}

.watermark::after{
    right:-18px;
    border-right:18px solid transparent;
}


/* ===============================================
   typografi & btn
=============================================== */

h1, h2 {
    font-family: var(--font-accent);    /* Pinyon Script */
    margin-bottom: 12px;
    font-weight: 400;                   /* Script font pakai 400, bukan 500 — 500 bikin tebal aneh */
    line-height: 1.2;                   /* Script perlu line-height lebih rapat */
}

h3 {
    font-family: var(--font-heading);   /* Cormorant Garamond */
    margin-bottom: 8px;
    font-weight: 500;                    
    letter-spacing: 0.04em;
    line-height: 1.4;
}

h1 { font-size: 45px; }                /* Nama mempelai — besar dan dramatis */
h2 { font-size: 38px; }                /* Sub-nama atau quote romantis */
h3 { font-size: 24px; }                /* Info section — tidak perlu besar */

.section-rsvp h2,
.turut-mengundang h2 {
    font-family: var(--font-heading);   /* Cormorant Garamond */
    font-size: 28px;
    font-weight: 400;
    font-style: italic;                 /* Italic Cormorant = sangat elegan */
    letter-spacing: 0.02em;
}

p {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;                   /* Lighter — lebih premium dari 500 */
    line-height: 1.75;                  /* Paragraf perlu napas */
    color: inherit;
}

small {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;            /* Small caps feel */
    color: inherit;
}

.alamat-label {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;            /* Lebih lebar = lebih premium */
    color: inherit;
}

.btn {
    /* Menggunakan linear-gradient untuk efek transparan */
    background: linear-gradient(to top, var(--primary-dark), var(--primary));
    
    color: var(--text);
    font-weight: 600;
    border: solid 1px var(--primary-soft);
    padding: 8px 30px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
    margin-top: 10px;
    box-shadow: var(--shadow-soft);
}

.btn:hover{
    background:var(--primary-dark);
}

.btn:active{
    transform:translateY(1px);
}



/* ===============================================
   ANIMATION BASE
================================================= */

.fade-item {
    opacity: 0;
    /* Kita pakai sedikit rotasi biar ada kesan 'jatuh' yang elegan */
    transform: translateY(30px) rotateX(-5deg); 
    /* Transisi dibikin sedikit lebih cepat dari sebelumnya tapi tetap smooth */
    transition: 
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    perspective: 1000px; /* Penting untuk efek rotateX agar terlihat 3D */
    will-change: transform, opacity;
}

.fade-in {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Tambahan: Efek Stagger (Muncul bergantian) */
/* Kamu bisa tambahkan delay di HTML atau pakai class tambahan ini */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =================================================
   COVER 
   ================================================= */
.cover {
    min-height: 100vh;
    display: flex;
    align-items: flex-end; /* Kembalikan ke aslinya agar tombol lancar */
    justify-content: center;
    padding-bottom: 90px;
    position: relative;
    color:var(--text-dark);
    
    
}

.cover small{
    font-size:14px;
    font-weight:600;
}

/* Kontainer Teks */
.cover > div {
    display: flex;
    flex-direction: column; /* Susun Vertikal: Foto -> Teks -> Tombol */
    align-items: center;
    text-align: center;
    max-width: 420px;
    
    /* Tetap gunakan animasi bawaan kamu */
    animation: coverEnter .9s cubic-bezier(.22,.61,.36,1) forwards;
}

.cover small{
    margin-top:60px;
}

/* FOTO COVER — Arch Style · Peacock Garden */
.cover .foto-cover-khusus {
    display: block !important;
    margin: 0 auto 30px;

    width: 200px;
    height: 260px;
    object-fit: cover;
    object-position: center top; /* wajah biasanya di atas */

    border-radius: 120px 120px 24px 24px;
    border: 3px solid #f5f2ec;
    outline: 2px solid var(--primary);
    outline-offset: 5px;

    box-shadow:
        0 0 0 7px rgba(61, 82, 68, 0.06),  /* halo lembut */
        0 4px 24px rgba(61, 82, 68, 0.20); /* shadow utama */

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cover .foto-cover-khusus:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 0 7px rgba(61, 82, 68, 0.10),
        0 12px 40px rgba(61, 82, 68, 0.28);
}



/* ================================================
   PEMBUKA 
   ================================================= */

section.section-fullscreen:has(.pembuka-photo) {
    padding-bottom: 140px;
    color: var(--text);
}

.pembuka-photo {
    display: block;
    margin: 0 auto 30px;

width: 200px;
    height: 260px;
    object-fit: cover;
    object-position: center top; /* wajah biasanya di atas */

    border-radius: 120px;
    border: 3px solid #f5f2ec;
    outline: 2px solid var(--primary);
    outline-offset: 5px;

    box-shadow:
        0 0 0 7px rgba(61, 82, 68, 0.06),  /* halo lembut */
        0 4px 24px rgba(61, 82, 68, 0.20); /* shadow utama */

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animasi Bawaan */
@keyframes coverEnter {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}


/* =================================================
   COUNTDOWN
================================================= */

/* COUNTDOWN — Peacock Garden */
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.countdown .unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 64px;
    padding: 12px 8px 10px;
    border-radius: var(--radius-md);

    /* glass effect di atas background botanical */
    background: var(--text);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid var(--text);
    box-shadow:
        0 4px 16px rgba(61, 82, 68, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.countdown .number {
    font-family: var(--font-heading);  /* Cormorant Garamond */
    font-size: 24px;
    font-weight: 300;                  /* light lebih elegan */
    font-style: italic;                /* italic Cormorant = mewah */
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown .label {
    font-family: var(--font-body);     /* Jost */
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
    padding-bottom: 0;
}

/* separator titik dua antar unit */
.countdown .separator {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    color: var(--primary);
    align-self: center;
    margin-bottom: 16px;               /* offset supaya sejajar dengan angka */
    opacity: 0.6;
}

/* ===============================================
   CARD MEMPELAI
================================================= */

.card-mempelai{
    width:100%;
    min-height:80vh;
    z-index:4;
    padding:40px 20px;
    margin-bottom:50px;
    border-radius:var(--radius-lg);
    border:3px solid var(--primary-soft);
    color:var(--text-dark);
    background:var(--surface);
    text-align:center;
    box-shadow:
        0 18px 40px rgba(0,0,0,.08),
        0 6px 14px rgba(0,0,0,.05);
}

.salam-pembuka{
    margin-top:10px;
}

/* wrapper umum card */
.card{
    margin:40px auto;
    position:relative;
}

/* foto mempelai */
.profile-photo {
    margin-top: 35px;
    margin-bottom: 16px;

    width: 180px;
    height: 240px;
    object-fit: cover;
    object-position: center top;

    border-radius: 100px 100px 20px 20px; /* arch portrait */
    border: 3px solid #f5f2ec;
    outline: 2px solid var(--primary);
    outline-offset: 5px;

    box-shadow:
        0 0 0 7px rgba(61, 82, 68, 0.06),
        0 8px 28px rgba(61, 82, 68, 0.18),
        0 2px 6px rgba(61, 82, 68, 0.10);

    /* INITIAL STATE */
    opacity: 0;
    transform: scale(1.2);

    transition:
        opacity 1s ease,
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SAAT MUNCUL */
.profile-photo.show{
    opacity:1;
    transform: scale(1);
}

.card-pria h3,
.card-wanita h3{
    font-size:28px;
}


/* icon instagram */
.instagram-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 0;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    /* gold accent ring */
    background: transparent;
    border: 1.5px solid var(--primary-soft);
    color: var(--primary);

    font-size: 16px;

    transition: 
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.instagram-icon-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #f5f2ec;
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(61, 82, 68, 0.25);
}

/* =================================================
   QUOTE
================================================= */

body.theme-fixed-bg .quote{
    background:color-mix(in srgb, var(--primary-dark) 70%, transparent);
}
section blockquote{
    color:var(--text);
    padding:90px 15px;
    border-radius:var(--radius-lg);
    border:2px solid var(--primary-soft);
    font-style:italic;
    
}

/* ===============================================
   SECTION ACARA
================================================= */

.section-acara{
    width:100%;
    position:relative;
    z-index:4;
    margin:0 auto;
    padding:10px;
    max-width:460px;
    border-radius:var(--radius-lg);
    border:3px solid var(--primary-soft);
    background: var(--surface);
    text-align:center;
    box-shadow:
        0 18px 40px rgba(0,0,0,.08),
        0 6px 14px rgba(0,0,0,.05);
}


.card-acara{
    width:100%;
    margin:0 auto;
    padding:90px 20px;
    margin-bottom:20px;
    color:var(--text-dark);

    
    position:relative;
    z-index:5;
    max-width:460px;
    border-radius:var(--radius-lg);
    border:3px solid var(--primary);
    background: var(--surface);
    text-align:center;
    box-shadow:
    inset 0 4px 10px -4px rgba(0,0,0,.08),
    inset 0 -2px 6px -3px rgba(255,255,255,.5);
}

.card-acara .tanggal-custom {
    font-weight:600;;
}

.alamat-label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

/* ICON AUTO */
.alamat-label::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f3c5"; /* location-dot */
    font-size: 1em; /* ikut ukuran teks */
    line-height: 1;
}

.card-acara .btn{
    margin-top:12px;
}

/* =================================================
   LIVE STREAMING
================================================= */
body.theme-fixed-bg .live-stream {
    color: var(--text-dark);
    background: var(--surface);
}

.live-stream {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 48px 24px;
    min-height: 360px;
}

.live-btn{
    display:inline-block;
    margin-top:12px;
    padding:8px 24px;
    border-radius:30px;

    background:var(--primary-dark);
    color:#fff;

    font-weight:500;
    text-decoration:none;

    box-shadow:var(--shadow-medium);
}

.live-btn:hover{
    background:var(--primary-dark);
}

/* =================================================
   GALLERY
================================================= */

body.theme-fixed-bg .gallery{
    background: var(--surface);
    backdrop-filter: blur(4px);
    color:var(--text-dark);
}

.gallery{
    background:var(--primary);
    text-align:center;
}

/* masonry */
.gallery-masonry{
    column-count:2;
    column-gap:12px;
    margin-top:30px;
}

.masonry-item{
    width:100%;
    margin-bottom:12px;
    break-inside:avoid;
}

/* =================================================
   GALLERY MODAL (FIXED & CLEAN)
================================================= */

.gallery-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.gallery-modal.active{
    display:block;
}

.gallery-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.gallery-modal-box{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.gallery-modal-box img{
    width:100%;
    max-height:100%;
    object-fit:contain;
    border-radius:12px;
    background:#000;
}

/* tombol close */
.gallery-modal-close{
    position:fixed;
    top:14px;
    right:14px;
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;

    background:rgba(0,0,0,.6);
    color:#fff;
    font-size:22px;

    cursor:pointer;
    z-index:10000;
}

/* NAVIGATION (FIX DUPLIKASI) */
.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;

    border-radius:50%;
    border:none;

    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:26px;

    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:5;
}

.gallery-nav.prev{ left:10px; }
.gallery-nav.next{ right:10px; }

/* indikator */
.gallery-indicator{
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);

    background:rgba(0,0,0,.55);
    color:#fff;

    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
}

/* responsive */
@media (max-width:768px){
    .gallery-nav{
        width:36px;
        height:36px;
        font-size:22px;
    }
}

/* =================================================
   VIDEO PREWEDDING
================================================= */

.video-prewedding{
    width:100%;
    margin:20px 0;
}

.video-prewedding iframe{
    width:100%;
    height:220px;
    border:none;
}

@media (min-width:600px){
    .video-prewedding iframe{ height:320px; }
}

@media (min-width:1024px){
    .video-prewedding iframe{ height:420px; }
}

/* =================================================
   LOVE STORY
================================================= */

body.theme-fixed-bg .love-story{
    background:var(--surface);
    color:var(--text-dark);
}

.love-story{
    position:relative;
    z-index:4;
    margin:36px auto;
    padding:60px 24px 40px;

    max-width:460px;

    background:var(--surface);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08),
        0 6px 14px rgba(0,0,0,.05);
}

/* garis timeline */
.love-story::before{
    content:"";
    position:absolute;
    left:12px;
    top:0;
    bottom:0;
    width:2px;

    background:var(--primary-soft);
}

/* judul */
.love-story h2{
    margin-bottom:24px;
}

/* intro */
.love-story > p{
    margin-bottom:24px;
}

/* item */
.story-item{
    position:relative;
    padding-left:28px;
    padding-bottom:8px;
    margin-bottom:10px;
}

/* dot */
.story-item::before{
    content:"";
    position:absolute;
    top:3px;
    width:12px;
    height:12px;

    background:var(--primary-soft);
    border-radius:50%;
}

/* title */
.story-item h3{
    color:var(--primary-dark);
    text-align:left;
}

/* text */
.story-item p{
    text-align:left;
    color:var(--text-dark);
    line-height:1.5;
}

/* =================================================
   RSVP
================================================= */

body.theme-fixed-bg .section-rsvp{
    background: var(--surface);
    backdrop-filter: blur(4px);
}

.section-rsvp{
    position:relative;
    text-align:center;
    padding:30px 20px;
    color:var(--text-dark);
}

/* =================================================
   GIFT / KADO DIGITAL
================================================= */

body.theme-fixed-bg .section-gift{
    background: var(--surface);
    backdrop-filter: blur(4px);
    color:var(--text-dark);
}

.section-gift{
    position:relative;
    padding:40px 40px;
    text-align:center;
}

/* card rekening */
.gift-card{
    background:var(--text);
    border-radius:var(--radius-md);
    padding:20px;
    margin:20px 0;
    text-align:center;
    box-shadow:var(--shadow-soft);
}

.gift-card strong{
    display:block;
    font-size:18px;
    margin-bottom:8px;
    color:var(--text-dark);
}

.gift-card small{
    display:block;
    font-size:14px;
    color:var(--text-dark);
}

.gift-card span.account-number{
    display:block;
    font-size:14px;
    font-weight:600;
    color:var(--text-dark);
}

.kado-fisik-box{
    color:var(--text-dark);
    
}

/* tombol gift */
.gift-card .btn{
    background:var(--primary-dark);
    padding:8px 18px;
    font-size:13px;
    border-radius:var(--radius-sm);
}

/* =================================================
   TURUT MENGUNDANG
================================================= */

body.theme-fixed-bg .turut-mengundang{
    background:color-mix(in srgb, var(--primary-dark) 90%, transparent);
    color:var(--text);
}

.turut-mengundang{
    margin-top:40px;
    text-align:left;
    padding:32px 20px;
    min-height:360px;
}

/* subtitle */
.mengundang-subtitle{
    margin-top:18px;
    margin-bottom:10px;
    font-size:14px;
    color:var(--primary-dark);
}

/* list */
.mengundang-list{
    list-style:none;
    padding-left:0;
    margin-top:12px;
}

.mengundang-list li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
    font-size:14px;
    color:var(--text);
    line-height:1.6;
}

/* bullet */
.mengundang-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:8px;
    height:8px;

    background:var(--text);
    border-radius:50%;
}

/* =================================================
   PENUTUP (SUDAH DIBERSIHKAN TOTAL)
================================================= */
body.theme-fixed-bg .penutup{
    background:color-mix(in srgb, var(--primary-dark) 90%, transparent);
}

section.penutup{
    min-height:80vh;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    border:3px solid var(--primary-soft);
    margin:20px auto 0;
    border-radius: 250px 250px 0px 0px;
    padding-bottom:90px;
    position:relative;
}

/* content */
.penutup > *{
    position:relative;
    z-index:2;
    color:var(--text);
}

/* =================================================
   FOOTER
================================================= */

body.theme-fixed-bg .section-footer{
    background:color-mix(in srgb, #fff 90%, transparent);
}

.footer{
    padding:30px 20px;
    text-align:center;
}

.footer-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

.footer-logo{
    height:36px;
    opacity:.85;
}

.footer-text{
    font-size:13px;
    color:var(--text-dark);
}

.footer-text strong{
    color:var(--primary-dark);
}

/* =================================================
   MUSIC BUTTON
================================================= */

#music-toggle{
    position:fixed;
    bottom:20px;
    left:20px;

    width:50px;
    height:50px;

    border-radius:50%;
    background:var(--text);
    color:var(--primary-dark);

    border:1px solid var(--primary-dark);
    box-shadow:var(--shadow-medium);

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    opacity:0;
    visibility:hidden;
    transition:.3s;

    z-index:999;
}

#music-toggle.visible{
    opacity:1;
    visibility:visible;
}

/* =================================================
   RESPONSIVE FINAL
================================================= */

@media(max-width:480px){

    section{
        padding:50px 16px;
    }

    .story-item::before{
        width:10px;
        height:10px;
        left:4px;
    }

    .cover{
        padding-bottom:150px;
    }

}

