/* ========================================================
   Ben's Brick Oven Pizza Franchise — Shared Stylesheet
   https://bestpizzafranchise.net/styles.css
   ======================================================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background-color: #fefefe;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #b22234; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #8b1a29; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: #1a1a1a; line-height: 1.25; }
h1 { font-size: 2.75rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
p { margin-bottom: 1.25rem; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section--alt { background-color: #faf6f0; }
.section--dark { background-color: #1a1a1a; color: #f0ece4; }
.section--dark h2, .section--dark h3 { color: #f0ece4; }

/* HEADER / NAV */
.site-header {
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.site-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #f0ece4;
    padding: 1rem 0;
    white-space: nowrap;
}
.site-logo span { color: #e85d40; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #f0ece4; margin: 5px 0; transition: 0.3s; }
.main-nav ul { display: flex; list-style: none; gap: 0; }
.main-nav a {
    display: block;
    color: #ccc;
    padding: 1.25rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s, background 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(232,93,64,0.15); }

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 50%, #1a1a1a 100%);
    color: #f0ece4;
    padding: 5rem 0 4rem;
    text-align: center;
}
.hero h1 { color: #f0ece4; margin-bottom: 1.5rem; }
.hero h1 span { color: #e85d40; }
.hero .subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 2rem;
    color: #ccc;
    line-height: 1.8;
}
.hero .cta-btn {
    display: inline-block;
    background: #e85d40;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.2s;
}
.hero .cta-btn:hover { background: #d14a30; color: #fff; transform: translateY(-2px); }

/* AWARDS BAR */
.awards-bar { background: #f0ece4; padding: 2rem 0; text-align: center; }
.awards-bar h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 1.25rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.awards-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.award-item {
    background: #fff;
    border: 1px solid #e0d8cc;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

/* CONTENT BLOCKS */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.highlight-box {
    background: #fff;
    border-left: 4px solid #e85d40;
    padding: 1.5rem 2rem;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}
.highlight-box h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: #e85d40; }

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #e85d40, #c94428);
    color: #fff;
    text-align: center;
    padding: 3.5rem 0;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .cta-btn {
    display: inline-block;
    background: #fff;
    color: #e85d40;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s, transform 0.2s;
}
.cta-section .cta-btn:hover { background: #f0ece4; transform: translateY(-2px); }

/* FOOTER */
.site-footer {
    background: #1a1a1a;
    color: #999;
    padding: 3rem 0 2rem;
    font-size: 0.9rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { color: #f0ece4; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-brand span { color: #e85d40; }
.site-footer h4 { color: #f0ece4; font-size: 0.95rem; margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.4rem; }
.site-footer ul a { color: #999; font-size: 0.85rem; }
.site-footer ul a:hover { color: #e85d40; }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: #666; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #e85d40; }

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero { padding: 3rem 0 2.5rem; }
    .hero h1 { font-size: 2rem; }
    .hero .subtitle { font-size: 1.05rem; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #1a1a1a; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; }
    .main-nav a { padding: 1rem 1.5rem; border-top: 1px solid #333; }
    .awards-list { flex-direction: column; align-items: center; }
}
