* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 800;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: #d71920;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ef1f27;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: black;
}

.btn-dark {
  background: black;
  color: white;
}

.btn-dark:hover {
  transform: translateY(-2px);
}

nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
 linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
  url('images/hero-boxburger.jpeg');
    
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  padding-top: 100px;
}

.eyebrow {
  display: inline-block;
  background: rgba(215,25,32,.18);
  border: 1px solid rgba(215,25,32,.4);
  color: #ff4d53;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(62px, 10vw, 120px);
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero p {
  font-size: 21px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  border-radius: 32px;
  padding: 35px;
}

.hero-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.hero-card ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin-top: 25px;
}

.hero-card li {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stats {
  padding: 90px 0;
  background: #0b0b0b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.stat-box {
  background: #111;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  padding: 45px 30px;
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #d71920;
  margin-bottom: 12px;
}

.section {
  padding: 120px 0;
}

.dark-section {
  background: #0b0b0b;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.left-title {
  text-align: left;
}

.section-title span {
  color: #ff4d53;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.section-title h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  text-transform: uppercase;
  line-height: .95;
  margin-top: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.menu-card {
  background: #111;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: .25s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.menu-content {
  padding: 28px;
}

.menu-content h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.menu-content p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-section img {
  border-radius: 32px;
  min-height: 500px;
  object-fit: cover;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 45px;
}

.event-box {
  background: #111;
  padding: 30px;
  border-radius: 24px;
  text-align: center;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.06);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.process-card {
  background: #111;
  border-radius: 28px;
  padding: 50px 35px;
  border: 1px solid rgba(255,255,255,.06);
}

.process-number {
  font-size: 72px;
  color: #d71920;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.testimonials {
  background: #0b0b0b;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.testimonial {
  background: #111;
  padding: 35px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.06);
}

.testimonial p {
  line-height: 1.8;
  color: rgba(255,255,255,.78);
  margin-bottom: 22px;
}

.testimonial strong {
  font-size: 18px;
}

.cta {
  background:
    linear-gradient(rgba(215,25,32,.92), rgba(215,25,32,.92)),
    url('https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=1974&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 130px 0;
}

.cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(54px, 8vw, 110px);
  line-height: .92;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.cta p {
  max-width: 750px;
  margin: auto;
  font-size: 22px;
  line-height: 1.7;
}

.cta-button-wrap {
  margin-top: 40px;
}

footer {
  padding: 40px 0;
  text-align: center;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 1000px) {

  .hero-grid,
  .split-section,
  .stats-grid,
  .menu-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 68px;
  }

  .section {
    padding: 90px 0;
  }
}
.nav-scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.stat-box,
.menu-card,
.event-box,
.process-card,
.testimonial {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.6s ease;
}

.stat-box.show,
.menu-card.show,
.event-box.show,
.process-card.show,
.testimonial.show {
  opacity: 1;
  transform: translateY(0);
}
.section-subtitle {
  max-width: 650px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.6;
}

.calendar-wrap {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 18px;
  overflow: hidden;
}

.calendar-wrap iframe {
  border-radius: 18px;
  background: white;
}
.section-subtitle {
  max-width: 650px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.6;
}

.calendar-wrap {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 18px;
  overflow: hidden;
  margin-top: 40px;
}

.calendar-wrap iframe {
  border-radius: 18px;
  background: white;
}
.hero-card li::before {
  content: "•";
  color: white;
  margin-right: 14px;
  opacity: 0.8;
}
.booking-form {
  max-width: 760px;
  margin: 50px auto 0;
  display: grid;
  gap: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255,255,255,.65);
}

.booking-form textarea {
  resize: vertical;
  min-height: 140px;
}

.booking-form select {
  cursor: pointer;
}

.booking-form button {
  border: none;
  margin-top: 10px;
}
.menu-download {
  text-align: center;
  margin-top: 40px;
}

.menu-download a {
  font-size: 18px;
  font-weight: 700;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 4px;
  transition: .25s ease;
}

.menu-download a:hover {
  color: #ff4d53;
  border-color: #ff4d53;
}
.faq-section {
  background: #0b0b0b;
}

.faq-item {
  background: #111;
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.06);
}

.faq-item h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.faq-item p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}
.events-section {
  background: #050505;
}

.event-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 40px auto 0;
}

.event-card {
  display: grid;
  grid-template-columns: 120px 1fr 240px;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #111, #0b0b0b);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 22px;
}

.event-date-box {
  border: 1px solid #d71920;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}

.event-month {
  color: #ff4d53;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-day {
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.event-weekday {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  text-transform: uppercase;
}

.event-info h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.event-info p,
.event-time p {
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.event-time {
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 28px;
}

.event-badge {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.full-calendar-wrap {
  text-align: center;
  margin-top: 30px;
}

.events-note,
.loading-events {
  text-align: center;
  color: rgba(255,255,255,.55);
  margin-top: 18px;
}

@media (max-width: 800px) {
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-time {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 18px;
  }

  .event-date-box {
    max-width: 120px;
  }
}