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

:root {
    /* Color Palette - Luxury, Vintage, Bold */
    --color-egg-nog: #F8EDC3;
    --color-mustard: #CCB369;
    --color-dust: #6F7D78;
    --color-copper: #C8721D;
    --color-garnet: #78200B;
    --color-velvet-forest: #1E3E2E;
    
    /* Semantic Colors */
    --color-primary: #1E3E2E;
    --color-secondary: #4a4a4a;
    --color-accent: #CCB369;
    --color-background: #FEFDFB;
    --spacing-unit: 1rem;
    --max-width: 1200px;

    scrollbar-color: var(--color-dust) var(--color-background);
    scrollbar-width: thin;
}

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    color: var(--color-primary);
    background-color: var(--color-background);
}

/* Header and Navigation */
header {
    border-bottom: 1px solid var(--color-velvet-forest);
    padding: 1rem 0;}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
}

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

nav ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

nav a {
    color: var(--color-velvet-forest);
    text-decoration: none;
    font-size: 1.125rem;
    position: relative;
    padding: 0.5rem 1rem;
}
nav a::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: var(--color-dust);
  opacity: 0;
  border-radius: 0.5rem;
  z-index: -1;
  transition: opacity 0.2s ease;
}

nav a:hover {
    color: var(--color-garnet);
}
nav a:hover::before {
  opacity: 0.15;
}

/* Main Content */
main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 2rem;
}

h2, h3 {
    font-family: "Lustria", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--color-velvet-forest);
    line-height: 1.1;
}

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

h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-velvet-forest);
}

h4 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-garnet);
}

p {
    color: var(--color-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 400px;
    height: 400px;
    background: var(--color-mustard);
    border-radius: 50% 50% 0 50%;
    opacity: 0.15;
    z-index: -1;
}

.tagline {
    font-size: 1.5rem;
    line-height: 1.7;
    max-width: 800px;
    font-weight: 400;
    color: var(--color-primary);
}

/* Products Section */
.products {
    padding: 4rem 0;
    position: relative;
}

.product-card {
    background: linear-gradient(135deg, var(--color-velvet-forest) 0%, var(--color-dust) 100%);
    padding: 3rem;
    border-radius: 0 60px 0 60px;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.product-card::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-mustard);
    border-radius: 50%;
    opacity: 0.3;
}

.product-content {
    position: relative;
    z-index: 1;
}

.product-card h4 {
    color: var(--color-egg-nog);
}

.product-card p {
    color: var(--color-egg-nog);
    font-size: 1.125rem;
}

.product-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-copper) 0%, var(--color-garnet) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-egg-nog);
    font-size: 0.875rem;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-info {
    margin-top: 2rem;
    padding: 3rem;
    border-radius: 60px 0 60px 0;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-mustard);
    opacity: 0.15;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -90px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--color-copper);
    border-radius: 50%;
    opacity: 0.2;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-velvet-forest);
    position: relative;
    z-index: 1;
}

.contact-info a {
    color: var(--color-garnet);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info p {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    border-top: 1px solid var(--color-velvet-forest);
    padding: 2rem 0;
    margin-top: 6rem;
}

footer p {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--color-velvet-forest);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        width: 135px;
        overflow: hidden;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .hero::before {
        width: 200px;
        height: 200px;
        top: 0;
    }

    .product-card {
        padding: 2rem;
        border-radius: 0 40px 0 40px;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image-placeholder {
        width: 300px;
        height: 225px;
        margin: 0 auto;
    }

    .contact-info {
        padding: 2rem;
        border-radius: 40px 0 40px 0;
    }
}

@media (max-width: 430px) {
    .hero::before {
        width: 150px;
        height: 150px;
        top: 6rem;
    }
}
