/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --red:     #780724;
  --red-mid: #5b051b;
  --red-dark:#3a0211;
  --white:   #ffffff;
  --off-white: #f5f0eb;
  --dark:    #0d0608;
  --dark-mid:#1a0a0d;
  --grey:    rgba(255,255,255,0.55);
  --font:    'Poppins', sans-serif;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Utility ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 0.6rem;
  margin-bottom: 1rem;
}
.section-intro {
  max-width: 640px;
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0.5rem 0 3rem;
}
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 2rem 0;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.text-link {
  color: var(--red);
  font-weight: 500;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.75; }

/* ─── Nav ───────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s;
}
#mainNav.scrolled {
  background: rgba(13,6,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(120,7,36,0.3);
}
#mainNav .logo img { height: 68px; width: auto; }
#mainNav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
#mainNav ul a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
#mainNav ul a:hover { color: var(--white); }
.btn-reserve {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 600 !important;
  transition: background 0.25s var(--ease) !important;
}
.btn-reserve:hover { background: var(--red-mid) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 2s var(--ease);
  z-index: 1;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* always wider than the viewport, maintaining 16:9 */
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,6,8,0.75) 0%,
    rgba(58,2,17,0.45) 50%,
    rgba(13,6,8,0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeUp 1.2s var(--ease) both;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn-primary,
.hero-cta .btn-ghost {
  box-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}

/* ─── Awards Bar ────────────────────────────────────────────── */
.awards-bar {
  background: var(--dark-mid);
  border-top: 1px solid rgba(120,7,36,0.4);
  border-bottom: 1px solid rgba(120,7,36,0.4);
  padding: 1.5rem 2rem;
  overflow: hidden;
}
.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.awards-inner img { height: 70px; width: auto; filter: brightness(0.92); }

/* ─── Sections ──────────────────────────────────────────────── */
section { padding: 6rem 0; }
.dark-section { background: var(--dark-mid); }
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.6rem; }
p { color: rgba(255,255,255,0.8); line-height: 1.75; font-size: 0.97rem; }
p + p { margin-top: 0.9rem; }

/* ─── About ─────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.col-text { }
.col-text p { margin-bottom: 0.9rem; }
.col-text .btn-primary { margin-top: 1.5rem; }
.col-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}

/* ─── Menus ─────────────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.menu-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.menu-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-img { transform: scale(1.04); }
.menu-card-body { padding: 1.4rem; }
.menu-card-body h3 { margin-bottom: 0.5rem; }
.menu-card-body p { font-size: 0.88rem; color: var(--grey); }
.menu-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: letter-spacing 0.2s;
}
.menu-card:hover .menu-link { letter-spacing: 0.08em; }

/* ─── Venue ─────────────────────────────────────────────────── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.venue-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.venue-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.venue-card:hover .venue-img { transform: scale(1.06); }
.venue-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,6,8,0.92) 0%, rgba(13,6,8,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.3s;
}
.venue-card:hover .venue-body {
  background: linear-gradient(to top, rgba(58,2,17,0.95) 0%, rgba(13,6,8,0.4) 60%, transparent 100%);
}
.venue-body h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.venue-body p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* ─── Video background section ──────────────────────────────── */
.video-bg-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.video-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.video-bg-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}
.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,6,8,0.78) 0%,
    rgba(58,2,17,0.55) 50%,
    rgba(13,6,8,0.78) 100%
  );
}
.video-bg-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.video-bg-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}
.video-bg-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ─── News ──────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.news-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.news-card:hover { border-color: var(--red); transform: translateY(-4px); }
.news-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.news-card:hover .news-img { transform: scale(1.04); }
.news-body { padding: 1.4rem; }
.news-body h3 { margin-bottom: 0.6rem; font-size: 1.05rem; }
.news-body p { font-size: 0.87rem; color: var(--grey); }

/* ─── Contact ───────────────────────────────────────────────── */
#contact { background: var(--dark-mid); }

.contact-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}

.contact-form-panel h2 { margin-bottom: 0.6rem; }
.contact-intro {
  color: var(--grey);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* floating label form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { position: relative; }

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.93rem;
  padding: 1.45rem 1rem 0.55rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}
.form-field textarea { padding-top: 1.6rem; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.07);
}
.form-field label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  transition: top 0.2s, font-size 0.2s, color 0.2s, transform 0.2s;
}
.form-field textarea ~ label { top: 1.15rem; transform: none; }
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label {
  top: 0.42rem;
  transform: none;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 0.38rem;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--grey);
  cursor: pointer;
}
.btn-full { width: 100%; text-align: center; }

/* info panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.6rem;
  transition: border-color 0.25s;
}
.info-card:hover { border-color: rgba(120,7,36,0.5); }

.info-card-header { margin-bottom: 1rem; }
.info-card-header .label { margin-bottom: 0.35rem; }
.info-card-header h3 { font-size: 1.1rem; }

.info-card address {
  font-style: normal;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.map-link:hover { opacity: 0.75; }
.map-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.parking-note {
  margin-top: 0.75rem;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

.info-card-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.info-card-phone svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--red); }
.info-card-phone a { color: var(--white); transition: color 0.2s; }
.info-card-phone a:hover { color: var(--red); }

/* social card */
.info-card-social .label { display: block; margin-bottom: 0.75rem; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn:hover {
  background: rgba(120,7,36,0.22);
  border-color: var(--red);
  color: var(--white);
}
.social-btn img { height: 16px; width: auto; filter: brightness(10); }

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(120,7,36,0.3);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo img { height: 40px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.8rem;
}
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 960px) {
  .contact-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .col-image { order: -1; }
  .venue-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #mainNav { padding: 1.2rem 1.5rem; }
  #mainNav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-toggle { display: flex; z-index: 200; }
  #navLinks {
    position: fixed;
    inset: 0;
    background: rgba(13,6,8,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  #navLinks.open { transform: translateX(0); }
  #navLinks a { font-size: 1.1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .menu-grid,
  .news-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .awards-inner { gap: 1rem; }
  .awards-inner img { height: 50px; }
}
