:root {
    --primary-color: #B38E46; /* Strong Warm Gold for Light Backgrounds */
    --primary-light: #C5A059; /* Softer Gold */
    --bg-light: #F4EFEA; /* Light Cream Latte / Warm Milk-Coffee */
    --bg-white: #FAF8F5; /* Luminous Pure Warm Off-White */
    --bg-card: #FFFFFF; /* Crisp Clean White for Cards */
    --bg-cream: #F4F0EB; /* Soft Coffee Cream */
    --text-main: #2A201C; /* Deep Dark Espresso for Premium High Contrast */
    --text-muted: #6E5D57; /* Roasted Coffee Soft Muted Brown */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFF;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 5%;
    box-shadow: 0 8px 32px rgba(42, 32, 28, 0.08);
    border-bottom: 1px solid rgba(179, 142, 70, 0.15);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1E1715; /* Rich Roasted Espresso Brown - softer than pitch black */
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color); /* Premium Gold border */
    box-shadow: 0 4px 15px rgba(179, 142, 70, 0.15); /* Warm subtle golden glow */
    transition: var(--transition-fast);
}

.logo:hover {
    transform: scale(1.06);
    border-color: var(--primary-light);
    box-shadow: 0 6px 20px rgba(179, 142, 70, 0.25);
}

.logo-img {
    height: 36px;
    width: 36px;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.05);
    transition: var(--transition-fast);
}

.logo-img-footer {
    height: 64px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.05);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    padding: 120px 5% 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text .highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: visible;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 24px;
    mix-blend-mode: normal;
    border: 2px solid rgba(179, 142, 70, 0.2);
    box-shadow: 0 20px 45px rgba(42, 32, 28, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

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

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-content .btn {
    margin-top: 10px;
}

/* Products Section */
.products {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition-slow);
    box-shadow: 0 10px 30px rgba(42, 32, 28, 0.05);
    border: 1px solid rgba(179, 142, 70, 0.12);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(42, 32, 28, 0.12), 0 0 15px rgba(179, 142, 70, 0.1);
    border-color: rgba(179, 142, 70, 0.3);
}

.card-img-container {
    padding: 25px;
    text-align: center;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    overflow: hidden;
    height: 320px;
}

.product-img {
    width: auto;
    height: 100%;
    max-height: 270px;
    object-fit: contain;
    mix-blend-mode: normal;
    transition: var(--transition-slow);
}

.product-card:hover .product-img {
    transform: scale(1.08) translateY(-8px);
}

.card-content {
    padding: 30px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price {
    display: inline-block;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(42, 32, 28, 0.08);
    border: 1px solid rgba(179, 142, 70, 0.15);
}

.contact-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.info-item svg {
    color: var(--primary-color);
}

.info-item span {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

footer {
    background-color: #1C1512; /* Premium Grounded Espresso Dark Footer */
    color: #FAF8F5;
    padding: 40px 5%;
    text-align: center;
}

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

.footer-content .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.footer-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container,
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 100px;
    }

    .contact-container {
        padding: 40px 20px;
    }
}
