/* =========================================
   GLOBAL VARIABLES (Brand Colors & Fonts)
   ========================================= */
:root {
    /* Brand Colors */
    --color-white: #FFFFFF;
    --color-green: #0E4825;
    --color-orange: #FF6600;
    
    /* Utility Colors for Web */
    --color-text-dark: #1A1A1A; /* Better readability than pure black */
    --color-bg-light: #F8F9FA;  /* Off-white for section contrast */
    
    /* Brand Fonts */
    --font-core: 'Monstrosolid', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* =========================================
   CUSTOM FONT IMPORTS
   ========================================= */
@font-face {
    font-family: 'Monstrosolid';
    src: url('../assets/fonts/Monstrosolid.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Forces browser to show system font until yours loads (Speed Hack) */
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/fonts/Montserrat.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   RIGOROUS CSS RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   BASE TYPOGRAPHY & LAYOUT
   ========================================= */
body {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-family: var(--font-secondary); /* Montserrat used for body text readability */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Makes text look sharper on Mac/iOS */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-core); /* Monstrosolid used for all headings */
    color: var(--color-green);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase; /* Often works well for strong core fonts, adjust if needed */
}

a {
    text-decoration: none;
    color: var(--color-green);
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--color-orange);
}

/* =========================================
   NAVIGATION BAR
   ========================================= */
.navbar {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-core);
    font-size: 1.8rem;
    color: var(--color-green);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--color-text-dark);
}

.nav-link:hover {
    color: var(--color-orange);
}

/* Mobile Menu Icon */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-green);
    transition: all 0.3s ease;
}

/* =========================================
   GLOBAL FOOTER
   ========================================= */
.footer {
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 3rem 2rem 1rem;
    margin-top: auto; /* Pushes footer to bottom if page content is short */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--color-white);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* =========================================
   UI COMPONENTS
   ========================================= */
.btn-primary {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-family: var(--font-core);
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

/* =========================================
   HOMEPAGE: HERO SECTION
   ========================================= */
.hero {
    /* The linear-gradient adds a dark green overlay so your text is easy to read */
    background-image: linear-gradient(rgba(14, 72, 37, 0.8), rgba(0, 0, 0, 0.5)), url('../images/hero/main-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    padding: 6rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white); /* Changed to white to pop against the image */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-white); /* Changed to white to pop against the image */
}

.hero .contact-subtext {
    font-size: 0.9rem;
    margin-top: 1rem; /* Pushes it just slightly below the button */
    margin-bottom: 0;
    color: var(--color-white);
    opacity: 0.8; /* Fades it slightly so it doesn't compete with the button */
    letter-spacing: 0.5px;
}

/* =========================================
   HOMEPAGE: BRAND STORY
   ========================================= */
.brand-story {
    background-color: var(--color-white);
}

.brand-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.brand-story p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================================
   HOMEPAGE: MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 4rem 1rem;
        min-height: 50vh;
    }
    .brand-story h2 {
        font-size: 2rem;
    }
}

/* =========================================
   MENU PAGE: HEADER & PDF
   ========================================= */
.menu-header {
    background-color: var(--color-bg-light);
    border-bottom: 2px solid var(--color-green);
}

.menu-header h1 {
    font-size: 3rem;
}

.menu-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* =========================================
   MENU PAGE: FOOD GRID
   ========================================= */
.menu-showcase {
    background-color: var(--color-white);
}

.menu-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.food-card {
    background-color: var(--color-bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-image-placeholder {
    background-color: var(--color-green);
    color: var(--color-white);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-core);
    text-transform: uppercase;
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.food-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1rem 0.5rem;
}

.food-card p {
    margin: 0 1rem 1.5rem;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

/* =========================================
   MENU PAGE: MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .food-grid {
        grid-template-columns: 1fr; /* Stacks cards vertically on phones */
        gap: 1.5rem;
    }
    
    .menu-header h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   TEAM PAGE
   ========================================= */
.team-header {
    background-color: var(--color-bg-light);
    border-bottom: 2px solid var(--color-green);
    text-align: center;
}

.team-header h1 {
    font-size: 3rem;
}

.team-header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.team-showcase {
    background-color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--color-white);
    text-align: center;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    padding-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.team-image-placeholder {
    background-color: var(--color-green);
    color: var(--color-white);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-core);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 1.5rem;
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.team-role {
    color: var(--color-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    padding: 0 1.5rem;
    line-height: 1.5;
}

/* =========================================
   TEAM PAGE: MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    .team-grid {
        gap: 1.5rem;
    }
    
    .team-header h1 {
        font-size: 2.5rem;
    }
}