/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f9fafb;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.feature {
    text-align: center;
    padding: 20px;
}

.feature h3 {
    margin: 10px 0;
    font-size: 18px;
}

.feature p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    color: #facc15;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex !important; /* paksa tampil */
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }
}

/* MENU */
.nav-menu {
     position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
}


.nav-menu li a {
    text-decoration: none;
    color: #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #facc15;
}

/* CTA BUTTON */
.nav-cta {
    background: #22c55e;
    padding: 8px 18px;
    border-radius: 8px;
    color: white !important;
    font-weight: bold;
}

.nav-cta:hover {
    background: #16a34a;
}

/* SPACING AGAR HERO TIDAK KETUTUP */
.hero {
    margin-top: 70px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}
.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
}

/* efek hover biar lebih hidup */
.card:hover .product-img {
    transform: scale(1.05);
}

.product-img {
    transition: 0.3s;
}
/* HERO */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('image/oudgaharu_id_head.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
}

.btn-yellow {
    background: #facc15;
    color: black;
}

.btn-green {
    background: #22c55e;
    color: white;
}

/* SECTION */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.section p {
    color: #666;
}

/* GRID PRODUK */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden; 
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    margin-bottom: 10px;
    color: #777;
}

.price {
    font-weight: bold;
    color: #ca8a04;
}

/* KEUNGGULAN */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature i {
    font-size: 30px;
    margin-bottom: 10px;
}

/* CTA */
.cta {
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url('image/oudgaharu_cta.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
    padding: 100px 20px;
}

/* FOOTER */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
    background: #20b858;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }
}