:root {
    --color-primary: #3d441e;
    /* PANTONE 5747 C */
    --color-primary-dark: #2a3015;
    /* Darker shade of primary */
    --color-secondary: #bd9865;
    /* PANTONE 15-0927 TPX Pale Gold */
    --color-accent: #673b6f;
    /* PANTONE 520 XGC */
    --color-text: #000000;
    /* Black */
    --color-text-light: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #FAFAF7;
    /* Very light beige for background alt */

    --font-sans: 'Overpass', sans-serif;
    --font-serif: 'Overpass', sans-serif;
    /* Using Overpass for everything as requested */

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --border-radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 10px 10px -5px rgb(0 0 0 / 0.04);
    --shadow-glow: 0 0 15px rgba(61, 68, 30, 0.3);

    --container-width: 1350px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: 0 4px 14px 0 rgba(61, 68, 30, 0.39);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 68, 30, 0.23);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background: var(--color-primary-dark);
    /* Darker green on scroll */
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 64px;
}

.navbar.scrolled .logo {
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-light);
    /* White text */
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    /* Brown/Gold underline */
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--color-secondary);
    /* Brown/Gold text on hover */
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content-center {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-text-box h2 {
    font-size: 2.8rem;
    line-height: 1.4;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-weight: 300;
    text-shadow: none;
    margin: 0 auto 1.2rem;
    max-width: 1000px;
}

.hero-text-box p {
    font-size: 2.8rem;
    color: var(--color-text-light);
    font-family: var(--font-serif);
    font-weight: 300;
    text-shadow: none;
    margin: 0 auto;
    max-width: 1000px;
}

/* Utilities */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subheading {
    text-align: center;
    color: #6b7280;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header Banner (used on inner pages like About Us) */
.page-header-banner {
    background-color: var(--color-primary-dark);
    padding: 6rem 2rem 3rem;
    text-align: center;
}

.page-header-banner h1 {
    color: var(--color-text-light);
    font-size: 2.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* About Section */
.about-split {
    display: grid;
    grid-template-columns: 30fr 70fr;
    min-height: 520px;
    margin-bottom: 0;
}

.about-split.bg-alt {
    background-color: var(--color-bg-alt);
}

.bg-alt-section {
    background-color: var(--color-bg-alt);
    padding: 4rem 0 2rem;
}

.about-split.reverse {
    grid-template-columns: 70fr 30fr;
}

.about-split-image {
    overflow: hidden;
    display: flex;
}

.about-split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
}

.about-split-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.about-split-text p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-overview {
    max-width: 900px;
    margin: 0 auto 6rem auto;
}

.about-overview h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    color: var(--color-text);
    text-align: center;
    /* keep header centered */
}

.about-overview p {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
    /* paragraphs left aligned */
}

.vision-mission-clean {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto 6rem auto;
    gap: 4rem;
}

.vm-text {
    flex: 1;
}

.vm-text:first-child {
    text-align: left;
}

.vm-text:last-child {
    text-align: left;
}

.vm-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-text);
}

.vm-text p {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.6;
}

.vm-divider {
    width: 2px;
    height: 150px;
    background-color: var(--color-primary-dark);
}

/* Our Community */
.community-section {
    margin-top: 6rem;
    margin-bottom: 6rem;
    text-align: center;
}

.community-header {
    margin: 0 auto 3rem auto;
}

.community-header h2 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-sans);
    margin-bottom: 1rem;
    color: var(--color-text);
}

.community-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.community-header p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.community-image {
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.community-image img {
    width: 100%;
    height: auto;
    display: block;
}

.community-footer-text {
    margin-bottom: 1rem;
}

.community-footer-text p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.8;
}

