html,
body{
    width:100%;
    overflow-x:hidden;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100%;
    background:#F4F4F4;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
}

/* TAMBAHKAN */

img{
    display:block;
    width:100%;
    height:auto;
}

.cover{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:24px;
    margin-bottom:48px;
    position:relative;
}

.cover-img{
    width:100%;
    display:block;
    height:auto;
}

.btn-open{
    padding:14px 28px;
    border:none;
    border-radius:8px;
    background:#c4c5ad;
    color:#ffffff;
    font-weight:700;
    cursor:pointer;

    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.section{
    margin-bottom:40px;
}/* isi card naik dari bawah */
.anim-up{
    opacity:0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.detail-section,
.schedule-section,
.section{
    position:relative;
}

/* bunga kiri masuk dari kiri */
.anim-left{
    opacity:0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

/* saat aktif */

.anim-up,
.anim-left{
    opacity:0;
    transition: all 0.8s ease;
}

.anim-up{
    transform: translateY(40px);
}

.anim-left{
    transform: translateX(-40px);
}

/* HANYA UNTUK ANIMASI */
.anim-up.show,
.anim-left.show{
    opacity:1;
    transform: translate(0,0);
}

.detail-section{
    position:relative;
    display:flex;
    justify-content:center;
    padding:40px 20px 0;
}

.detail-card{
    width:88%;

    background:#FFFFFF;

    border-radius:200px;

    padding:30px 20px;

    position:relative;
    z-index:1;
}

.flower-left{
    position:absolute;
    width:110px;
    left:-10px;
    top:250px;
    z-index:2;
}

.isi-image{
    width:90%;
    display:block;
    margin:0 auto;
}

.section-image{
    width:75%;
    margin:0 auto;
}

/* =====================
   JADWAL
===================== */

.schedule-border{
    width:80%;
    margin:0 auto;
    padding:10px;
    border:1.5px dashed #C8CCB5;
}

.schedule-section{
    position:relative;
}

.flower-right{
    position:absolute;
    width:110px;
    right:-10px;
    top:100px;
    z-index:2;
}

.schedule-box{
    background:#C8CCB5;
    padding:20px;

    overflow:hidden; /* penting biar zoom kepotong */
    display:flex;
    justify-content:center;
    align-items:center;
}

.schedule-image{
    width:110%;
    transform: scale(1.05);
    transform-origin:center;
}

.anim-right{
    opacity:0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.anim-up{
    opacity:0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.anim-up.show,
.anim-right.show{
    opacity:1;
    transform: translate(0,0);
}

.anim-right{
    transition-delay: 0.6s;
}

.divider{
    width:100%;
    margin:30px 0;
    border-bottom:2px dashed #C8CCB5;
    position:relative;
}

.divider-flower{
    position:absolute;
    left:0;      /* 👈 dari 10px jadi 0 */
    top:-90px;
    width:110px;
}

.gift-flower{
    position:absolute;
    width:110px;
    left:-10px;
    top:-120px;
}


.gift-card{
    width:85%;        /* dari full jadi lebih kecil */
    margin:0 auto;
    padding:18px;     /* dari 24px jadi lebih ringkas */
    border-radius:14px;
    background:#bfd0db;
    text-align:center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gift-card p{
    line-height:1.5;
    margin-bottom:16px;
    color:#ffffff;
    font-size:13px; /* 👈 ini yang bikin teks lebih kecil */
}

.rekening{
    width:100%;
    border:none;
    border-radius:6px;
    padding:12px;
    margin-top:10px;
    background:#ffffff;
    color:#666666;
    font-weight:700;
    cursor:pointer;
}

.rekening{
    letter-spacing:1px;
}

.penutup-text{
    width:70%;
    margin:0 auto 20px;
    text-align:center;
    font-size:14px;
    line-height:1.6;
    color:#8E8E8E;
}

.penutup-image{
    width:50%;
    margin:0 auto;
    display:block;
}

.footer-image{
    width:100%;
}

.app {
    max-width: 420px;
    margin: 0 auto;
}