/* ===================================
   LABUAN BAJO SNORKELING RENTAL
   STYLE.CSS
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5fbff;
    color:#333;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:26px;
    font-weight:700;
    color:#0099ff;
}

nav ul{
    display:flex;
    gap:30px;
}

nav a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#00bcd4;
}

.menu-btn{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
}

/* ================= HERO ================= */

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url(images/hero.jpg) center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:750px;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
}

.hero-button{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
}

.btn{
    background:#00bcd4;
    color:white;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#0097a7;
    transform:translateY(-4px);
}

.btn-outline{
    border:2px solid white;
    color:white;
    padding:15px 35px;
    border-radius:40px;
    transition:.3s;
}

.btn-outline:hover{
    background:white;
    color:#0099ff;
}

/* ================= SECTION ================= */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
    color:#0099ff;
}

/* ================= FITUR ================= */

.fitur-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    border-radius:18px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:55px;
    color:#00bcd4;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/* ================= PRODUK ================= */

.produk{
    background:#edf8ff;
}

.produk-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.produk-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.produk-card:hover{
    transform:translateY(-10px);
}

.produk-card img{
    height:230px;
    object-fit:cover;
    width:100%;
}

.produk-card h3{
    padding:20px;
}

.produk-card p{
    padding:0 20px;
    color:#666;
}

.produk-card h4{
    padding:20px;
    color:#0099ff;
}

.btn-small{
    display:block;
    margin:20px;
    text-align:center;
    background:#00bcd4;
    color:white;
    padding:12px;
    border-radius:12px;
    transition:.3s;
}

.btn-small:hover{
    background:#0097a7;
}
/* ===========================
   DESTINASI
=========================== */

.destinasi{
    background:#fff;
}

.destinasi-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.destinasi-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.destinasi-card:hover{
    transform:translateY(-8px);
}

.destinasi-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.destinasi-card:hover img{
    transform:scale(1.08);
}

.destinasi-card h3{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
    color:#fff;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
    font-size:22px;
}

/* ===========================
   TESTIMONI
=========================== */

.testimoni{
    background:#0099ff;
    color:#fff;
}

.testimoni h2{
    color:#fff;
}

.testimonial{
    max-width:750px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,.12);
    padding:45px;
    border-radius:20px;
}

.testimonial p{
    font-size:20px;
    line-height:1.8;
}

.testimonial h4{
    margin-top:25px;
    font-size:18px;
    font-weight:600;
}

/* ===========================
   CTA
=========================== */

.cta{
    background:linear-gradient(135deg,#00bcd4,#0099ff);
    color:#fff;
    text-align:center;
}

.cta h2{
    color:#fff;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#06283d;
    color:#fff;
    padding-top:60px;
}

.footer{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:40px;
}

.footer h3{
    margin-bottom:18px;
    color:#00d9ff;
}

.footer p{
    margin-bottom:10px;
    color:#d8e8f5;
}

.footer a{
    color:#fff;
    font-size:22px;
    margin-right:15px;
    transition:.3s;
}

.footer a:hover{
    color:#00d9ff;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
    padding:20px;
    color:#cfd8dc;
    font-size:15px;
}

/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    box-shadow:0 10px 20px rgba(0,0,0,.2);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}

/* ===========================
   ANIMASI
=========================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content,
.card,
.produk-card,
.destinasi-card,
.testimonial{
    animation:fadeUp .8s ease;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eaf6ff;
}

::-webkit-scrollbar-thumb{
    background:#00bcd4;
    border-radius:10px;
}

::-webkit-scrollbar-thumb:hover{
    background:#0099ff;
}