
/* =========================
   STYLE DASAR
========================= */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #222;
}


/* =========================
   NAVBAR
========================= */

.navbar-navy {
    background-color: #0b1f3a;
}

.navbar-brand {
    font-size: 22px;
}

.nav-link {
    margin-left: 8px;
}

.nav-link:hover {
    color: #ffc107 !important;
}


/* =========================
   HERO
========================= */

.hero {
    background-color: #0b1f3a;
    color: white;
    padding: 90px 0;
}

.hero h1 {
    font-size: 40px;
}

.hero h1 span {
    color: #ffc107;
}

.hero p {
    color: #d8dee8;
    line-height: 1.8;
}

.hero-icon {
    font-size: 180px;
    color: #ffc107;
}


/* =========================
   PRODUK
========================= */

.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 200px;
    background-color: #e8edf4;
    

    display: contents;
    justify-content: center;
    align-items: center;

    font-size: 90px;
    color: #0b1f3a;
}

.price {
    color: #0b1f3a;
}


/* =========================
   BUTTON
========================= */

.btn-navy {
    background-color: #0b1f3a;
    color: white;
    border: none;
}

.btn-navy:hover {
    background-color: #163b6d;
    color: white;
}


/* =========================
   TENTANG
========================= */

.about-icon {
    font-size: 180px;
    color: #0b1f3a;
}

.info-box {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.info-box i {
    display: block;
    font-size: 30px;
    color: #0b1f3a;
    margin-bottom: 10px;
}

.info-box strong {
    display: block;
}

.info-box small {
    color: #777;
}


/* =========================
   KONTAK
========================= */

.contact-box {
    background-color: #0b1f3a;
    color: white;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 25px;
    color: #ffc107;
}

.contact-item p {
    margin-top: 5px;
    color: #d8dee8;
}


/* =========================
   KERANJANG
========================= */

.cart-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-icon {
    font-size: 35px;
    color: #0b1f3a;
}


/* =========================
   CHECKOUT
========================= */

.summary-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.total {
    font-size: 20px;
    color: #0b1f3a;
}




/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 35px;
    }

    .hero-icon {
        font-size: 100px;
        margin-top: 30px;
    }

    .about-icon {
        font-size: 100px;
        margin-bottom: 30px;
    }

}
