
/* ==========================================================
   01. RESET & GLOBAL
========================================================== */

/* ---------- FONT ---------- */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter.woff2') format('woff2');
    font-display: swap;
}
:root{

  --bg:#ffffff;
  --fg:#1a1a1a;
  --muted:#8a8888;
  --accent:#d97706;
  --line:#9c8282;
}
:root{
    --primary:#0f766e;
    --dark:#1f2937;
    --white:#ffffff;
    --shadow:0 8px 25px rgba(0,0,0,.08);
}
body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
  overflow-x:hidden;
}

/* ---------- RESET ---------- */
*{
    box-sizing:border-box;
   
}

html{
    scroll-behavior:smooth;
}



/* ---------- IMAGE ---------- */
img{
    width:100%;
    display:block;
}

/* ---------- LINK ---------- */
a{
    text-decoration:none;
    color:inherit;
}

/* ---------- LIST ---------- */
ul{
    list-style:none;
}

/* ---------- CONTAINER ---------- */
.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ---------- SECTION ---------- */
section{
    padding:80px 0;
    margin-top:0;
}

/* ---------- TITLE ---------- */
h1,
h2,
h3,
h4{
    font-weight:700;
    text-align:center;
}

h2{
    font-size:2rem;
    text-align:center;
    
}

section p{
    text-align:center;
    color:#2b2828;
    margin-bottom:20px;
}

/* ---------- BUTTON ---------- */
.btn{
    background:#2563eb;
    color:#fff;
    padding:10px 20px;
}

