body{
    margin:0;
    min-height:100vh;

    background-image:url('/c.jpeg');
    background-repeat:no-repeat;
    background-size:149%; /* zoom in */
}


body{
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
}


    .slide-wrap {
        width: 100%;
        overflow: hidden;
        padding: 0px 0;
        margin-bottom: 15%;
    }

    .slide-track {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: geser 20s linear infinite;
    }

    .slide-track.paused {
        animation-play-state: paused;
    }

    @keyframes geser {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .slide-box {
        width: 200px;
        height: 200px;
        flex-shrink: 0;
        border: 3px solid transparent;
        cursor: pointer;
        transition: 0.1s;
        overflow: hidden;
    }

    .slide-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

    .slide-box.active {
        border: 5px solid pink;
        border-radius: 10px;
        box-sizing: border-box;
    }
.slide-box{
    border: 3px solid white;   /* default putih */
    border-radius: 10px;
    transition: border-color .2s ease;
}

.slide-box.active{
    border-color: pink;        /* berubah jadi pink */
}


.foto-geyong {
    display: inline-block;
    margin: 20px;
}

.geyong {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: geyongPelankan 4s ease-in-out infinite;
}

.geyong2 {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: geyongPelankan2 4.5s ease-in-out infinite;
}

@keyframes geyongPelankan {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(15px) rotate(2deg); }
    50% { transform: translateX(0) rotate(0deg); }
    75% { transform: translateX(-15px) rotate(-2deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

@keyframes geyongPelankan2 {
    0% { transform: translateX(0) rotate(0deg); }
    30% { transform: translateX(-20px) rotate(-3deg); }
    60% { transform: translateX(20px) rotate(3deg); }
    100% { transform: translateX(0) rotate(0deg); }
}
.gygng {
    display: flex;
    justify-content: center;
    align-items: center;
}

.foto-geyong {
    display: inline-block;
}



.pacar-container {
    max-width: 600px;
    margin: 1px auto;
    padding: 30px;
    
    text-align: center;
}

.foto-pacar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.foto-pacar img {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

    transition: transform 0.3s ease;
    cursor: pointer;
}

/* pas di zoom */
.foto-pacar img.zoomed {
    transform: scale(1.4);
    z-index: 1000;
}



.nama{
    margin-top:-7px;
    color:white;
    font-weight:bold;
    font-size:25px;

    transform: rotate(-4deg); /* miring kayak foto */
    transition: transform 0.3s ease;
    text-shadow:0 2px 6px rgba(0,0,0,0.4);
}
.nama1{
    margin-top: -7px;
    color:white;
    font-weight:bold;
    font-size:25px;

    transform: rotate(4deg); /* miring kayak foto */
    transition: transform 0.3s ease;
    text-shadow:0 2px 6px rgba(0,0,0,0.4);
}

/* pas foto di klik (zoom) */
.foto-pacar img.zoomed + .nama {
    transform: rotate(-1deg) scale(1.4);
}
.foto-pacar img.zoomed + .nama1 {
    transform: rotate(-1deg) scale(1.4);
}




.foto1 {
    transform: rotate(-5deg);
}

.foto2 {
    transform: rotate(5deg);
}

.info-pacar h2 {
    color: #d44c4c;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Segoe UI', sans-serif;
}

.tanggal {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.tgl {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-right: 15px;
}

.jam {
    font-size: 20px;
    color: #ff6b6b;
    font-weight: 600;
}

.caption {
    font-size: 18px;
    color: black;
    border-radius: 4px;
    background-color: white;
    font-style: italic;
    margin-top: 10px;
}




.btn-love{
    padding:12px 28px;
    border:none;
    border-radius:25px;
    background:linear-gradient(135deg,#ff7eb3,#ff4f9a);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition: transform 0.12s ease;
}

/* efek tekan */
.btn-love:active{
    transform: scale(0.92);
}

/* bunga hujan */
.bunga{
    position: fixed;
    top: -30px;
    font-size: 24px;
    pointer-events: none;
    animation: jatuh linear forwards;
}

@keyframes jatuh{
    to{
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}



.popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

    opacity: 1;
    transition: opacity .4s ease;
}

/* keluar */
.popup.hide{
    opacity: 0;
    pointer-events: none;
}

.popup-box{
    width:85%;
    max-width:320px;
    background:white;
    padding:20px;
    border-radius:18px;
    text-align:center;

    transform: scale(1);
    transition: transform .35s ease;
}

.popup.hide .popup-box{
    transform: scale(0.9);
}

/* tombol */
.btn-iya{
    margin-top:12px;
    padding:10px 24px;
    border:none;
    border-radius:20px;
    background:linear-gradient(135deg,#ff7eb3,#ff4f9a);
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition: transform .12s ease;
}

.btn-iya:active{
    transform: scale(0.92);
}




.kita-kemana{
    position: relative;
    width:90%;
    max-width:380px;
    height:250px;
    margin:0px auto;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;

    color:white;
    cursor:pointer;
}

/* layer foto */
.bg-zoom{
    position:absolute;
    inset:0;
    background:url('/c3.jpeg') center/cover no-repeat;

    transition: transform .5s ease; /* zoom HALUS */
    z-index:0;
}

/* text di atas foto */
.kita-kemana p{
    position:relative;
    z-index:1;
    margin:0;
    text-shadow:0 2px 6px rgba(0,0,0,.5);
}

/* pas klik */
.kita-kemana.zoom .bg-zoom{
    transform: scale(1.2);
}




.mokondo-section{
    text-align:center;
    height: 40%;
    color:white;
    background:url('/c3.jpeg') center/cover no-repeat;
    
}

.mokondo-section h2{
    margin:0;
    font-size:24px;
    text-shadow:0 2px 6px rgba(0,0,0,.4);
}

.mokondo-section p{
    margin:8px 0 18px;
    font-size:15px;
    text-shadow:0 2px 6px rgba(0,0,0,.4);
}

/* SLIDE */
.slide-wrap1{
    width:100%;
    overflow-x:auto;
    padding-bottom:10px;
}

.slide-track1{
    display:flex;
    gap:14px;
    padding:0 15px;
}

/* FOTO 30% */
.slide-box1{
    flex:0 0 70%;
    border-radius:14px;
    overflow:hidden;
    border: 5px solid white;
}

.slide-box1 img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}
.slide-box1{
    position: relative; /* biar text bisa nempel di tengah */
}

.text-tengah{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);

    pointer-events: none; /* biar slide tetap bisa digeser */
}
.mobile-only{
    width:100%;
    max-width:430px;   /* ukuran layar HP */
    min-height:100vh;
    overflow:hidden;
}


#pc-warning{
    display:none;
    position:fixed;
    inset:0;
    background:#111;
    color:white;
    font-size:200%;

    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:99999;
}