/* =========================
   GLOBAL
========================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
    color: #212529;
}


/* =========================
   NAVBAR
========================= */

.navbar-brand {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
}

.nav-link {
    transition: 0.3s;
}

.nav-link:hover {
    color: #4caf50 !important;
}


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

.hero-section {
    min-height: 70vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.60)
        ),
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;

    color: white;

    padding: 80px 15px;
}


.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);

    font-weight: bold;
}


.hero-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);

    max-width: 700px;

    margin: 20px auto 30px;
}


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

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.5rem);

    font-weight: bold;

    margin-bottom: 15px;
}


/* =========================
   PRODUCT CARD
========================= */

.product-card {
    border: none;

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s;
}


.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Responsive Images */

.product-image {
    width: 100%;

    height: 220px;

    object-fit: cover;
}


/* clamp Typography */

.product-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);

    font-weight: bold;
}


/* Harga */

.price {
    color: #198754;

    font-size: 1.2rem;

    font-weight: bold;
}


/* =========================
   TENTANG
========================= */

.about-section {
    background-color: #e9f5ec;
}


.about-text {
    max-width: 750px;

    margin: auto;

    line-height: 1.8;
}


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

.btn-success {
    border-radius: 8px;
}


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

.footer {
    background-color: #212529;

    color: white;

    padding: 25px 10px;
}


/* =========================
   TABLET
   768px ke atas
========================= */

@media (min-width: 768px) {

    .hero-section {
        min-height: 75vh;
    }

    .product-image {
        height: 230px;
    }

}


/* =========================
   LAPTOP
   992px ke atas
========================= */

@media (min-width: 992px) {

    .hero-section {
        min-height: 80vh;
    }

}


/* =========================
   DESKTOP BESAR
   1200px ke atas
========================= */

@media (min-width: 1200px) {

    .product-image {
        height: 210px;
    }

}