
@import url('https://fonts.googleapis.com/css2?family=Rokkitt:wght@400;700;800&family=Cabin:wght@400;500;600;700&display=swap');

:root {
    --primary: #1C2B23; /* Deep Forest Green */
    --primary-light: #2A4034;
    --secondary: #B85C38; /* Rust Orange */
    --secondary-hover: #9E4E2F;
    --accent: #E0A96D; /* Wood/Sand */
    --bg-base: #F4F1EA; /* Canvas Off-White */
    --bg-alt: #EBE5D9;
    --text-main: #222222; /* Dark Charcoal */
    --text-muted: #5C6B73; /* Slate Gray */
    --white: #FFFFFF;
    
    --font-heading: 'Rokkitt', serif;
    --font-body: 'Cabin', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; text-transform: uppercase; letter-spacing: 1px;}
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
p { margin-bottom: var(--spacing-sm); font-size: 1.125rem; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--secondary-hover); }

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem 2.5rem;
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-xl) 0;
}
.section-alt {
    background-color: var(--bg-alt);
}
.section-dark {
    background-color: var(--primary);
    color: var(--bg-base);
}
.section-dark h2, .section-dark h3 {
    color: var(--bg-base);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(28, 43, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--secondary);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.logo span { color: var(--secondary); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: var(--bg-base);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--secondary); }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(28,43,35,0.7), rgba(28,43,35,0.4));
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    padding: var(--spacing-md);
}
.hero h1 { color: var(--white); text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.hero p { font-size: 1.5rem; margin-bottom: var(--spacing-md); text-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* Grids & Cards */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: var(--spacing-md);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--bg-alt);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(28,43,35,0.1); }
.card-img-wrap { width: 100%; height: 250px; overflow: hidden; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover img { transform: scale(1.05); }
.card-content { padding: var(--spacing-md); }
.card-title { font-size: 1.5rem; margin-bottom: var(--spacing-xs); }
.card-price { font-size: 1.25rem; font-weight: 700; color: var(--secondary); margin-bottom: var(--spacing-sm); }

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--bg-base);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}
.footer-col h4 { color: var(--white); margin-bottom: var(--spacing-sm); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--spacing-xs); }
.footer-links a { color: var(--bg-alt); }
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    section { padding: var(--spacing-lg) 0; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        padding: var(--spacing-md);
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    
    .hero { height: auto; min-height: 80vh; padding-top: 100px; }
}

.article-card {
    background: var(--white);
    border: 1px solid var(--bg-alt);
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(28,43,35,0.1); }


@media (max-width: 768px) {
    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }
}

