/* ===== CateringWithMoes.com Styles ===== */
:root {
    --red: #C8102E;
    --orange: #F7941D;
    --yellow: #FDB913;
    --turquoise: #00A79D;
    --charcoal: #2a2a2a;
    --light-bg: #faf9f7;
    --white: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

a { color: var(--orange); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--red); }

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

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

/* ===== Header ===== */
header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.site-logo { height: 50px; }

nav { display: flex; align-items: center; gap: 8px; }
nav a {
    color: #444;
    font-weight: 600;
    font-size: 0.88em;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
nav a:hover, nav a.active { color: var(--charcoal); background: rgba(0,0,0,0.05); }
nav .nav-cta {
    background: var(--orange);
    color: white !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 800;
    margin-left: 8px;
}
nav .nav-cta:hover { background: var(--red); }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--charcoal);
    font-size: 1.8em;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--charcoal);
    padding: 15px 30px 25px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    color: #ccc;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    font-size: 0.95em;
}
.mobile-nav a:hover { color: white; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}
.btn-orange { background: var(--orange); color: white; }
.btn-orange:hover { background: var(--red); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.3); }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #a00d25; color: white; transform: translateY(-2px); }
.btn-turquoise { background: var(--turquoise); color: white; }
.btn-turquoise:hover { background: #008a82; color: white; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: white; color: var(--charcoal); }
.btn-charcoal { background: var(--charcoal); color: white; }
.btn-charcoal:hover { background: #444; color: white; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,42,42,0.85) 0%, rgba(42,42,42,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 30px;
}
.hero h1 {
    font-size: 3.5em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 span { color: var(--orange); }
.hero p {
    font-size: 1.25em;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== Page Hero (smaller) ===== */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,42,42,0.85) 0%, rgba(42,42,42,0.6) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 60px 30px;
}
.page-hero h1 { font-size: 2.8em; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.page-hero p { font-size: 1.15em; opacity: 0.9; }

/* ===== Section Styles ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--charcoal); color: white; }
.section-white { background: white; }
.section-light { background: var(--light-bg); }

.section-header { text-align: center; margin-bottom: 55px; }
.section-header h2 { font-size: 2.4em; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 span { color: var(--orange); }
.section-header p { font-size: 1.1em; color: #666; max-width: 650px; margin: 0 auto; }
.section-dark .section-header p { color: #bbb; }

/* ===== Cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.4em; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.card-body p { color: #666; margin-bottom: 18px; font-size: 0.95em; }
.card-icon { font-size: 2.5em; margin-bottom: 15px; }

/* ===== Event Type Cards (homepage) ===== */
.event-card {
    background: white;
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--orange);
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.event-card .icon { font-size: 3em; margin-bottom: 15px; }
.event-card h3 { font-size: 1.3em; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; }
.event-card p { color: #666; font-size: 0.92em; margin-bottom: 18px; }

/* ===== Stats Bar ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--orange);
    color: white;
    text-align: center;
}
.stat-item { padding: 35px 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 2.8em; font-weight: 900; display: block; }
.stat-label { font-size: 0.9em; font-weight: 600; text-transform: uppercase; opacity: 0.9; }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}
.testimonial::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5em;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}
.testimonial p { font-style: italic; margin-bottom: 15px; position: relative; z-index: 1; }
.testimonial .author { font-weight: 700; color: var(--orange); font-size: 0.9em; }

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    color: white;
    text-align: center;
    padding: 70px 30px;
}
.cta-banner h2 { font-size: 2.4em; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.cta-banner p { font-size: 1.15em; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.95; }

/* ===== Feature List ===== */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { font-size: 2em; flex-shrink: 0; }
.feature-text h3 { font-size: 1.15em; font-weight: 800; margin-bottom: 6px; text-transform: uppercase; }
.feature-text p { color: #666; font-size: 0.92em; }

/* ===== Packages / Pricing ===== */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.package-card.featured { border: 3px solid var(--orange); transform: scale(1.03); }
.package-card.featured .package-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    padding: 6px 24px;
    font-weight: 800;
    font-size: 0.8em;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
}
.package-header { padding: 35px 25px 20px; }
.package-header h3 { font-size: 1.6em; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
.package-header .price { font-size: 1.1em; color: var(--orange); font-weight: 700; }
.package-body { padding: 0 25px 30px; }
.package-body ul { list-style: none; text-align: left; }
.package-body li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 0.93em; }
.package-body li::before { content: '✓ '; color: var(--turquoise); font-weight: 700; }
.package-footer { padding: 0 25px 35px; }

/* ===== Menu Section ===== */
.menu-category { margin-bottom: 50px; }
.menu-category h3 {
    font-size: 1.6em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.menu-item {
    background: white;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.menu-item h4 { font-size: 1.1em; font-weight: 800; margin-bottom: 6px; }
.menu-item p { color: #666; font-size: 0.9em; }
.menu-item .serves { color: var(--turquoise); font-weight: 700; font-size: 0.85em; margin-top: 8px; }

/* ===== Locations ===== */
.market-tabs { background: white; padding: 25px 40px; position: sticky; top: 75px; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.market-tabs-inner { max-width: 1400px; margin: 0 auto; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.market-tab { padding: 10px 22px; border: 2px solid #e0e0e0; border-radius: 30px; background: white; color: var(--charcoal); font-weight: 700; text-transform: uppercase; font-size: 0.82em; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.market-tab:hover { border-color: var(--orange); color: var(--orange); }
.market-tab.active { background: var(--orange); border-color: var(--orange); color: white; }

.locations-grid { max-width: 1400px; margin: 0 auto; padding: 50px 40px; }
.market-section { margin-bottom: 55px; }
.market-header { font-size: 2em; font-weight: 900; color: var(--charcoal); text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.market-count { font-size: 0.45em; font-weight: 600; opacity: 0.5; }

.stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.store-card { background: white; padding: 25px; border-radius: 12px; box-shadow: 0 3px 12px rgba(0,0,0,0.07); transition: all 0.3s; }
.store-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.13); }
.store-name { font-family: 'Montserrat', sans-serif; font-size: 1.25em; font-weight: 800; margin-bottom: 8px; }
.store-name-link { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 3px; }
.store-name-link:hover { color: var(--orange); }
.store-address { color: #666; margin-bottom: 6px; font-size: 0.93em; line-height: 1.5; }
.store-phone { color: var(--orange); font-weight: 700; text-decoration: none; display: block; margin-bottom: 8px; }
.store-phone:hover { color: var(--red); }
.store-hours { font-size: 0.83em; color: #888; margin-bottom: 14px; padding-top: 10px; border-top: 1px solid #eee; }
.store-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.store-btn { flex: 1; min-width: 115px; padding: 10px 14px; border-radius: 8px; text-decoration: none; text-align: center; font-weight: 700; font-size: 0.8em; text-transform: uppercase; transition: all 0.3s; }
.store-btn-catering { background: var(--orange); color: white; }
.store-btn-catering:hover { background: var(--red); }
.store-btn-directions { background: #f0f0f0; color: var(--charcoal); }
.store-btn-directions:hover { background: var(--charcoal); color: white; }

.search-bar { max-width: 1400px; margin: 0 auto; padding: 30px 40px 0; }
.search-input { width: 100%; max-width: 500px; padding: 14px 20px; border: 2px solid #e0e0e0; border-radius: 30px; font-size: 1em; font-family: inherit; transition: border-color 0.3s; }
.search-input:focus { border-color: var(--orange); outline: none; }

/* ===== Form ===== */
.form-section { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.93em; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== Two Column Layout ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-text h2 { font-size: 2.2em; font-weight: 900; text-transform: uppercase; margin-bottom: 18px; }
.two-col-text h2 span { color: var(--orange); }
.two-col-text p { color: #555; margin-bottom: 15px; font-size: 1.02em; }
.two-col-img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.two-col-img img { width: 100%; display: block; }

/* ===== Footer ===== */
footer { background: var(--charcoal); color: #aaa; padding: 60px 0 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 45px; margin-bottom: 15px; }
.footer-about { font-size: 0.88em; line-height: 1.6; }
.footer-col h3 { color: white; font-size: 1em; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; font-size: 0.88em; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { text-align: center; padding: 30px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85em; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .package-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
    .package-card.featured { transform: none; }
    .two-col { grid-template-columns: 1fr; gap: 35px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.2em; }
    .hero p { font-size: 1.05em; }
    .page-hero h1 { font-size: 2em; }
    .section { padding: 55px 0; }
    .section-header h2 { font-size: 1.8em; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
    .card-grid-3, .card-grid-4, .card-grid { grid-template-columns: 1fr; }
    .stores-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .market-tabs { padding: 15px 20px; }
    .locations-grid { padding: 30px 20px; }
}
