@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --color-navy: #0a2339;
    --color-gold: #c29b40;
    --color-gold-light: #dfc17c;
    --color-off-white: #fcfbf7;
    --color-dark-gray: #333333;
    --color-light-gray: #e5e5e5;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --container-width: 1200px;
    --section-padding: 80px 0;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--color-off-white);
    color: var(--color-dark-gray);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-navy);
}

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

ul {
    list-style: none;
}

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

/* --- Navigation --- */
header {
    background: #fcfbf7; 
    padding: 15px 0;
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

header .container {
    max-width: 95%; /* Maximized width as requested to give menus full space */
    padding: 0 40px;
}

nav {
    display: flex; /* Switched to flex for better alignment control */
    justify-content: space-between;
    align-items: center;
    position: relative; /* For hamburger alignment */
}

/* --- Hamburger Menu Styles --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: 20px; /* Reduced gap to prevent wrapping */
    flex: 1;
}

.nav-links a {
    font-size: 15px;
    font-family: var(--font-serif);
    white-space: nowrap; /* Prevents words going below */
    color: #333;
}

.logo {
    display: flex;
    justify-content: center;
    height: 110px; /* More balanced size */
    flex: 0 0 auto;
    margin: 0 30px;
}

.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-cta {
    display: flex;
    justify-content: flex-end;
}

.btn-catalog {
    background-color: #bfa05d; /* Specific gold from screenshot */
    color: white;
    padding: 12px 28px;
    font-size: 15px;
    font-family: var(--font-serif);
    text-transform: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 35, 57, 0.4); /* Subtle navy overlay */
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: 82px;
    color: white;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span.gold {
    color: #d4c094; /* The gold color for EXQUISITE from image */
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-family: var(--font-serif);
    font-style: italic;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: white;
    padding: 15px 30px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Product Grid --- */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-title h2 {
    font-size: 32px;
    white-space: nowrap;
}

.title-line {
    height: 1px;
    background: #d4c094;
    flex-grow: 1;
}

.leaf-icon {
    color: #d4c094;
    font-size: 20px;
}

.section-subtitle {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

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

.product-card {
    background: white;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 320px;
    background: #f0f0f0;
}

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

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.product-price {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-gold);
    font-weight: 600;
}

.product-actions {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--color-navy);
}

.btn-quote-sm {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

/* --- Footer --- */
footer {
    background: var(--color-navy);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p, .footer-col li {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    opacity: 0.5;
}
/* --- Media Queries (Mobile Responsiveness) --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 56px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header .container { padding: 0 20px; }
    
    .hamburger { display: flex; }

    nav {
        flex-direction: row;
        gap: 0;
        justify-content: space-between; /* Hamburger left, Logo center, CTA right */
        text-align: center;
        height: 80px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1500;
        box-shadow: 10px 0 30px rgba(0,0,0,0.05);
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 600;
        color: var(--color-navy);
        text-align: left;
        width: 100%;
    }

    /* Open Menu State */
    .nav-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }

    /* X Icon State */
    .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .logo { 
        height: 60px; 
        margin: 0;
    }

    .header-cta { display: none; } /* Hide CTA on mobile for cleaner header */

    /* Hero Responsive Refinement */
    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }

    .hero-bg {
        object-position: 85% center; /* Keep statue visible on mobile */
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero h1 { font-size: 34px; line-height: 1.2; }
    .hero p { font-size: 15px; margin-bottom: 30px; }

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

    /* Excellence in Exports Responsive Fix */
    .why-choose .product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .section-title {
        flex-direction: column;
        gap: 10px;
    }
    .section-title h2 { font-size: 24px; white-space: normal; }
    .title-line { display: none; }

    /* Stack grid sections vertically for about/artisans */
    .about-preview .container > div,
    .artisans .container > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .artisans .container > div > div:first-child {
        height: 300px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col.footer-logo { text-align: center; }
    .footer-col.footer-logo img { margin: 0 auto 20px; }
}

/* --- Subtle Animations --- */
.hero-bg {
    animation: slowZoom 15s ease-out forwards;
}

@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content {
    animation: fadeInDown 1.2s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Card Hover */
.product-card {
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.product-image img {
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
