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

:root {
  --orange: #ff7a00;
  --gold: #ffd000;
  --dark: #1c1c1c;
  --dark2: #2a2a2a;
  --text: #333;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 28, 28, .92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--orange);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-link { display: flex; align-items: center; }
.logo { height: 48px; object-fit: contain; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #3a2000 0%, #1c1c1c 70%);
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,122,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,208,0,.10) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff7a00' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

.hero-logo {
  max-width: 380px;
  width: 90%;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 24px rgba(255,122,0,.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-tagline {
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff4500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,122,0,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,122,0,.55);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-large { padding: 16px 48px; font-size: 1.1rem; margin-top: 32px; }

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}
.section-contact {
  background: linear-gradient(135deg, #1c1c1c 0%, #2d1200 100%);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-title.light { color: #fff; }

.section-sub {
  text-align: center;
  color: #777;
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(255,255,255,.6); }

/* ── GALLERY ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1 / 1;
  background: #eee;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(255,122,0,.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }


/* ── MENU IMAGE ── */
.menu-img-wrap { display: flex; justify-content: center; }
.menu-img {
  max-width: 100%;
  width: 960px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}

/* ── CONTACT ── */
.contact-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.contact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  text-decoration: none;
  transition: all var(--transition);
}
.contact-card:hover {
  background: rgba(255,122,0,.15);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.contact-icon { font-size: 2.2rem; margin-bottom: 12px; }
.contact-label {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact-value {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ── FOOTER ── */
.footer {
  background: #111;
  border-top: 2px solid var(--orange);
  padding: 32px 20px;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.8;
}
.footer-logo {
  height: 56px;
  margin-bottom: 12px;
  opacity: .85;
  object-fit: contain;
}

.contact-cta {
  text-align: center;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0,0,0,.6);
  animation: lb-in .2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--orange);
}
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav a::after { display: none; }
  .burger { display: flex; }

  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .contact-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
