/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4; /* Fallback background */
    line-height: 1.6;
}

.navbar {
    background-color: #224F36; /* Dark green from image */
    color: #ffffff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap; /* Allows wrapping if items don't fit */
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-size: 1.8em; /* Increased size */
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0 auto; /* Centers the nav items */
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #b2dfdb; /* Lighter green for hover */
}

/* Underline effect for nav links (optional) */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #b2dfdb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.navbar-right {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    margin-right: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #224F36;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.4em; /* Slightly larger icons */
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #b2dfdb; /* Lighter green for hover */
}

.navbar-toggler {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8em;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) { /* Adjust breakpoint as needed */
    .navbar-nav {
        /* display: none; */ /* Initial state, controlled by JS */
        position: absolute;
        top: 100%; /* Position below the navbar */
        left: 0;
        width: 100%;
        background-color: #224F36; /* Same as navbar */
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        max-height: 0; /* Collapsed by default */
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }

    .navbar-nav.active {
        /* display: flex; */
        max-height: 500px; /* Adjust based on content height */
    }

    .nav-item {
        margin: 10px 0;
    }

    .navbar-toggler {
        display: block; /* Show hamburger icon */
        order: 3; /* Move toggler to the right if brand is taking too much space */
    }

     .navbar-right {
        /* Hide on mobile, or integrate into the collapsed menu if desired */
        /* For this example, let's keep them, but they might wrap or need integration */
        margin-left: auto; /* Push to the right when nav items are gone */
    }

    .navbar {
        padding: 15px 20px; /* Reduce padding on smaller screens */
    }
     .navbar-brand {
        font-size: 1.6em;
    }

    /* Ensure right items stay on right of toggler */
    .navbar-brand { order: 1; }
    .navbar-toggler { order: 2; margin-left: auto; margin-right: 10px;} /* Added margin-right */
    .navbar-right { order: 3; }


}
 @media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5em; /* Slightly smaller brand for very small screens */
    }
    .cta-button {
        padding: 6px 10px;
        font-size: 0.85em;
        margin-right: 10px;
    }
    .social-icons a {
        font-size: 1.3em;
        margin-left: 10px;
    }
    .navbar-nav {
         /* Ensure it takes full width for the menu items */
         width: 100%;
         left:0;
    }
     /* Move CTA and social icons into the collapsed menu if needed */
     /* For now, they stay in the header. Adjust if it gets too crowded */
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens if needed */
    .navbar-brand {
        margin-right: auto; /* Push toggler and right items to the end */
    }
    .navbar-toggler {
        order: 2;
    }
     .navbar-right {
        order: 3;
        /* Consider hiding social icons or CTA if too crowded, or making them smaller */
        /* Example: .social-icons { display: none; } */
    }
}

/* Product Section Styles */
.product-section {
    padding: 50px 20px; /* Increased padding for better spacing */
    background-color: #f9f9f9; /* Light background for the product section */
}

.product-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center the main heading */
}

.product-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.8em; /* Larger heading */
    margin-bottom: 40px; /* More space below heading */
    color: #224F36; /* Consistent with navbar brand */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between cards */
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: left; /* Align text to left inside card */
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* For better internal alignment */
    flex-direction: column; /* Stack items vertically */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 200px;    /* Fixed height for images */
    object-fit: cover; /* Crop to cover, maintain aspect ratio */
    border-radius: 6px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #333;
    min-height: 50px; /* Ensure title areas are roughly same height */
}

.product-card .description {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
    flex-grow: 1; /* Allows description to take available space */
    min-height: 70px; /* Minimum height for description consistency */
}

.product-card .price {
    font-size: 1.2em;
    font-weight: 600;
    color: #224F36; /* Brand color for price */
    margin-bottom: 20px;
}

.btn-product {
    background-color: #224F36; /* Navbar green */
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center; /* Center text in button */
    display: inline-block; /* To allow text-align and padding */
    width: 100%; /* Make button full width of its container if desired */
}

.btn-product:hover {
    background-color: #1A3A2A; /* Darker shade of navbar green */
}

/* Responsive adjustments for product section */
@media (max-width: 768px) {
    .product-section h2 {
        font-size: 2.2em;
    }
    .product-card h3 {
        font-size: 1.4em;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 30px 15px;
    }
    .product-section h2 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .product-card {
        padding: 20px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #224F36; /* Warna hijau tua seperti navbar */
    color: #ffffff;
    padding: 60px 0 20px 0; /* Padding atas lebih banyak, bawah sebelum copyright */
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
}

.site-footer .container.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Padding kiri kanan untuk container */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Kolom responsif */
    gap: 35px; /* Jarak antar kolom */
}

.footer-column h3, .footer-column h4 {
    margin-bottom: 20px;
    font-weight: 600; /* Berat font untuk judul kolom */
    color: #ffffff; /* Pastikan warna judul putih */
}

.footer-column .footer-brand {
    font-family: 'Merriweather', serif; /* Font serif untuk brand */
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 15px;
    display: block; /* Agar margin-bottom bekerja baik */
}

.footer-column.about-us p {
    font-size: 0.9em;
    margin-bottom: 25px;
    color: #e0e0e0; /* Warna sedikit lebih redup untuk deskripsi */
}