.vitatrade-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo-item img {
    height: 150px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

/* Our Food Our Cuisine */
.cuisine-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cuisine-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.cuisine-header p {
    font-size: 1.25rem;
    color: var(--color-text);
    line-height: 1.6;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.cuisine-item {
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

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

.cuisine-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.cuisine-item h4 {
    font-size: 1.25rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.cuisine-item:hover h4 {
    color: var(--color-secondary);
}

/* Food Slideshow */
.food-slideshow {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
}

.food-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.food-slide.active {
    opacity: 1;
}

.food-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.food-slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-slide-arrow:hover {
    background: rgba(0,0,0,0.7);
}

.food-slide-prev { left: 12px; }
.food-slide-next { right: 12px; }

/* Dots */
.food-slide-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.food-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.food-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Delivery Section */
.delivery-center-section {
    padding: 6rem 0 3.5rem 0;
    background-color: #faf9f5;
    /* Light cream background */
    display: flex;
    justify-content: center;
}

.delivery-center-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.delivery-title {
    font-size: 2.2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.delivery-desc {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.delivery-apps-centered {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.app-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    /* For the box shadow to match SVG borders */
    transition: opacity 0.2s ease;
}

.app-logo-link:hover {
    opacity: 0.8;
}

.delivery-app-img {
    height: 140px;
    /* Increased logo size */
    width: auto;
    display: block;
    border-radius: 8px;
    /* Matching the link wrapping */
    margin-bottom: 0;
}

.delivery-order-text {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    text-decoration: underline;
}

.platform-buttons .btn {
    min-width: 200px;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background-color: #ffffff;
    text-align: center;
}

.partners-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-title {
    font-size: 2.5rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.partners-desc {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.partners-logos-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.partner-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-box img {
    height: 160px;
    width: auto;
    object-fit: contain;
    display: block;
}

.partners-footer-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: #000;
}

/* Locations Section */
.locations-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.locations-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-item {
    margin-bottom: 5rem;
}

.location-name {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 1.5rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.location-image-col {
    width: 100%;
}

.location-img-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.2rem;
    font-family: var(--font-sans);
}

.location-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.location-info-col {
    font-family: var(--font-sans);
    color: #374151;
    /* Dark gray */
}

.location-address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-links-group {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.location-link {
    color: #3b82f6;
    /* Blue like in the design */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.location-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.location-hours {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.location-hours strong {
    font-weight: 600;
    color: #111827;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0 3rem;
    background-color: #faf9f5;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    margin-bottom: 2.5rem;
}

.contact-main-title {
    font-size: 2rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.15rem;
    color: #374151;
    line-height: 1.6;
}

/* Connect With Us Layout */
.connect-with-us-layout {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cwu-group {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.cwu-left,
.cwu-right {
    justify-content: center;
}

.cwu-divider {
    display: none;
}

.cwu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease;
    width: 180px;
}

.cwu-card:hover {
    transform: translateY(-3px);
}

.cwu-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.line-icon {
    background-color: #00B900;
}

.email-icon {
    background-color: #333333;
}

.facebook-icon {
    background-color: #1877F2;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.cwu-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 0.25rem;
    display: block;
}

.cwu-handle {
    font-family: var(--font-sans);
    color: #6b7280;
    display: block;
}

@media (max-width: 900px) {
    .connect-with-us-layout {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .cwu-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cwu-left,
    .cwu-right {
        justify-content: center;
    }

    .cwu-divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #000000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand p {
    margin-left: 17px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #374151;
}

.footer-quick-links h3 {
    color: #000;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #000;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 1.15rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(3px);
}

.small-heading {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.contact-block {
    margin-bottom: 2rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #000;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: opacity 0.2s ease;
}

.footer-contact-link:hover {
    opacity: 0.7;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons {
    display: flex;
    gap: 1.25rem;
}

.footer-social-icons a {
    color: #000;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-social-icons a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text-box h2 {
        font-size: 2.25rem;
    }

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

    .about-split-image img {
        height: 300px;
    }

    .about-split-text {
        padding: 3rem 2rem;
    }

    .about-split-text h2 {
        font-size: 1.75rem;
    }

    .about-grid,
    .contact-grid,
    .footer-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero-text-box h2 {
        font-size: 1.75rem;
    }

    .vision-mission-clean {
        flex-direction: column;
        gap: 2rem;
    }

    .vm-divider {
        width: 100% !important;
        height: 2px !important;
    }

    .nav-links {
        display: none;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}