:root {
    --color-crema: #FDFAF4;
    --color-dorado: #B8935A;
    --color-dorado-dark: #9a7b4a;
    --color-charcoal: #1A1814;
    --color-charcoal-light: #2a2824;
    --color-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    --container-width: 1200px;
    --header-height: 100px;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-dorado);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-dorado);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-dorado-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 90, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

/* Header */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: blur(0px);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header-scrolled {
    background-color: rgba(253, 250, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 147, 90, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--color-dorado);
    transition: var(--transition);
}

.header-scrolled .logo img {
    height: 60px;
}

.logo:hover img {
    transform: scale(1.1);
    border-color: var(--color-dorado-dark);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-list a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-white);
}

.header-scrolled .nav-list a {
    color: var(--color-charcoal);
}

.nav-list a:hover {
    color: var(--color-dorado) !important;
}

.nav-btn {
    padding: 0.8rem 1.5rem;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(26, 24, 20, 0.6), rgba(26, 24, 20, 0.6)), url('hero_bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.eyebrow {
    display: block;
    font-size: 1.1rem;
    color: var(--color-dorado);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(184, 147, 90, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-charcoal);
}

.product-info p {
    color: #666;
    font-size: 1rem;
}

/* About */
.about {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    text-align: center;
}

.about-container {
    max-width: 800px;
}

.about .section-title {
    color: var(--color-crema);
}

.about-content p {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

/* Contact */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-dorado);
    font-weight: 700;
}

.contact-item a, .contact-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-dorado);
}

/* Legal */
.legal-section {
    background-color: var(--color-white);
    border-top: 1px solid rgba(184, 147, 90, 0.1);
}

.legal-section .section-title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    color: #555;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-crema);
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-legal {
    font-size: 0.9rem;
    max-width: 1000px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    text-decoration: underline;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-dorado);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .nav-list {
        display: none; /* In a real app, I'd add a burger menu */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
