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

:root {
    --primary-color: #8B4513;
    --primary-dark: #654321;
    --primary-light: #D2691E;
    --accent-gold: #DAA520;
    --text-dark: #2D3748;
    --text-light: #718096;
    --background: #FFFFFF;
    --background-light: #F7FAFC;
    --border-color: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    padding: 0;
    display: block;
    overflow: hidden;
    z-index: 1;
    background: #1a100a;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    will-change: transform;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.05);
    animation: heroKenBurns 18s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            105deg,
            rgba(20, 12, 6, 0.88) 0%,
            rgba(20, 12, 6, 0.72) 32%,
            rgba(20, 12, 6, 0.28) 58%,
            rgba(20, 12, 6, 0.12) 100%
        ),
        linear-gradient(
            to top,
            rgba(20, 12, 6, 0.82) 0%,
            rgba(20, 12, 6, 0.35) 38%,
            transparent 68%
        );
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    padding: 0 8vw 7vh;
    max-width: 640px;
    text-align: left;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
    letter-spacing: 0.12em;
    line-height: 1.05;
    color: #f0e2a8;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    animation: fadeInUp 1s ease;
}

.hero-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 1rem;
    background: linear-gradient(90deg, #e8d48b, transparent);
    animation: fadeInUp 1s ease 0.15s both;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.4vw, 1.65rem);
    margin-bottom: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    margin-bottom: 2rem;
    max-width: 28rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: #c9a84c;
    color: #1a100a;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #e0c56a;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image {
        animation: none;
        transform: none;
    }

    .hero-title,
    .hero-title::after,
    .hero-subtitle,
    .hero-description,
    .cta-button {
        animation: none;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    scroll-margin-top: 80px;
    position: relative;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Products Section */
.products {
    background: white;
    position: relative;
    z-index: 2;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: white;
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--background-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        height: 85vh;
        min-height: 520px;
        padding: 0;
    }

    .hero-overlay {
        background:
            linear-gradient(
                to top,
                rgba(20, 12, 6, 0.92) 0%,
                rgba(20, 12, 6, 0.55) 45%,
                rgba(20, 12, 6, 0.25) 100%
            );
    }

    .hero-content {
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0 24px 6vh;
        max-width: none;
        text-align: center;
    }

    .hero-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        object-position: center center;
    }

    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 0.08em;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}
