/* CSS Variables */
:root {
    --bg-color: #faf7f2;
    --text-primary: #2d1a11;
    --text-secondary: #5c4a3d;
    --copper: #b87333;
    --copper-dark: #8c5322;
    --wood: #3e2723;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

h1 { font-size: 4rem; color: #fff; margin-bottom: 0.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--wood); }
.pre-title { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 3px; color: var(--copper); margin-bottom: 1rem; }
.subtitle { font-size: 1.8rem; font-style: italic; color: #f1f1f1; margin-bottom: 2rem; font-family: 'Playfair Display', serif; }

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background-color: var(--copper);
    color: #fff;
    border: 1px solid var(--copper);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--copper);
    border: 1px solid var(--copper);
}

.btn-secondary:hover {
    background-color: var(--copper);
    color: #fff;
}

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

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--copper);
    margin: 1rem auto 2rem;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 5%;
    z-index: 100;
}

.navbar.solid-nav {
    position: relative;
    background-color: var(--wood);
    padding: 1.5rem 5%;
}

.logo {
    font-size: 1.8rem; font-weight: 700; color: #fff;
}
.logo span { font-weight: 400; font-style: italic; color: var(--copper); margin-left: 8px;}

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { 
    color: rgba(255,255,255,0.8); 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1px;
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--copper); }
.cart-icon { color: #fff; font-weight: bold; cursor: pointer; }

/* Hero */
.hero { position: relative; height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(45, 26, 17, 0.6); }
.hero-content { z-index: 1; max-width: 800px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e0d8cc;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.award-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #475569;
    color: #fff;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.award-tag.gold {
    background: #fbbf24;
    color: #000;
}

.medal-badge-hero {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid #fbbf24;
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.flavor {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* About Grid */
.about-section {
    background-color: var(--bg-color);
}
.max-w-800 { max-width: 800px; margin: 0 auto; }
.lead-text { font-size: 1.3rem; margin-bottom: 3rem; }
.dark-title { color: var(--wood); }
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.about-item { text-align: center; }
.about-item h3 { color: var(--copper); font-size: 1.2rem; margin-bottom: 1rem; }
.about-item p { font-size: 0.95rem; }

/* Awards Grid */
.dark-section {
    background-color: #f0ebe1;
}

.awards {
    background-color: var(--bg-color);
}
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
.award-card {
    background: #fff;
    border-left: 4px solid var(--copper);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.award-card:hover { transform: translateY(-5px); }
.special-award { border-left-color: #fbbf24; }
.award-card .date { font-weight: bold; color: var(--copper); margin-bottom: 0.5rem; text-transform: uppercase; font-size: 0.85rem;}
.special-award .date { color: #fbbf24; }
.award-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--wood); }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}
.footer-col h2, .footer-col h3 { margin-bottom: 1rem; }

/* Massive Motto Banner */
.motto-banner {
    position: relative;
    padding: 10rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.motto-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: -2;
}

.motto-banner::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(20, 10, 5, 0.90); /* Very dark warm overlay */
    z-index: -1;
}

.motto-content {
    z-index: 1;
}

.massive-motto {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.8);
}

.massive-sub {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    color: #fff;
    text-shadow: 1px 1px 15px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .massive-motto { font-size: 3rem; }
    .massive-sub { font-size: 1.8rem; }
}


.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.product-card img { width: 100%; height: 350px; object-fit: cover; margin-bottom: 1.5rem; transition: var(--transition);}
.product-card:hover img { transform: scale(1.05); }
.product-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.price { color: var(--copper); font-weight: 700; font-size: 1.2rem; margin-bottom: 1.5rem; }

/* Shop Page Header */
.shop-header {
    background-color: var(--wood);
    color: #fff;
    padding: 4rem 0 2rem;
}
.shop-header h1 { font-size: 3rem; text-shadow: none; }
.shop-header p { color: rgba(255,255,255,0.7); }

/* Footer */
.footer { background-color: var(--wood); color: #fff; padding: 4rem 0 2rem; border-top: 5px solid var(--copper);}
.footer h2 { color: #fff; }
.footer p { color: rgba(255,255,255,0.7); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
