/* --- BRAND FONTS & COLORS --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;800&display=swap');

:root {
    --brand-orange: #FF6B35;
    --brand-dark: #2B2118;
    --brand-cream: #F9F6F0;
    --brand-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--brand-cream);
    color: var(--brand-dark);
    line-height: 1.6;
    text-align: center; /* This restores your perfect centering */
}

/* --- BASIC TYPOGRAPHY & LOGO --- */
h1, h2, h3, h4 {
    color: var(--brand-dark);
}

.brand-logo {
    width: 120px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* --- NAVIGATION BAR --- */
.top-nav {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: var(--brand-cream);
}

.top-nav a {
    color: var(--brand-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: var(--brand-orange);
}

/* --- NEW VIBRANT HERO SECTION --- */
.hero-section {
    background-color: var(--brand-orange);
    background-image: none; /* Forces the old grey gradient to disappear */
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--brand-dark);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--brand-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-button {
    background-color: var(--brand-dark); 
    color: var(--brand-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--brand-dark);
}

.hero-button:hover {
    background-color: transparent;
    color: var(--brand-dark);
}

/* --- PHILOSOPHY & PRODUCT SHOWCASE --- */
.philosophy {
    margin-top: 80px;
    padding: 0 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-showcase {
    margin-top: 50px;
    margin-bottom: 80px;
}

.product-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- CRAFT PAGE STYLES --- */
.craft-story {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.craft-story h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.craft-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- 3D FEATURE BOXES --- */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.feature-box {
    background: var(--brand-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 300px;
    flex: 1;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* --- SCROLL ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- EXPORT & B2B FORM --- */
.export-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.export-container {
    background: var(--brand-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.b2b-form input, 
.b2b-form select, 
.b2b-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.b2b-form input:focus, 
.b2b-form select:focus, 
.b2b-form textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
}

/* --- COMPLIANCE SECTION --- */
.compliance-section {
    padding: 60px 20px 100px;
    text-align: center;
}

.compliance-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.compliance-card {
    background: var(--brand-white);
    padding: 30px;
    border-radius: 20px;
    border-top: 6px solid var(--brand-orange);
    flex: 1;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- PROFESSIONAL FOOTER --- */
.site-footer {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    padding: 60px 20px 20px;
    margin-top: 40px;
    text-align: left;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
}

.footer-brand h3, .footer-links h4, .footer-contact h4 {
    color: var(--brand-orange);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: var(--brand-cream);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}/* --- MOBILE OPTIMIZATION (PREMIUM) --- */
@media (max-width: 768px) {
    /* 1. Fix the Hero Section for small screens */
    .hero-section {
        height: auto; /* Lets the content define the height on mobile instead of forcing a full screen */
        padding: 80px 20px; /* Adds perfect breathing room */
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .hero-title {
        font-size: 2.6rem; /* Prevents the massive text from breaking off the edge of the phone */
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* 2. Neatly stack the navigation menu */
    .top-nav {
        padding: 15px 0;
    }

    .top-nav a {
        display: block; /* Stacks the links vertically */
        margin: 10px 0;
        font-size: 1rem;
    }

    /* 3. Shrink massive padding inside containers for phones */
    .export-container, .feature-box, .compliance-card {
        padding: 30px 20px; 
    }

    .export-container h2, .philosophy h2, .craft-story h2 {
        font-size: 2rem; /* Scales down the big headers */
    }

    /* 4. Force columns to stack vertically */
    .features, .compliance-grid, .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .footer-brand, .footer-links, .footer-contact {
        min-width: 100%; /* Ensures footer elements take up the full width before stacking */
    }
}