.hero-btn,
.nav-btn{
    display:inline-block;
    padding:12px 12px;
    border-radius:10px;
    background:#f8fc03;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover,
.nav-btn:hover{
    background:#00895a;
}

/* ---------- HOLIDAY TRAVEL ---------- */
/* ===============================
   BOOKING PROMO
================================= */

.booking-promo{
    padding:80px 20px;
    background:linear-gradient(135deg,#303236,#1e3a8a);
    color:#fff;
    text-align:center;
}

.booking-promo h1{
    max-width:900px;
    margin:0 auto 20px;
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:800;
    line-height:1.3;
}

.promo-lead{
    max-width:750px;
    margin:0 auto 40px;
    color:#e5e7eb;
    font-size:1.1rem;
    line-height:1.8;
}

.promo-voucher{
    max-width:700px;
    margin:auto;
    background:#ffffff;
    color:#0f0f0f;
    padding:35px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.promo-voucher h2{
    color:#6a7225;
    margin-bottom:25px;
    font-size:1.8rem;
    font-weight:700;
}

.voucher-list{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.voucher-list li{
    background:#f8f9fa;
    margin-bottom:15px;
    padding:16px 20px;
    border-left:5px solid #22c55e;
    border-radius:10px;
    text-align:left;
    font-weight:600;
    transition:.3s;
}

.voucher-list li:hover{
    transform:translateX(6px);
    background:#eefcf2;
}

.promo-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.promo-btn:hover{
    background:#128C7E;
    transform:translateY(-3px);
}

@media (max-width:768px){

.booking-promo{
    padding:60px 15px;
}

.promo-voucher{
    padding:25px;
}

.booking-promo h1{
    font-size:2rem;
}

.promo-btn{
    width:100%;
}
}

.hero{padding:60px 0 40px;text-align:center;}
.hero h2{font-size:1.4rem;max-width:780px;margin:0 auto 20px;}
.hero p.lead{max-width:680px;margin:0 auto;color:var(--muted);}
section{padding:40px 0;border-top:1px solid var(--line);}
section h2{margin-top:0;}
.dest-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));}
.dest-card{border:1px solid var(--line);border-radius:8px;padding:18px;background:#faf8f8;}
.dest-card h3{margin:0 0 6px;font-size:1.05rem;}
.dest-card p{margin:0;color:var(--muted);font-size:0.95rem;}
.dest-card .meta{display:inline-block;background:#f7f4f4;border:1px solid var(--line);padding:2px 8px;border-radius:4px;font-size:0.8rem;margin-top:8px;color:var(--muted);}
.gallery-grid{display:grid;gap:12px;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));}
.gallery-grid img{width:100%;height:auto;display:block;border-radius:6px;}
.dest-section{margin-bottom:30px;}
.dest-section h3{margin-bottom:4px;}
.dest-section p{color:var(--muted);font-size:0.95rem;margin:0 0 12px;}
.hotel-list{list-style:none;padding:0;margin:0;display:grid;gap:8px;}
.hotel-list li{padding:8px 12px;background:#fdf9f9;border-radius:6px;border:1px solid var(--line);}
.hotel-list li strong{color:var(--accent);}
.cta-wa{display:inline-flex;align-items:center;gap:8px;background:#25D366;color:#0c0c0c;padding:12px 20px;border-radius:50px;text-decoration:none;font-weight:600;margin-top:20px;}
.seo-text{background:#f5f5f5;padding:30px;border-radius:10px;}
.seo-text h2:first-child{margin-top:0;}
details{border:1px solid var(--line);border-radius:6px;padding:10px 14px;margin-bottom:8px;}
details summary{cursor:pointer;font-weight:600;}
/*--------animasi----------------*/
  .animasi-container {
        width: 100%;
        background: #ffc107; /* Warna kuning supaya menonjol */
        overflow: hidden;
        white-space: nowrap;
        margin-top: 5px;
        padding: 20px;
        border-bottom: 2px solid #e0a800;
    
    }

    .moving-text {
        display: inline-block;
        padding-left: 100%;
        animation: scroll-left 20s linear infinite;
        font-weight: bold;
        color: #333;
        font-family: sans-serif;
    }

    @keyframes scroll-left {
        0%   { transform: translate(0, 0); }
        100% { transform: translate(-100%, 0); }
    }

    .animasi-container:hover .moving-text {
        animation-play-state: paused; /* Berhenti bila mouse lalu */
    }


/* ---------- GLOBAL RESPONSIVE ---------- */
@media (max-width:768px){

    section{
        padding:60px 0;
    }

    h2{
        font-size:1.7rem;
    }

}


/*  2 NAVBAR*/
/* ---------- ROOT ---------- */

/* ---------- HEADER ---------- */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:var(--shadow);
    z-index:1000;
}

/* Header ketika scroll */
header.scrolled{
    background:#ffffff;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s ease;
}

/* ---------- NAVBAR ---------- */
.navbar{
    max-width:1200px;
    height:70px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ---------- LOGO ---------- */
.logo img{
    width:58px;
    height: 58px;
    
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-title {
    font-size: 25px;
    font-weight: 700;
    color: blue;
}

.carisini {
    font-size: 20px;
    color: #666;
    position: relative;
    top: -4px; /* Laras -2px hingga -6px jika perlu */
}
/* ---------- MENU ---------- */
.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.nav-menu a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--primary);
}

/* ---------- HAMBURGER ---------- */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:6px;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#222;
    border-radius:5px;
    transition:.3s;
}

/* ---------- MOBILE ---------- */
@media (max-width:768px){

    .hamburger{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:48px;
        left:0;
        width:100%;
        background:#fdfcfc;
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:30px 0;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

}


/* ----------( HERO SECTION 3)---------- */
.hero{
    position:relative;
    width:100%;
    min-height:900px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:#222;
    overflow: hidden;
}

/* ---------- HERO IMAGE ---------- */
.hero-image{
    position:absolute;
    inset:0;
    z-index:0;
    margin-top: -50%;
    margin-bottom: 0;

}

.hero-image img{  
    height:100%;
    object-fit:cover;
    object-position:center bottom;
}

/* ---------- HERO OVERLAY ---------- */
.hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:rgba(8, 8, 8, 0.0);
    pointer-events:none;
}

/* ---------- HERO CONTENT ---------- */
.hero-content{
    position:absolute;
    left:50%;
    transform:translate(-50%,-50%);

    width:100%;
    max-width:800px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    z-index:2;
    
}
.hero-content h1{
    margin-top: 125%;
    color:#fc0505;
    font-size:35px;
    line-height:1.3;
    
    text-shadow:0 3px 10px rgba(3, 3, 3, 0.3);
}

.hero-content p{
    margin:0 0 30px;
    color:#20077e;
    font-size:20px;
    font-weight:600;
    line-height:1.2;
    text-shadow:0 2px 8px rgba(7, 7, 7, 0.3);
}

/* ---------- HERO BUTTON ---------- */
.hero-btn{  
    background:#2ecc71;
    color:#fff;
    font-weight:700;
    text-align:center;
    border-radius:8px;
    transition:.3s;
    margin-bottom: 35px;
}

.hero-btn:hover{
    transform:translateY(-2px);
}

/* ---------- TABLET ---------- */
@media (max-width:768px){

    .hero{
        min-height:500px;
       
    }

    .hero-content{
        padding:25px 18px;
    
       

    }

    .hero-content h1{
        font-size:34px;
        margin-bottom: 25px;
        
    }

    .hero-content p{
        font-size:17px;
    }

}

/* ---------- MOBILE ---------- */
@media (max-width:480px){

    .hero{
        min-height:430px;
    }

    .hero-content h1{
        font-size:28px;
        
    
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btn{
        padding:11px 24px;
    }

}

/* ----------[CARD HOMESTAY SECTION 4 ] ---------- */
.homestay-section{
    padding:40px 0;
    background:#f8f8f8;

   
}

/* ---------- SECTION TITLE ---------- */
.homestay-section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:10px;
}

.section-desc{
    text-align:center;
    color:#333;
    margin-bottom:40px;
    padding:15px;
    font-size:25px;
}

/* ---------- CARD GRID ---------- */
.card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:13px;
}

/* ---------- CARD ---------- */
.card{
    background:rgb(247, 244, 244);
    border-radius:15px;
    
    transition:.3s;
    height:100%;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-8px);
}

