:root {
  --maroon: #8b1e2e;
  --maroon-dark: #5c1420;
  --gold: #d9a441;
  --cream: #fdf8f0;
  --dark: #252525;
  --grey: #666;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; }
.brand .tagline { font-size: 12px; color: var(--grey); display: block; }
.brand .name { font-size: 20px; color: var(--maroon); font-weight: 700; }

.main-nav ul { display: flex; list-style: none; gap: 28px; align-items: center; }
.main-nav a { font-weight: 600; font-size: 14px; letter-spacing: .3px; text-transform: uppercase; color: var(--dark); transition: color .2s; }
.main-nav a:hover { color: var(--maroon); }
.main-nav .has-children { position: relative; }
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #222;
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.main-nav .has-children:hover .sub-menu { display: block; }
.main-nav .sub-menu a { color: #fff; padding: 8px 18px; display: block; text-transform: none; font-weight: 400; }
.main-nav .sub-menu a:hover { color: var(--gold); }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(rgba(30,10,15,.55), rgba(30,10,15,.55)), url('../img/hero-b1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 110px 20px;
  text-align: center;
}
.hero h1 { font-size: 42px; margin-bottom: 16px; text-shadow: 0 2px 6px rgba(0,0,0,.4); }
.hero p { font-size: 18px; max-width: 640px; margin: 0 auto 28px; opacity: .95; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary { background: var(--gold); color: #2a1000; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.25); }

/* Section titles */
.section { padding: 70px 20px; }
.section-title { text-align: center; margin-bottom: 46px; }
.section-title h2 { font-size: 30px; color: var(--dark); position: relative; display: inline-block; padding-bottom: 14px; }
.section-title h2::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--gold);
}
.section-title p { color: var(--grey); margin-top: 10px; }
.section-alt { background: var(--cream); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-grid img { border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.about-grid h2 { font-size: 28px; margin-bottom: 18px; color: var(--maroon); }
.about-grid p { color: var(--grey); margin-bottom: 14px; }

/* Menu preview cards */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.menu-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,.08); transition: transform .2s; }
.menu-card:hover { transform: translateY(-6px); }
.menu-card img { height: 200px; width: 100%; object-fit: cover; }
.menu-card .label { padding: 16px; text-align: center; font-weight: 700; font-size: 15px; letter-spacing: .3px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid figure { border-radius: 6px; overflow: hidden; aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-grid figure:hover img { transform: scale(1.08); }

/* Locations */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.location-card { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 30px; box-shadow: 0 4px 14px rgba(0,0,0,.05); }
.location-card h3 { color: var(--maroon); font-size: 20px; margin-bottom: 14px; }
.location-card p { margin-bottom: 8px; color: var(--grey); }
.location-card a.phone { color: var(--maroon); font-weight: 600; }
.location-card iframe { width: 100%; height: 220px; border: 0; border-radius: 6px; margin-top: 16px; }

/* CTA band */
.cta-band {
  background: var(--maroon);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
.cta-band h2 { font-size: 28px; margin-bottom: 20px; }

/* Footer */
.site-footer { background: #1a1a1a; color: #ccc; padding: 60px 20px 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1180px; margin: 0 auto; }
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-col p, .footer-col a { color: #bbb; font-size: 14px; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #333; font-size: 13px; color: #888; }

/* WhatsApp sticky */
.sticky-wrapper { position: fixed; right: 20px; bottom: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.sticky-btn {
  background: #25D366; color: #fff; padding: 10px 16px; border-radius: 30px;
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .about-grid, .locations-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
}
