/* Brighton Pizzeria — fast pizza guide theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --accent: #f59e0b;
    --secondary: #1c1917;
    --text: #292524;
    --muted: #78716c;
    --bg: #fffbf7;
    --white: #ffffff;
    --cream: #fff7ed;
    --radius: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 14px rgba(0,0,0,.08);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.75; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--secondary); line-height: 1.3; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm); border-bottom: 1px solid #fde8e8;
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 68px; gap: 12px; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.logo img { width: 32px; height: 32px; border-radius: 6px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.nav-link { font-size: .88rem; font-weight: 500; color: var(--muted); }
.nav-link:hover { color: var(--primary); }

.hero {
    padding: 118px 0 60px;
    background: linear-gradient(135deg, #fff7ed 0%, #fee2e2 45%, #fff 100%);
}
.hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.hero-badge {
    display: inline-block; background: #fff; color: #9a3412;
    padding: .35rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
    border: 1px solid #fed7aa; margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(1.85rem, 4vw, 2.7rem); font-weight: 800; margin-bottom: .9rem; }
.hero p { font-size: 1.08rem; color: var(--muted); margin-bottom: 1.5rem; }
.hero-btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; padding: .68rem 1.35rem;
    font-weight: 600; font-size: .9rem; border-radius: var(--radius); transition: all .2s;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(220,38,38,.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: #fff; border: 1px solid #e7e5e4; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.section { padding: 3.5rem 0; }
.section-white { background: var(--white); }
.section-title { font-size: 1.95rem; text-align: center; margin-bottom: .45rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 2.2rem; }

.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.15rem; }
.guide-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid #f5f5f4; box-shadow: var(--shadow-sm); transition: all .25s;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #fecaca; }
.guide-card-body { padding: 1.1rem 1.2rem 1.2rem; }
.guide-card .icon { font-size: 1.5rem; margin-bottom: .35rem; }
.guide-card h3 { font-size: .98rem; margin-bottom: .3rem; }
.guide-card p { font-size: .84rem; color: var(--muted); }

.page-hero { padding: 98px 0 28px; background: linear-gradient(180deg, #fff7ed, var(--bg)); }
.page-hero h1 { font-size: clamp(1.55rem, 3.5vw, 2.15rem); margin-bottom: .45rem; }
.page-hero .lead { color: var(--muted); font-size: 1.03rem; max-width: 640px; }
.breadcrumb { padding: 12px 0; font-size: .84rem; color: var(--muted); }
.breadcrumb a { color: var(--primary); }

.article-wrap { padding: 1.5rem 0 3rem; }
.article {
    background: var(--white); border-radius: var(--radius); padding: 1.85rem 2rem;
    border: 1px solid #f5f5f4; box-shadow: var(--shadow-sm);
}
.article-hero { margin: 0 0 1.5rem; border-radius: var(--radius); overflow: hidden; }
.article-hero img { width: 100%; max-height: 340px; object-fit: cover; }
.article h2 { font-size: 1.3rem; margin: 1.6rem 0 .65rem; color: var(--primary-dark); }
.article h3 { font-size: 1.08rem; margin: 1.2rem 0 .45rem; }
.article p, .article li { color: #44403c; margin-bottom: .95rem; font-size: .96rem; }
.article ul, .article ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article a { color: var(--primary); font-weight: 500; }
.article a:hover { text-decoration: underline; }
.article img { margin: 1.1rem auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

.ad-slot { padding: 1.1rem 0; text-align: center; }
.ad-slot--incontent { margin: 1.25rem 0; padding: .75rem 0; background: var(--cream); border-radius: var(--radius); }

.faq-section { padding: 3.5rem 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid #f5f5f4; border-radius: var(--radius); margin-bottom: .7rem;
    padding: 1rem 1.15rem; background: var(--bg);
}
.faq-item h3 { font-size: .98rem; margin-bottom: .35rem; }
.faq-item p { font-size: .88rem; color: var(--muted); margin: 0; }

.related { padding: 2.5rem 0 3rem; }
.related h2 { font-size: 1.25rem; margin-bottom: .9rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .7rem; }
.related-link {
    display: block; background: var(--white); padding: .85rem 1rem;
    border-radius: var(--radius); border: 1px solid #e7e5e4; font-size: .86rem; font-weight: 500;
}
.related-link:hover { border-color: var(--primary); color: var(--primary); }

.footer { background: var(--secondary); color: #a8a29e; padding: 2.25rem 0; margin-top: 2rem; font-size: .84rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: center; margin-bottom: .9rem; }
.footer-links a { color: #d6d3d1; }
.footer p { text-align: center; }

@media (max-width: 768px) {
    .nav-links { gap: .65rem; font-size: .8rem; }
    .article { padding: 1.15rem 1rem; }
}