/* ---------- CARD IMAGE ---------- */
.card img{
    width:100%;
    height:340px;
    object-fit:cover;
}

/* ---------- CARD CONTENT ---------- */
.card-content{
    padding:15px;
    flex:1;
    display:flex;
    height: 200px;
    flex-direction:column;
}

.card-content h3{
    font-size:20px;
    margin-bottom:10px;
    width:fit-content;
    display:-webkit-box;
}

.card-content p{
    color:#131212;
    text-align:left;
    line-height:1.3;
    width:fit-content;
    display:-webkit-box;
    -webkit-lineclamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:wrap;
}

/* ---------- CARD BUTTON ---------- */
.card-btn{
    margin-bottom:10px;
    margin-top: auto;
    display:inline-block;
    width:100%;
    padding:12px 16px;
    background:#2563eb;
    color:#ffffff;
    font-weight:600;
    text-align:center;
    text-decoration:none;
    border-radius:8px;
    transition:background .2s;
}

.card-btn:hover{
    background:#6f7112;
}

/* ---------- TABLET ---------- */
@media (max-width:992px){

    .card-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ---------- MOBILE ---------- */
@media (max-width:600px){

    .card-grid{
        grid-template-columns:1fr;
    }

}

/* =========>[ DETAIL HEADLINE 5]---------- */
.detail-headline{
    padding:80px;
    padding-bottom:20px;
    text-align:center;
    margin-bottom:0;
    background:#000;
    color:azure;
}

.detail-headline h1{
    font-size:30px;
    padding-top:10px;
}

/* ---------- DETAIL SECTION ---------- */
.detail-section{
    width:100%;
    max-width:1200px;
    margin:auto;
}

.detail-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* ---------- DETAIL CONTENT ---------- */
.detail-content{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.detail-content h1{
    font-size:36px;
    color:#222;
    margin-bottom:20px;
}

.detail-content h2{
    font-size:24px;
    color:#222;
    margin:30px 0 15px;
}

.detail-content p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ---------- DETAIL CARD ---------- */
.detail-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    height:max-content;
}

.detail-card h3{
    font-size:22px;
    margin-bottom:10px;
    color:#222;
}

/* ---------- DETAIL LIST ---------- */
.detail-list{
    list-style:none;
    padding:0;
}

.detail-list li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.detail-list li i{
    font-size:22px;
    color:#0d6efd;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:768px){

    .detail-container{
        grid-template-columns:1fr;
    }

    .detail-content h1{
        font-size:28px;
    }

}

/* ============> 6 FACILITIES SECTION ---------- */
.facilities{
    width:100%;
    max-width:100%;
    margin-top:10px;
    margin-bottom:10px;
}

.facilities h2{
    text-align:center;
    font-size:32px;
    color:#222;
    margin-top:10px auto;
    margin-bottom:40px;
}

/* ---------- FACILITY GRID ---------- */
.facility-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* ---------- FACILITY ITEM ---------- */
.facility-item{
    background:#dbdada;
    border-radius:15px;
    padding:25px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.facility-item:hover{
    transform:translateY(-8px);
}

.facility-item i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.facility-item h3{
    font-size:18px;
    color:#222;
    margin-bottom:10px;
}

.facility-item p{
    color:#666;
    font-size:14px;
    line-height:1.6;
}

/* ---------- TABLET ---------- */
@media (max-width:992px){

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ---------- MOBILE ---------- */
@media (max-width:768px){

    .facility-grid{
        grid-template-columns:1fr;
    }

    .facilities h2{
        font-size:26px;
    }

}

/*================>7 GALLERY SECTION ---------- */
.gallery-section{
    padding:80px 0;
    background:rgb(218, 213, 213);
    margin-top:65px;
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:20px;
}

/* ---------- GALLERY CARD ---------- */
.gallery-card{
    overflow:hidden;
    border-radius:15px;
    height:250px;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

/* ---------- TABLET ---------- */
@media (max-width:992px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ---------- MOBILE ---------- */
@media (max-width:600px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

}

/* ============> 8 BOOKING CTA ---------- */
.booking-cta{
    width:90%;
    max-width:1200px;
    margin:70px auto;
    background:#111;
    border-radius:20px;
    padding:60px 30px;
    text-align:center;
}

.cta-content h2{
    color:#fff;
    font-size:36px;
    margin-bottom:20px;
}

.cta-content p{
    color:#ddd;
    font-size:17px;
    line-height:1.7;
    max-width:700px;
    margin:0 auto 30px;
}

/* ---------- WHATSAPP BUTTON ---------- */
.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#dcff12;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.btn-whatsapp i{
    font-size:24px;
}

.btn-whatsapp:hover{
    transform:translateY(-5px);
}

/* ---------- CTA SECTION ---------- */
.cta{
    padding:80px 20px;
    background:#0f766e;
    text-align:center;
    color:#f5f0f0;
    margin-top:-70px;
}

.cta h2{
    font-size:40px;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    margin-bottom:30px;
    color:#f5f0f0;
}

.cta .btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff9800;
    color:#131212;
    text-decoration:none;
    border-radius:40px;
    font-weight:bold;
}

/* ---------- MOBILE ---------- */
@media (max-width:768px){

    .booking-cta{
        padding:40px 20px;
    }

    .cta-content h2{
        font-size:26px;
    }

}
/* footer/*
/* ===========> 9 FOOTER ---------- */
.footer{
    background:#031300dc;
    color:#ffffff;
    padding:60px 0 20px;
    margin-top:10px;
}

/* ---------- FOOTER CONTAINER ---------- */
.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    align-items:start;
}

/* ---------- FOOTER BOX ---------- */
.footer-box h2{
    font-size:25px;
}

.footer-box h2 span{
    color:#25D366;
}

.footer-box h3{
    font-size:20px;
    margin-bottom:20px;
}

.footer-box p{
    color:#ccc;
    line-height:1.7;
}

/* ---------- FOOTER LINKS ---------- */
.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#ffffff;
    padding-left:5px;
}

/* ---------- ICON ---------- */
.footer-box i{
    padding:5px;
}

/* ---------- SOCIAL ---------- */
.social{
    display:flex;
    gap:15px;
}

.social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#222;
    color:#fff;
    border-radius:50%;
    font-size:20px;
    transition:.3s;
}

