/* css afif*/
  body {
            background-color: #f5f5dc; /* Warna latar kayu */
            font-family: 'Arial', sans-serif;
        }
        .navbar {
            background-color: #8B4513; /* Warna coklat tua */
            border-radius: 0;
            border: none;
        }
        .navbar-default .navbar-nav > li > a {
       color: white;
        }

        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
       color: #ddd;
        }
        .navbar-brand {
            color:white;
            font-weight: bold;
        }
        .navbar-brand:hover {
            color: white;
        }
   .jumbotron {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/8.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 25px;
    margin-bottom: 0;
}
        .product-card {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            transition: transform 0.3s;
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
        }
        .product-info {
            padding: 15px;
        }
        .price {
            color: #8B4513;
            font-weight: bold;
            font-size: 18px;
        }
        .btn-buy {
            background-color: #8B4513;
            color: white;
            border: none;
        }
        .btn-buy:hover {
            background-color: #A0522D;
            color: white;
        }
        footer {
            background-color: #8B4513;
            color: white;
            padding: 20px 0;
            margin-top: 30px;
        }
        .contact-info {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
        }
