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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #3c2415;
    background-color: #faf8f5;
    font-weight: 400;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(139, 115, 85, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #a0845c;
    z-index: 100;
}

.nav {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    color: #faf8f5;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.logo-img {
    width: 30px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #faf8f5;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4c5a9;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #d4c5a9 0%, #c4a57b 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3c2415;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #5d3a1a;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story {
    padding: 80px 0;
    background: #f5f0e8;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 32px;
}

.story-content p {
    font-size: 1.125rem;
    color: #5d3a1a;
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #e8dcc0;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.products-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 48px;
}

.products-image {
    display: flex;
    justify-content: center;
}

.products-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f5f0e8;
}

.contact h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 32px;
    text-align: center;
}

.contact-intro {
    font-size: 1.125rem;
    color: #5d3a1a;
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    line-height: 1.7;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: #e8dcc0;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #d4c5a9;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 24px;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
    color: #5d3a1a;
}

.contact-item a {
    text-decoration: none;
    color: #5d3a1a;
}

.contact-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Footer */
.footer {
    background: #3c2415;
    color: #f5f0e8;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image img {
        height: 250px;
    }

    .story-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-image img, .products-image img {
        height: 250px;
    }

    .story, .products, .contact {
        padding: 60px 0;
    }

    .story-content h2, .products-content h2, .contact h2 {
        font-size: 1.75rem;
    }

    .contact-info {
        padding: 24px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 16px;
        padding: 12px 16px;
    }

    .nav-menu {
        gap: 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .story, .products, .contact {
        padding: 48px 0;
    }

    .contact-info {
        padding: 20px;
    }
}