/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Premium Color Palette */
    --primary-red: #A80D2A;
    /* Deep Crimson */
    --primary-gold: #D4AF37;
    /* Metallic Gold */
    --gold-light: #F4C430;
    --gold-dark: #aa8c2c;
    --text-dark: #0a0a0a;
    /* Rich Black */
    --text-light: #444444;
    --bg-white: #ffffff;
    --bg-cream: #faf9f6;
    /* Off-white for section backgrounds */
    --footer-bg: #050505;

    /* Layout */
    --header-height: 90px;

    /* Effects */
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    /* Serif for elegance */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1280px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 120px 0;
}

/* Background Texture Section */
.bg-texture {
    background-color: var(--bg-cream);
    background-image: url('../assets/images/texture-bg.png');
    background-size: cover;
    background-blend-mode: multiply;
}

.bg-pattern-rice {
    background-color: var(--bg-cream);
    background-image: url('../assets/images/pattern-bg-new.png');
    background-size: 400px;
    /* Adjust size for good visibility */
    background-repeat: repeat;
    background-blend-mode: multiply;
}

.text-center {
    text-align: center;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.01);
    /* Transparent initially */
    backdrop-filter: blur(0px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    transition: var(--transition);
}

header.scrolled .navbar {
    height: 80px;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    /* Original color with shadow */
}

header.scrolled .logo img {
    height: 55px;
    filter: none;
    /* Original color on scroll */
}



.nav-links ul {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    /* White links initially */
    position: relative;
    padding: 10px 0;
}

header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #fff;
    transition: color 0.3s ease;
}

header.scrolled .hamburger {
    color: var(--text-dark);
}

.nav-links.active~.hamburger {
    color: var(--text-dark);
}

/* Common Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 2px;
    /* Sharper corners for luxury feel */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-red);
    color: #fff;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #8a0b22;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--text-dark);
}

/* Common Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: 'global foods';
    /* Watermark effect */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: -1;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Footer */
/* Footer */
footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #888;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}



/* Animations */
.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Standardized Page Banner (Like Home) */
.page-hero {
    height: 100vh;
    /* Reduced min-height if desired, but 400px is fine */
    min-height: 400px;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: -90px;
    /* Pull behind transparent header */
    padding-top: 90px;
    /* Compensate for header */
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}


/* Default State for Mobile Menu Elements */
.mobile-menu-head,
.mobile-contact-info {
    display: none;
}

/* Responsive Common */
@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .hamburger {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1001;
        width: 44px;
        height: 44px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: space-between;
        /* Distribute content */
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        padding: 100px 20px 40px;
        /* Padding for logo and bottom */
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    /* Mobile Menu Header (Logo) */
    .mobile-menu-head {
        display: block !important;
        margin-bottom: 30px;
    }

    .mobile-logo {
        height: 60px;
        width: auto;
    }

    /* Nav Items Wrapper in Mobile */
    .nav-links ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        width: 100%;
        display: flex;
        /* Ensure it's flex in mobile */
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 1.5rem;
        display: block;
    }

    /* Mobile Contact Info */
    .mobile-contact-info {
        display: block !important;
        text-align: center;
        margin-top: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 30px;
        width: 100%;
    }

    .mobile-contact-info p {
        font-size: 0.95rem;
        color: var(--text-light);
        margin-bottom: 10px;
    }

    .mobile-contact-info i {
        color: var(--primary-gold);
        margin-right: 8px;
    }

    .hamburger i {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 80px 0;
    }




}