.social a:hover{
    background:#16a34a;
    transform:translateY(-5px);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:200px;
    height:80px;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:20px;
    font-size:20px;
    z-index:999;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom{
    margin-top:40px;
    padding:20px;
    text-align:center;
    color:#9ca3af;
    border-top:1px solid #333;
    font-size:14px;
}

/* ---------- TABLET ---------- */
@media (max-width:992px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ---------- MOBILE ---------- */
@media (max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social{
        justify-content:center;
    }

}

/*=========================footer==================*/
footer
{
    padding:40px 0 20px;
    border-top:1px solid var(--line);
    color:var(--bg);font-size:1rem;
}
.footer-grid{
    display:grid;gap:15px;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    margin-bottom:10px;
    margin-left: 100px;
    text-align: left;
}
.footer-grid h4
{
    margin:0 0 10px;color:var(--fg);
    font-size:1rem;
    
}
.footer-grid ul
{
    list-style:none;padding:0;
    margin:0;
}
.footer-grid li
{
    padding:3px 0;
}
@media(max-width:600px)
{
    .hero h2{font-size:1.4rem;
    }.dest-grid,
    .gallery-grid
    {
        grid-template-columns:repeat(auto-fill,minmax(180px,1fr));}}
        .footer-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-column{
    text-align: left;
}

.footer-column h3{
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.footer-column ul{
    list-style: none;
    padding: 0;
    margin: 0;
     text-align: left;
}

.footer-column ul li{
    margin-bottom: 12px;
    text-align: left;
}

/* Mobile */
@media (max-width:768px){
    .footer-content{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column{
        text-align: center;
    }
}
/* ==========================================================
   10. FINAL CLEANUP
========================================================== */

/* ---------- SMOOTH SCROLL ---------- */
html{
    scroll-behavior:smooth;
}

/* ---------- FOCUS ---------- */
button:focus,
a:focus,
input:focus,
textarea:focus{
    outline:none;
}

/* ---------- TRANSITION ---------- */
a,
button,
.card,
.card img,
.hero-btn,
.card-btn,
.btn,
.btn-whatsapp,
.social a,
.whatsapp-btn{
    transition:.3s ease;
}

/* ---------- SHADOW ---------- */
.card,
.detail-content,
.detail-card,
.facility-item,
.gallery-card,
.footer,
.booking-cta{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* ==========================================================
   END OF STYLE.CSS
========================================================== */