body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
}

.hero {
    background: url('../images/bg-coconut.jpg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

/* ====== HERO SLIDER ====== */
.hero {
    text-align: center;
    margin-top: 20px;
}

.slider {
    position: relative;
    max-width: 850px;  /* lebar slider */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.slide {
    display: none;
    animation: fade 1s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 380px;  /* tinggi lebih kecil agar proporsional */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.caption {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.caption h2 {
    font-size: 22px;
    color: #00897b;
    margin-bottom: 5px;
}

.caption p {
    color: #555;
    font-size: 15px;
}

/* ====== DOT NAVIGATION ====== */
.slider-nav {
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #00897b;
}

/* ====== HERO CONTENT ====== */
.hero-content {
    margin-top: none;
    margin-bottom: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.hero-content h1 {
    font-size: 28px;
    color: #00897b;
}

.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

.btn {
    background-color: #00897b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #00695c;
}

/* Animasi Fade */
@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}



.hero-content {
    background: rgba(0, 100, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    background: #2E8B57;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background: #1E5E3E;
}

.features, .testimoni {
    padding: 60px 20px;
    text-align: center;
}

.about{
     padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.product-image {
    width: 80%;
    height: 300px;
    margin-top: 20px;
    border-radius: 10px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

.testi-card {
    background: #b7b7b7;
    border-left: 5px solid #2E8B57;
    padding: 20px;
    margin: 30px auto;
    width: 60%;
    border-radius: 8px;
}

footer {
    background: #2E8B57;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* =======================
   TOKO ONLINE SECTION
======================= */
.store {
    background: #f7fff9;
    padding: 60px 20px;
    text-align: center;
}

.store h2 {
    margin-bottom: 20px;
    color: #2E8B57;
}

.store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    text-decoration: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.shopee {
    background: #f1582b;
}
.shopee:hover {
    background: #c9461f;
}

.tokopedia {
    background: #03ac0e;
}
.tokopedia:hover {
    background: #02830b;
}

.bukalapak {
    background: #d50064;
}
.bukalapak:hover {
    background: #b00050;
}

/* =======================
   SOSIAL MEDIA SECTION
======================= */
.social {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}

.social h2 {
    color: #2E8B57;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons img {
    width: 40px;
    transition: 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Responsif */
@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .testi-card {
        width: 90%;
    }

    .store-links {
        flex-direction: column;
    }
}

/* =======================
   LOGO BAR
======================= */
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logo-container .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container .logo:hover {
    transform: scale(1.05);
}

/* =======================
   FEATURE IMAGES
======================= */
.feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.feature-img:hover {
    transform: scale(1.05);
}
