/* Import Classic Serif Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@400;700&display=swap');

/* Basic styles for the whole site */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F4C430;
    background-image: url('https://www.transparenttextures.com/patterns/cardboard-flat.png');
    color: #111;
}

/* Styles for the main content container - THE MENU CARD LOOK */
.container {
    width: 90%;
    max-width: 960px;
    margin: 40px auto;
    padding: 40px;
    background-color: #faf8ef; /* Vintage Cream / Off-White */
    border: 4px double #000000; /* Classic Double Border */
    /* Hard, distinct shadow instead of a blurry one */
    box-shadow: 12px 12px 0px #000000;
}

/* Hero Section Styling */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('ImageSource/Pastrami.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid #000;
}

.hero-content {
    text-align: center;
    border: 4px solid #F4C430; /* Gold Border box inside hero */
    padding: 20px 40px;
    background-color: rgba(0,0,0,0.6);
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5em;
    color: #F4C430;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-section p {
    font-family: 'Lato', sans-serif;
    color: #fff;
    font-weight: bold;
    letter-spacing: 4px;
    margin-top: 10px;
}

/* Navigation */
nav {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 4px solid #F4C430;
}

    nav ul {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        nav ul li {
            display: inline-block;
            margin: 0 20px;
        }

            nav ul li a {
                color: #F4C430;
                text-decoration: none;
                font-family: 'Playfair Display', serif;
                font-weight: 900;
                letter-spacing: 1px;
                text-transform: uppercase;
                font-size: 1.1em;
                padding-bottom: 2px;
            }

                nav ul li a:hover {
                    color: #fff;
                    border-bottom: 2px solid #fff;
                }

/* TYPOGRAPHY */
h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #000;
    text-transform: uppercase;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
}

    .menu-header h1 {
        font-size: 3em;
        margin-bottom: 10px;
        border-bottom: 4px solid #F4C430;
        display: inline-block;
    }

.tagline {
    font-style: italic;
    color: #666;
    font-size: 1.2em;
}

/* MENU LAYOUT - Newspaper Columns */
.menu-columns {
    /* This splits the content into 2 columns on screens wider than 768px */
    column-count: 2;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .menu-columns {
        column-count: 1;
    }
}

.menu-section {
    /* Prevents a menu section from getting chopped in half at bottom of a column */
    break-inside: avoid;
    margin-bottom: 30px;
}

h2 {
    text-align: center;
    font-size: 1.5em;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Menu Item Styling */
.container p {
    line-height: 1.6;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc; /* Dotted separator */
    padding-bottom: 10px;
}

    .container p > strong {
        color: #a30000; /* Dark Red for item names to pop against black/cream */
        font-family: 'Playfair Display', serif;
        font-size: 1.2em;
    }

.menu-description {
    font-style: italic;
    background-color: #F4C430; /* Highlight header descriptions */
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    display: inline-block;
    border-radius: 3px;
}

/* Home Page Specifics */
.home-container {
    text-align: center;
}

.intro-text {
    font-size: 1.3em;
    font-style: italic;
    border: none !important;
}

/* Vintage CTA Button */
.cta-button {
    display: inline-block;
    background-color: transparent;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border: 3px solid #000;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

    .cta-button:hover {
        background-color: #000;
        color: #F4C430;
        box-shadow: 5px 5px 0px #F4C430; /* Fun shadow pop */
    }
