/* =========================
   DESIGN SYSTEM
========================= */
:root {
    --primary: #2E7D32;
    --accent: #D4A017;
    --text: #1F2937;
    --muted: #6B7280;
    --bg: #FFFFFF;
    --surface: #F8FAFC;
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BASE STYLES
========================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

section {
    padding: 60px 8%;
}

h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* =========================
   NAVBAR
========================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: white;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

/* =========================
   LOGO
========================= */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-weight: bold;
    font-size: 16px;
    color: var(--primary);
    line-height: 1;
}

.brand-sub {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
}

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 70vh;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

/* =========================
   PRODUCTS
========================= */
.products {
    background: var(--surface);
    text-align: center;
}

.section-subtitle {
    color: var(--muted);
    margin-top: 6px;
    margin-bottom: 25px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.product-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    transition: 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.product-card p {
    color: var(--muted);
    margin-bottom: 15px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: var(--accent);
    margin: 10px 0;
}

/* =========================
   CONTACT
========================= */
.contact {
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* =========================
   ABOUT
========================= */
.about {
    text-align: center;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #1F2937;
    color: white;
    padding: 40px 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.footer h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.footer p {
    color: #D1D5DB;
}

.designer-credit {
    background: linear-gradient(90deg, #D4A017, #FFD700, #D4A017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-container img {
        height: 35px;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-sub {
        font-size: 11px;
    }
}

