@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    /* Color Palette - Updated to Kraft Brown */
    --color-kraft: #A68966;
    --color-kraft-light: #C5B08E;
    --color-gold: #D4AF37;
    --color-cream: #FDF5E6;
    --color-dark: #2A1F1A; /* Darker Kraft for contrast */
    --color-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --section-padding: 100px 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(166, 137, 102, 0.1);
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
}

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

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/spicy-salad-pecans.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 40px;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background-color: var(--color-dark);
    transform: translateY(-5px);
}

/* --- Sections --- */
section {
    padding: var(--section-padding);
}

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

.section-title h2 {
    font-size: 3rem;
    color: var(--color-kraft);
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 20px auto;
}


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

.product-card {
    background: var(--color-cream);
    border: 1px solid rgba(166, 137, 102, 0.2);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--color-dark);
}

.price {
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 15px;
    display: block;
}

/* --- About Section --- */
.about {
    background: var(--color-kraft);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: hidden;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--color-gold);
}

/* --- Footer --- */
footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 80px 20px 40px;
    text-align: center;
}

.footer-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.copy {
    margin-top: 60px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }
    nav {
        padding: 15px 20px;
    }
    .nav-links {
        display: none; /* In a real app we'd add a burger menu */
    }
}
