:root {
    --forest-green: #1a3d2b;
    --ivory: #f5f0e8;
    --earth-orange: #e8621a;
    --soft-sage: #7a9e7e;
    --dark-text: #2c2c2c;
    --light-text: #f5f0e8;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', serif;
    background-color: var(--ivory);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--forest-green);
}

/* Layout Utilities */
section {
    padding: 100px 0;
    position: relative;
}

.bg-forest { background-color: var(--forest-green); color: var(--light-text); }
.bg-ivory { background-color: var(--ivory); color: var(--dark-text); }
.bg-orange { background-color: var(--earth-orange); color: var(--light-text); }
.bg-sage { background-color: var(--soft-sage); color: var(--light-text); }

.text-orange { color: var(--earth-orange); }
.text-sage { color: var(--soft-sage); }
.text-forest { color: var(--forest-green); }

/* Header */
.navbar {
    transition: var(--transition-fast);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 61, 43, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--light-text) !important;
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    opacity: 0.8;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--earth-orange);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest-green);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&q=80&w=1974') no-repeat center center;
    background-size: cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--ivory);
}

.hero p {
    font-size: 1.25rem;
    max-width: 500px;
    margin-bottom: 35px;
    color: rgba(245, 240, 232, 0.8);
}

/* Buttons */
.btn-custom {
    padding: 14px 35px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom {
    background: var(--earth-orange);
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    background: #c75316;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--ivory);
}

.btn-outline-custom:hover {
    background: var(--ivory);
    color: var(--forest-green);
}

/* Trust Strip */
.trust-strip {
    background: var(--ivory);
    padding: 30px 0;
    border-bottom: 1px solid rgba(26, 61, 43, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--forest-green);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--earth-orange);
}

.trust-item span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Products Section */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--earth-orange);
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest-green);
    opacity: 0.5;
    margin: 0 15px;
    padding: 5px 0;
    transition: var(--transition-fast);
    position: relative;
}

.filter-btn.active, .filter-btn:hover {
    opacity: 1;
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--earth-orange);
}

.product-card {
    background: white;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 61, 43, 0.15);
}

.product-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--earth-orange);
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--soft-sage);
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--forest-green);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--earth-orange);
}

.product-unit {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* About Section */
.about-image-grid {
    position: relative;
}

.about-img-main {
    width: 80%;
    height: 500px;
    object-fit: cover;
    border: 15px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-sub {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 50%;
    height: 300px;
    object-fit: cover;
    border: 15px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-card {
    background: var(--forest-green);
    color: var(--light-text);
    padding: 60px;
    height: 100%;
}

.map-container {
    height: 100%;
    min-height: 400px;
    filter: grayscale(1) invert(1) contrast(1.2);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Decorative Elements */
.leaf-decoration {
    position: absolute;
    opacity: 0.1;
    color: var(--soft-sage);
    pointer-events: none;
    z-index: 0;
}

.leaf-1 { top: 10%; left: 5%; font-size: 5rem; transform: rotate(-15deg); }
.leaf-2 { bottom: 10%; right: 5%; font-size: 8rem; transform: rotate(45deg); }
.leaf-3 { top: 40%; right: 10%; font-size: 3rem; transform: rotate(120deg); }

/* Root Adjustments */
.ls-2 { letter-spacing: 2px; }
.max-w-600 { max-width: 600px; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        background: var(--forest-green);
    }
    .hero::before {
        width: 100%;
        opacity: 0.4;
        clip-path: none;
    }
    .hero-content {
        text-align: center;
        padding-top: 80px;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .about-img-sub {
        display: none;
    }
    .about-img-main {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}
