/* ==========================================================================
   Variables & Theme Setup (Tuscan Earth Tones + Modern Corporate Clean)
   ========================================================================== */
:root {
    --olive-green: #3A472E;
    --olive-dark: #2A3321;
    --terracotta: #A65D3B;
    --warm-cream: #FDFBF7;
    --sand-bg: #F4EFE6;
    --text-dark: #2C2A29;
    --text-muted: #615E5B;
    --border-color: #E2DACB;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--warm-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    background-color: var(--warm-cream);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    border-radius: 4px;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--terracotta);
}

/* Buttons */
.btn-primary {
    background-color: var(--olive-green);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--olive-dark);
}

.btn-secondary {
    border: 1px solid var(--olive-green);
    color: var(--olive-green) !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.btn-secondary:hover {
    background-color: var(--olive-green);
    color: #fff !important;
}

.btn-text {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--warm-cream) 0%, var(--sand-bg) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-card {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(58, 71, 46, 0.08);
}

.hero-text {
    flex: 1.2;
}

.subheading {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--terracotta);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--olive-green);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ==========================================================================
   Features / About Section
   ========================================================================== */
.features {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--olive-green);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--warm-cream);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.card h3 {
    font-family: var(--font-heading);
    color: var(--olive-green);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    background-color: var(--sand-bg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--terracotta);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .nav-menu {
        display: none; /* Can be expanded into a mobile menu toggle if required */
    }
}