/* ==========  RESET  ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ==========  PALETTE  ==========
   Brand yellow: #f5b01b
   Brand dark : #0e0e0e
*/
:root {
  --yellow: #f5b01b;
  --yellow-dark: #d99a0d;
  --dark: #0e0e0e;
  --gray: #6b6b6b;
  --light: #f7f7f7;
}

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

/* ==========  BUTTONS  ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700;
  font-size: 15px; transition: all .2s ease; cursor: pointer; border: 0;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--dark); }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,176,27,.4); }
.btn-secondary { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-secondary:hover { background: var(--dark); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ==========  HEADER  ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,14,14,.95); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; }
.logo { height: 44px; width: auto; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { color: #fff; font-weight: 500; font-size: 15px; transition: color .2s; }
.main-nav a:hover { color: var(--yellow); }
.header-call {
  background: var(--yellow); color: var(--dark);
  padding: 10px 18px; font-size: 14px;
}
.header-call:hover { background: var(--yellow-dark); }
.phone-icon { font-size: 16px; }

/* ==========  HERO  ========== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: #0e0e0e;
  color: #fff; padding: 80px 0; overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 30s infinite;
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }

@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.08); }
  3%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1); }
  23%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:nth-child(1) { opacity: 1; }
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow); font-weight: 600;
  border: 1px solid rgba(245,176,27,.5);
  padding: 6px 16px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero-accent { color: var(--yellow); }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05;
  letter-spacing: 1px; margin-bottom: 20px;
}
.hero h1::after {
  content: ''; display: block; width: 80px; height: 4px;
  background: var(--yellow); margin: 20px auto 0;
}
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 36px; opacity: .92; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-cta .btn-secondary { color: #fff; border-color: #fff; }
.hero-cta .btn-secondary:hover { background: #fff; color: var(--dark); }
.hero-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; opacity: .9; font-weight: 500; }
.hero-badges span { font-size: 14px; }

/* ==========  ABOUT  ========== */
.about { padding: 80px 0; background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1;
  margin-bottom: 20px; color: var(--dark);
}
.about-text p { color: var(--gray); margin-bottom: 16px; font-size: 16px; }
.about-text .btn { margin-top: 12px; }
.about-img img {
  border-radius: 16px; aspect-ratio: 1/1; object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

/* ==========  SECTION TITLE  ========== */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem); text-align: center;
  margin-bottom: 8px; color: var(--dark);
}
.section-title::after {
  content: ''; display: block; width: 70px; height: 4px;
  background: var(--yellow); margin: 14px auto 0;
}
.section-sub { text-align: center; color: var(--gray); margin-bottom: 50px; font-size: 17px; }

/* ==========  MENU  ========== */
.menu { padding: 80px 0; background: var(--light); }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.menu-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
.menu-img { aspect-ratio: 4/3; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.menu-card:hover .menu-img img { transform: scale(1.08); }
.menu-body { padding: 20px; }
.menu-body h3 { font-size: 19px; margin-bottom: 6px; color: var(--dark); }
.menu-body p { color: var(--gray); font-size: 14px; }
.menu-cta { text-align: center; margin-top: 50px; }

/* ==========  FAQ  ========== */
.faq { padding: 80px 0; background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--light); border-radius: 12px;
  margin-bottom: 14px; padding: 0; overflow: hidden;
  border: 1px solid #ececec;
}
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600;
  font-size: 16px; color: var(--dark); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 24px; color: var(--yellow-dark); font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: #f0f0f0; }
.faq-item p {
  padding: 0 22px 20px; color: var(--gray);
  font-size: 15px; line-height: 1.6;
}
.faq-item p a { color: var(--yellow-dark); }

/* ==========  LOCATION  ========== */
.location { padding: 80px 0; background: #fff; }
.location-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px;
}
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-icon {
  font-size: 24px; width: 48px; height: 48px;
  background: var(--yellow); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item h4 { font-size: 16px; margin-bottom: 4px; color: var(--dark); }
.info-item p { color: var(--gray); font-size: 15px; line-height: 1.5; }
.info-item p a { color: var(--dark); font-weight: 600; }
.info-item p a:hover { color: var(--yellow-dark); }
.location-info .btn { margin-top: 8px; }
.location-map iframe {
  border-radius: 16px; width: 100%; height: 100%; min-height: 450px;
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

/* ==========  FOOTER  ========== */
.site-footer { background: var(--dark); color: #999; padding: 60px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-col p, .footer-col a { font-size: 14px; line-height: 1.7; color: #aaa; }
.footer-col a:hover { color: var(--yellow); }
.footer-logo { height: 42px; margin-bottom: 14px; }
.footer-desc { max-width: 320px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
}
.footer-bottom p { font-size: 13px; color: #777; }
.footer-bottom strong { color: #ccc; }

/* ==========  MOBILE STICKY CALL FAB  ========== */
.mobile-call-fab {
  display: none;
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark);
  padding: 14px 28px; border-radius: 999px; font-weight: 700;
  box-shadow: 0 10px 30px rgba(245,176,27,.5);
  z-index: 200; align-items: center; gap: 10px;
  font-size: 16px; animation: pulse 2s infinite;
}
.fab-icon { font-size: 20px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(245,176,27,.5); }
  50%      { box-shadow: 0 10px 40px rgba(245,176,27,.85); }
}

/* ==========  RESPONSIVE  ========== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { order: -1; }
  .location-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero { min-height: 85vh; }
}

@media (max-width: 600px) {
  .nav { padding: 10px 14px; gap: 8px; }
  .logo { height: 36px; }
  .header-call .phone-text { display: none; }
  .header-call { padding: 10px 14px; }
  .header-call .phone-icon { font-size: 18px; }

  .mobile-call-fab { display: inline-flex; }
  body { padding-bottom: 80px; }

  .hero { padding: 60px 0; min-height: 80vh; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-badges { gap: 14px; font-size: 13px; }

  .about, .menu, .location { padding: 60px 0; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .menu-body { padding: 14px; }
  .menu-body h3 { font-size: 16px; }
  .menu-body p { font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-desc { margin: 0 auto; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 18px; font-size: 14px; }
}

@media (max-width: 380px) {
  .menu-grid { grid-template-columns: 1fr; }
}
