@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 16px/1.6 'Open Sans', Arial, sans-serif; color: #333; background: #fff; }
a { color: #d4282e; text-decoration: none; transition: color .2s; }
a:hover { color: #a01e22; }
img { max-width: 100%; height: auto; display: block; }

.wrapper { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Top bar */
.top-bar { background: #1a1a1a; color: #ccc; font-size: 13px; padding: 6px 0; }
.top-bar .wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #f5c518; }
.top-bar a:hover { color: #fff; }

/* Header */
header { background: #d4282e; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
header .wrapper { display: flex; align-items: center; justify-content: space-between; }
.logo { font: 700 28px/1 'Bebas Neue', Impact, sans-serif; color: #fff; letter-spacing: 1px; }
.logo span { color: #f5c518; }

nav { display: flex; align-items: center; gap: 5px; }
nav a { color: #fff; font: 600 14px/1 'Open Sans', sans-serif; text-transform: uppercase; padding: 10px 14px; border-radius: 4px; transition: background .2s, color .2s; }
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: #f5c518; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }

/* Hero */
.hero { position: relative; height: 480px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.7)); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 20px; }
.hero-content h1 { font: 700 56px/1.1 'Bebas Neue', Impact, sans-serif; letter-spacing: 2px; margin-bottom: 12px; text-shadow: 2px 2px 8px rgba(0,0,0,.5); }
.hero-content p { font-size: 20px; margin-bottom: 20px; max-width: 600px; }
.btn { display: inline-block; background: #d4282e; color: #fff; font: 700 15px 'Open Sans', sans-serif; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; transition: background .2s, transform .1s; }
.btn:hover { background: #a01e22; color: #fff; transform: translateY(-1px); }
.btn-gold { background: #f5c518; color: #1a1a1a; }
.btn-gold:hover { background: #d4a800; color: #1a1a1a; }

/* Sections */
section { padding: 60px 0; }
section:nth-child(even) { background: #f8f8f8; }
.section-title { font: 700 42px/1 'Bebas Neue', Impact, sans-serif; color: #1a1a1a; text-align: center; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: #777; margin-bottom: 40px; font-size: 17px; }
.section-title .accent { color: #d4282e; }

/* Featured items */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.featured-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; }
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.featured-card img { width: 100%; height: 220px; object-fit: cover; }
.featured-card .card-body { padding: 18px; }
.featured-card h3 { font: 700 22px/1.2 'Bebas Neue', Impact, sans-serif; color: #1a1a1a; margin-bottom: 6px; }
.featured-card p { font-size: 14px; color: #666; margin-bottom: 10px; }
.featured-card .price { font: 700 18px 'Open Sans', sans-serif; color: #d4282e; }

/* About section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-grid img { border-radius: 8px; }
.about-text h3 { font: 700 32px/1.1 'Bebas Neue', Impact, sans-serif; color: #1a1a1a; margin-bottom: 15px; }
.about-text p { margin-bottom: 15px; color: #555; }
.about-text ul { list-style: none; margin: 15px 0; }
.about-text ul li { padding: 6px 0 6px 28px; position: relative; color: #555; }
.about-text ul li::before { content: "✓"; position: absolute; left: 0; color: #d4282e; font-weight: 700; }

/* Hours & Info */
.info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.info-box { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,.08); text-align: center; }
.info-box h3 { font: 700 26px/1 'Bebas Neue', Impact, sans-serif; color: #d4282e; margin-bottom: 15px; }
.info-box p { margin: 5px 0; color: #555; font-size: 15px; }
.hours-table { width: 100%; text-align: left; }
.hours-table td { padding: 5px 8px; font-size: 14px; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* Menu page */
.menu-category { margin-bottom: 40px; }
.menu-category h2 { font: 700 32px/1 'Bebas Neue', Impact, sans-serif; color: #d4282e; border-bottom: 3px solid #d4282e; padding-bottom: 8px; margin-bottom: 20px; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dotted #ddd; }
.menu-item .item-name { font-weight: 600; color: #1a1a1a; }
.menu-item .item-price { font-weight: 700; color: #d4282e; white-space: nowrap; margin-left: 12px; }

/* Menu hero images */
.menu-hero-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 40px; }
.menu-hero-grid img { border-radius: 8px; height: 180px; width: 100%; object-fit: cover; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-details h3 { font: 700 28px/1 'Bebas Neue', Impact, sans-serif; color: #1a1a1a; margin-bottom: 15px; }
.contact-details p { margin: 8px 0; color: #555; }
.contact-details strong { color: #d4282e; }
.contact-details a { color: #d4282e; }
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* CTA Banner */
.cta-banner { background: #d4282e; padding: 50px 0; text-align: center; color: #fff; }
.cta-banner h2 { font: 700 42px/1 'Bebas Neue', Impact, sans-serif; margin-bottom: 12px; }
.cta-banner p { font-size: 18px; margin-bottom: 20px; opacity: .9; }

/* Footer */
footer { background: #1a1a1a; color: #999; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { font: 700 22px/1 'Bebas Neue', Impact, sans-serif; color: #fff; margin-bottom: 15px; }
.footer-col p { font-size: 14px; margin: 5px 0; }
.footer-col a { color: #f5c518; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin: 6px 0; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
    .featured-grid, .info-grid { grid-template-columns: 1fr; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .menu-items { grid-template-columns: 1fr; }
    .menu-hero-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { height: 360px; }
    .hero-content h1 { font-size: 38px; }
    nav a { display: none; }
    nav.open a { display: block; width: 100%; text-align: center; }
    .hamburger { display: block; }
    header .wrapper { flex-wrap: wrap; }
    nav { width: 100%; flex-direction: column; }
    nav.open { padding-top: 10px; }
    .top-bar .wrapper { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
    .hero { height: 280px; }
    .hero-content h1 { font-size: 30px; }
    .hero-content p { font-size: 16px; }
    .section-title { font-size: 32px; }
    .menu-hero-grid { grid-template-columns: 1fr; }
    .featured-card img { height: 180px; }
}
