/* 
Design Philosophy: Military Heritage Aesthetic
- Movement: Vintage Military Americana
- Core Principles: Bold typography, structured layouts, authentic textures, patriotic restraint
- Color Philosophy: Army green (#4A5D3F, #5C6E4E) and black (#1a1a1a) evoke military uniforms and equipment
- Layout: Strong grid-based sections with clear hierarchy, reminiscent of military organization
- Signature Elements: Stencil-style typography, star motifs, weathered textures
- Typography: Bebas Neue for headers (military stencil feel), Oswald for subheadings, Roboto for body
*/

:root {
    --army-green: #4A5D3F;
    --army-green-light: #5C6E4E;
    --army-green-dark: #3A4D2F;
    --black: #1a1a1a;
    --off-white: #f5f5f0;
    --cream: #e8e6d9;
    --brown: #8B7355;
    --red: #8B2E2E;
    --gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--off-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--black);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--army-green-light);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--army-green-light);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--off-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.5), rgba(74, 93, 63, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--off-white);
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-stars {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 10px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--army-green);
    color: var(--off-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 3px solid var(--off-white);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--off-white);
    color: var(--army-green);
    border-color: var(--army-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 5px;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--off-white);
}

.section-divider {
    width: 100px;
    height: 4px;
    background-color: var(--army-green);
    margin: 0 auto 20px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '★';
    position: absolute;
    top: -8px;
    color: var(--army-green);
    font-size: 20px;
}

.section-divider::before {
    left: -30px;
}

.section-divider::after {
    right: -30px;
}

.section-divider.light {
    background-color: var(--off-white);
}

.section-divider.light::before,
.section-divider.light::after {
    color: var(--off-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    font-style: italic;
}

/* Menu Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.menu-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-image img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--army-green);
    color: white;
    padding: 5px 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 3px;
}

.menu-badge.hot {
    background-color: var(--red);
}

.menu-badge.special {
    background-color: var(--gold);
    color: var(--black);
}

.menu-info {
    padding: 25px;
}

.menu-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.menu-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--army-green);
    font-weight: 600;
}

.menu-price .size {
    color: var(--black);
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.schedule-card {
    background-color: white;
    border-left: 5px solid var(--army-green);
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

.schedule-card.weekend {
    border-left-color: var(--gold);
}

.schedule-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--army-green);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.schedule-card.weekend .schedule-day {
    color: var(--gold);
}

.schedule-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 10px;
}

.schedule-location,
.schedule-time {
    color: #666;
    margin: 5px 0;
    font-size: 1rem;
}

.schedule-note {
    margin-top: 50px;
    padding: 25px;
    background-color: var(--army-green-dark);
    color: var(--off-white);
    border-radius: 5px;
    text-align: center;
}

.schedule-note strong {
    color: var(--gold);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-image: url('../images/about-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--off-white);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(74, 93, 63, 0.3);
    border: 2px solid var(--army-green-light);
    border-radius: 5px;
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.value-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--off-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--cream);
    font-size: 1rem;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3,
.social-links h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-info p,
.social-links p {
    color: #666;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--black);
    margin: 10px 0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background-color: var(--army-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--off-white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 10px;
}

.footer p {
    margin: 5px 0;
}

.footer-tagline {
    font-style: italic;
    color: var(--army-green-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .menu-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .about-text p {
        text-align: left;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
