/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #d48309;
    background-color: #ffffff;
}

/* Hero Section */
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 10%;
    background-color: #ffffff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    flex: 1;
    color: #805700;
}

.hero-content h2 {
    font-size: 20px;
    color: #024610;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-buttons a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    padding: 12px 25px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary {
    background-color: #000000;
}

.btn-primary:hover {
    background-color: #000000;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
}

/* Hero Image */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 9px;
}
/* Menu Section */
.menu {
    padding: 30px 10%;
    text-align: center;
    background-color: #ffffff;
}

.menu h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.menu-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}



.menu-card img {
    width: 100px;
    height: 100px;
    border-radius: 80%;
    background-color: #fefefe;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover img {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.menu-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.menu-card .rating {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.menu-card p {
    font-size: 16px;
    color: #2fa45b;
    font-weight: bold;
}
/* Section Styling */
.product-section {
    background-color: #f9f8f6;
    padding: 10px 10px;
    text-align:left;
}

.product-section h1 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #4a3c31;
    text-transform: uppercase;
}

/* Category Tabs Styling */
.category-tabs {
    margin-bottom: 30px;
}

.category-tabs .tab {
    background-color: #a9825c;
    color: white;
    border: none;
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.category-tabs .tab:hover {
    background-color: #805700;
}

/* General Section Styling */


.product-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}

.product-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #4a3c31;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Carousel Styling */
.carousel-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 20px auto;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: fit-content;
}

/* Product Card Styling */
.product-card {
        flex: 0 0 20%; /* 5 produk sekaligus */
        box-sizing: border-box;
        text-align: center;
        padding: 10px;
        margin: 10px; /* Menambahkan jarak antar kartu */
        border: 1px solid white;
        border-radius: 10px;
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        background-color: transparent; /* Tidak ada latar belakang saat tidak di-hover */

    
    

}


.product-card:hover {
    background-color: white; /* Latar belakang putih saat di-hover */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Bayangan saat di-hover */
    transform: translateY(-5px); /* Efek angkat saat di-hover */
}



.product-image img {
    width: 70%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}


.product-info h2 {
    font-size: 20px;
    font-weight: bold;
    color: #4a3c31;
    margin: 10px 0;
    text-transform: capitalize;
}

.product-info p {
    font-size: 14px;
    color: #7d6e64;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: center;
}

.read-more {
    text-decoration: none;
    color: #a9825c;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #a9825c;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #a9825c;

}

.read-more:hover {
    background-color: #a9825c;
    color: white;
}

/* Button Styling */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4a3c31;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background: #a9825c;
}

/* Responsiveness */
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 50%; /* 2 produk dalam tampilan kecil */
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 100%; /* 1 produk dalam tampilan sangat kecil */
    }
}
/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #134e35;
    padding: 15px 0;
}

.features a {
    color: #98590c;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    transition: color 0.3s ease;
}

.features a:hover {
    color: #2fa45b;
}