/* Custom Properties */
:root {
    --primary-color: #526038; /* Sophisticated Olive Green */
    --primary-dark: #3e4a29; 
    --gold-color: #d1ab66; /* Elegant Muted Gold */
    --gold-hover: #bc934d;
    --bg-main: #FDFCF8; /* Warm Off-white */
    --bg-light: #ffffff;
    --bg-dark: #2A3022; /* Dark Olive */
    
    --text-main: #2b2b2b;
    --text-muted: #5e6158;
    --text-light: #f5f5f5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 10px 30px rgba(82, 96, 56, 0.08); /* Soft olive tinted shadow */
    --shadow-hover: 0 20px 40px rgba(82, 96, 56, 0.15);
    --border-radius: 4px;
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-gold {
    background-color: var(--gold-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(209, 171, 102, 0.3);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 171, 102, 0.4);
}

.btn-outline-gold {
    background-color: transparent;
    border-color: var(--gold-color);
    color: var(--gold-color);
}

.btn-outline-gold:hover {
    background-color: var(--gold-color);
    color: #fff;
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a {
    color: var(--primary-dark);
}

.navbar.scrolled .hamburger i {
    color: var(--primary-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold-color);
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links li a:not(.btn):hover {
    color: var(--gold-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 1001;
    padding: 4rem 2rem;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.mobile-nav-links li a {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-nav-links li a:hover {
    color: var(--gold-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero_bg.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(42, 48, 34, 0.8) 0%, rgba(42, 48, 34, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-headline {
    font-size: 3.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Section Shared */
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--gold-color);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* About Section */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.commitment-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--gold-color);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: rgba(209, 171, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.commitment-card:hover .icon-wrapper {
    background-color: var(--gold-color);
    color: #fff;
}

.commitment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Products Section */
.products-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card.featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.product-card.featured .product-image-wrapper {
    height: 100%;
    min-height: 350px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    position: relative;
    height: 250px;
    background-color: #f7f7f7;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-dark);
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    letter-spacing: 1px;
}

.product-badge.eco {
    background-color: #6b8e23;
}

.product-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gold-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.product-price small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.inquire-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inquire-link:hover {
    color: var(--primary-dark);
}

.inquire-link i {
    transition: transform 0.3s ease;
}

.inquire-link:hover i {
    transform: translateX(5px);
}

/* Logistics Section */
.logistics.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.logistics.dark-theme::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 171, 102, 0.05) 0%, rgba(42, 48, 34, 0) 70%);
    border-radius: 50%;
}

.logistics-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.logistics-content {
    flex: 1;
}

.eyebrow {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.muted-gold-text {
    color: var(--gold-color);
}

.gold-text {
    color: var(--gold-color);
}

.gold-icon {
    color: var(--gold-color);
}

.logistics-headline {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.logistics-desc {
    color: #b0b4a8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.logistics-list {
    margin-bottom: 2rem;
}

.logistics-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: #dedede;
}

.logistics-list li i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.logistics-visual {
    flex: 1;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(209, 171, 102, 0.1);
    color: var(--gold-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-row h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.info-row p {
    color: #b0b4a8;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background-color: #1a1e15;
    color: #fff;
    padding: 5rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #a0a498;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-icons a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #a0a498;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    color: #a0a498;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold-color);
    margin-top: 5px;
}

.footer-bottom {
    background: #11140e;
    text-align: center;
    padding: 1.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card.featured {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 991px) {
    .hero-headline {
        font-size: 3rem;
    }
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logistics-container {
        flex-direction: column;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-headline {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .section {
        padding: 4rem 0;
    }
    .products-container {
        grid-template-columns: 1fr;
    }
    .product-card.featured {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-subheadline {
        font-size: 1rem;
    }
    .commitments-grid {
        grid-template-columns: 1fr;
    }
    .glass-panel {
        padding: 2rem;
    }
}
