     /* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
    --cream: #F3EBE0;    /* Light cream background */
    --teal: #24565D;     /* Primary teal color */
    --brown: #6C3718;    /* Secondary brown color */
    --white: #FFFFFF;    /* Pure white */
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: #333;
}

/* Typography - Headings use Playfair Display serif font */
h1, h2, h3, h4, h5, .font-playfair {
    font-family: 'Playfair Display', serif;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
/* Background color utilities */
.bg-teal {
    background-color: var(--teal);
}

.bg-cream {
    background-color: var(--cream);
}

.bg-brown {
    background-color: var(--brown);
}

/* Text color utilities */
.text-teal {
    color: var(--teal);
}

.text-cream {
    color: var(--cream);
}

.text-brown {
    color: var(--brown);
}

/* ========================================
   BUTTON STYLES
   ======================================== */
/* Primary teal button */
.btn-teal {
    background-color: var(--teal);
    color: white;
    border: none;
}

.btn-teal:hover {
    background-color: #1a4147;
    color: white;
}

/* Secondary brown button */
.btn-brown {
    background-color: var(--brown);
    color: white;
    border: none;
}

.btn-brown:hover {
    background-color: #5a2e14;
    color: white;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
/* Navigation link styling with hover effects */
.nav-link {
    color: white;
    position: relative;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--cream);
}

/* Animated underline effect for navigation links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero-section {
    color: white;
    padding: 100px 0;
    height: 70vh;
    display: flex;
    align-items: center;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--brown);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-item {
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

/* ========================================
   MENU CARD STYLES
   ======================================== */
.menu-item:hover {
    transform: translateY(-5px);
}

/* Menu image container styling */
.menu-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hide all SVGs in menu cards and replace with background image */
.menu-image svg {
    display: none !important;
}

/* Fallback: If no image is present, show coffee.png as background */
.menu-image:not(:has(img)) {
    background-image: url('images/coffee.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure menu images are properly sized */
.menu-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.menu-category {
    scroll-margin-top: 100px;
    margin-bottom: 3rem;
}

.category-title {
    border-bottom: 2px solid var(--teal);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--teal);
    z-index: 1050;
    padding: 1.5rem;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

footer {
    background-color: var(--teal);
    color: white;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer a:hover {
    color: var(--cream);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--cream);
}

.footer-border {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

/* Menu Tab Styles */
.menu-tab-content {
    display: none;
}

.menu-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.menu-tabs .nav-link {
    color: var(--teal);
    border: 1px solid var(--teal);
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 20px;
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-tabs .nav-link:hover {
    background-color: rgba(36, 86, 93, 0.1);
}

.menu-tabs .nav-link.active {
    background-color: var(--teal);
    color: white;
    border-color: var(--teal);
}

.menu-tabs .nav-link::after {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .menu-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scroll-behavior: smooth;
    }
    
    .menu-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .menu-tabs::-webkit-scrollbar-track {
        background: rgba(36, 86, 93, 0.1);
        border-radius: 2px;
    }
    
    .menu-tabs::-webkit-scrollbar-thumb {
        background: var(--teal);
        border-radius: 2px;
    }
    
    .menu-tabs .nav-item {
        flex-shrink: 0;
        min-width: auto;
    }
    
    .menu-tabs .nav-link {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 14px;
        margin-right: 8px;
    }
}