.footer-social-icons a {
    color: #ffffff;
    font-size: 1.4em; /* Ukuran ikon sosial */
    margin-right: 12px; /* Jarak antar ikon */
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    width: 40px; /* Lebar lingkaran */
    height: 40px; /* Tinggi lingkaran */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-social-icons a:last-child {
    margin-right: 0;
}

.footer-social-icons a:hover {
    background-color: #ffffff;
    color: #224F36; /* Warna brand saat hover */
    border-color: #ffffff;
}

.footer-column.contact-info p {
    margin-bottom: 12px;
    font-size: 0.95em;
    display: flex; /* Untuk alignment ikon dan teks */
    align-items: center; /* Menengahkan ikon dan teks secara vertikal */
}

.footer-column.contact-info i {
    margin-right: 12px; /* Jarak ikon dari teks */
    width: 20px;
    text-align: center;
    color: #b2dfdb; /* Warna aksen untuk ikon kontak */
}
.footer-column.contact-info a {
    color: #ffffff;
    text-decoration: none;
}
.footer-column.contact-info a:hover {
    text-decoration: underline;
    color: #b2dfdb;
}


.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #b2dfdb; /* Warna aksen hijau muda seperti hover di navbar */
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px 0 20px; /* Padding atas dan horizontal */
    margin-top: 40px; /* Jarak dari grid kolom */
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Garis pemisah lebih terlihat */
    font-size: 0.9em;
    color: #c0c0c0; /* Warna teks copyright */
}

/* Responsive Footer */
@media (max-width: 992px) { /* Tablet dan di bawahnya */
    .site-footer .container.footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    .footer-column .footer-brand {
        font-size: 2em;
    }
}

@media (max-width: 768px) { /* Mobile besar dan di bawahnya */
    .site-footer .container.footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Biarkan 2 kolom jika muat */
        text-align: center; /* Tengahkan teks kolom jika mulai menumpuk */
    }
    .footer-column.about-us p,
    .footer-column.contact-info p,
    .footer-column ul {
         justify-content: center; /* Untuk contact-info p dengan flex */
         text-align: center;
    }
    .footer-social-icons {
        justify-content: center; /* Tengahkan ikon sosial */
    }
     .footer-column.contact-info p {
        justify-content: center; /* Menengahkan item flex (ikon+teks) */
    }
}

@media (max-width: 576px) { /* Mobile kecil */
    .site-footer .container.footer-grid {
        grid-template-columns: 1fr; /* Semua kolom menumpuk */
        text-align: center; /* Pastikan semua teks tengah */
    }
    .footer-column {
        margin-bottom: 20px; /* Jarak antar kolom yang menumpuk */
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    .footer-column.about-us p {
        margin-left: auto;
        margin-right: auto; /* Untuk p yang mungkin punya max-width */
    }
     .footer-social-icons a {
        font-size: 1.3em;
        width: 38px;
        height: 38px;
    }
}

/* About Us Section Styles */
.about-section {
    padding: 60px 20px; /* Padding atas dan bawah lebih besar */
    background-color: #fdfdfd; /* Warna latar yang sangat terang, hampir putih */
}

.about-section .container {
    max-width: 1100px; /* Sedikit lebih kecil untuk fokus konten */
    margin: 0 auto;
}

.about-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 45px; /* Jarak lebih besar ke konten */
    color: #224F36; /* Warna brand utama */
}

.about-content {
    display: flex;
    flex-wrap: wrap; /* Agar bisa wrap di layar kecil */
    align-items: center; /* Menyelaraskan item secara vertikal */
    gap: 40px; /* Jarak antara kolom teks dan gambar */
}

.about-text {
    flex: 1.2; /* Beri sedikit lebih banyak ruang untuk teks */
    min-width: 300px; 
    line-height: 1.75; /* Spasi baris lebih nyaman dibaca */
    font-size: 1.05em;
    color: #444; /* Warna teks sedikit lebih gelap untuk kontras */
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p strong {
    font-weight: 600; /* Open Sans bold */
    color: #333;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px; /* Jarak setelah list */
}

.about-text ul li {
    margin-bottom: 12px; /* Jarak antar item list */
    display: flex; 
    align-items: flex-start; 
}

.about-text ul li i {
    color: #224F36; /* Warna brand untuk ikon */
    margin-right: 15px; /* Jarak ikon ke teks */
    font-size: 1.25em; /* Ukuran ikon sedikit lebih besar */
    width: 22px; 
    text-align: center; 
    padding-top: 3px; /* Penyesuaian vertikal ikon */
}

.about-image {
    flex: 0.8; /* Gambar mengambil sedikit ruang lebih kecil */
    min-width: 300px; 
    text-align: center; 
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Border radius lebih besar */
    box-shadow: 0 8px 20px rgba(0,0,0,0.12); /* Shadow lebih halus */
}

/* Responsive adjustments for About Section */
@media (max-width: 992px) { /* Tablet */
    .about-content {
        gap: 30px;
    }
     .about-text {
        flex: 1;
    }
    .about-image {
        flex: 1;
    }
}


@media (max-width: 768px) { /* Mobile */
    .about-section {
        padding: 40px 20px;
    }
    .about-content {
        flex-direction: column; /* Tumpuk teks dan gambar */
        gap: 30px; 
    }
    .about-text, .about-image {
        flex: none; 
        width: 100%; 
    }
    .about-section h2 {
        font-size: 2.2em; /* Ukuran judul lebih kecil */
        margin-bottom: 30px;
    }
    .about-text {
        font-size: 1em; /* Ukuran font teks normal */
    }
    .about-image img {
         max-width: 90%; /* Gambar tidak terlalu lebar di mobile */
         margin: 0 auto; /* Tengahkan gambar */
    }
}