/* ================================
   GLOBAL
================================ */
body {
    background-color: #f8f9fa;
}

/* ================================
   NAVBAR
================================ */
.navbar-orange {
    background-color: green;
}

.navbar-orange .nav-link,
.navbar-orange .navbar-brand {
    color: #fff;
    font-weight: 500;
}

.navbar-orange .nav-link:hover {
    color: #212529;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;       
    text-align: center;
    background: transparent;
    padding: 80px 20px;
    color: white;
}

.hero img {
    width: 200px;
    max-width: 300px;
    margin-bottom: 20px;
}

.hero h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

/* Button (Custom) */
.btn-orange {
    background-color: #ff7a00;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: #e86c00;
    color: white;
}

/* ================================
   PRODUK CARD
================================ */
.produk-card img {
    height: 200px;
    object-fit: cover;
}

/* ================================
   FOOTER
================================ */
footer {
    background: #212529;
    color: white;
}
