@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&family=Sacramento&display=swap');

:root {
  --paper: #fff;
  --paper-2: #fcfbf5;
  --ink: #212121;
  --muted: #888;
  --red: #fb1d25;
  --red-dark: #ed1c24;
  --blue: #1c9797;
  --wood: #171717;
  --charcoal: #171717;
  --line: rgba(33, 33, 33, .14);
  --side: clamp(300px, 20vw, 420px);
  --shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Lora, Georgia, serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.72;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }
.is-hidden { display: none !important; }

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--side);
  background: #c1322b url('../images/h7-vertical-bg.jpg') center/cover;
  color: #fff;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 8px 0 30px rgba(0,0,0,.16);
}
.sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
}
.logo { width: 168px; margin: 6px auto 36px; }
.nav { display: flex; flex-direction: column; gap: 8px; width: 100%; margin-top: auto; margin-bottom: auto; }
.nav a, .drop-label {
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 18px;
  font-weight: 600;
  padding: 7px 0;
  color: #fff;
}
.drop-label {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  width: 100%;
}
.nav a.active, .nav a:hover, .drop-label:hover { color: #40dbdb; }
.dropdown { position: relative; }
.dropdown-items {
  display: grid;
  gap: 5px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
}
.dropdown.is-open .dropdown-items {
  max-height: 180px;
  opacity: 1;
  padding: 6px 0 10px;
}
.dropdown-items a { font-size: 13px; color: #fff; padding: 2px 0; letter-spacing: .08em; }
.sidebar-contact {
  margin-top: 0;
  font-family: Oswald, Arial, sans-serif;
  font-size: 15px;
  color: #fff;
}
.socials { display: flex; gap: 14px; justify-content: center; margin-top: 18px; }
.socials a { font-family: Oswald, Arial, sans-serif; font-size: 13px; color: #fff; }

.mobile-bar { display: none; }
.main { margin-left: var(--side); min-height: 100vh; overflow: hidden; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  background: var(--charcoal);
  --parallax-y: 0px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -9%;
  background: linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.08)), var(--hero-image) center/cover no-repeat;
  z-index: -2;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.06);
  will-change: transform;
}
.hero[data-parallax="hero"] {
  overflow: hidden;
}
.hero[data-parallax="hero"]::before {
  inset: -16%;
  background: var(--hero-image) center/cover no-repeat;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.08);
}
.hero[data-parallax="hero"]::after {
  display: none;
}
.hero-bg {
  position: absolute;
  inset: -16%;
  z-index: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.12);
  transition: opacity 1450ms ease-in-out;
  will-change: transform, opacity;
}
.hero-bg.is-active {
  z-index: 1;
  opacity: 1;
  animation: heroZoomOut 7200ms linear forwards;
}
.hero-bg.is-active.is-fading-out {
  z-index: 0;
  opacity: 0;
}
@keyframes heroZoomOut {
  from { transform: translate3d(0, var(--parallax-y), 0) scale(1.18); }
  to { transform: translate3d(0, var(--parallax-y), 0) scale(1.04); }
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
  text-align: center;
}
.hero-caption {
  position: absolute;
  width: min(100%, 1250px);
  padding: 0 28px;
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity 650ms ease, transform 650ms ease;
}
.hero-caption.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-action {
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 3;
  margin: 0;
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.hero-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.42);
  cursor: pointer;
}
.hero-dot.is-active { background: #fff; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, transparent 0 24%, rgba(0,0,0,.42) 70%);
  z-index: -1;
}
.hero-small {
  min-height: 360px;
  place-items: end start;
  text-align: left;
  padding: 70px clamp(28px, 7vw, 96px);
}
.hero-small::before { background-position: center; }
.script {
  font-family: Sacramento, cursive;
  color: var(--red);
  font-size: clamp(58px, 9vw, 132px);
  line-height: .82;
  text-shadow: 0 0 18px rgba(251,29,37,.86);
  display: block;
}
.hero-title {
  font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(54px, 10vw, 122px);
  line-height: .95;
  letter-spacing: .025em;
  margin: 0;
  text-shadow: 5px 6px 1px var(--blue);
}
.hero-copy { max-width: 720px; margin: 24px auto 0; font-size: 18px; color: rgba(255,255,255,.92); }
.hero-stage .script { font-size: clamp(82px, 10vw, 142px); }
.hero-stage .hero-title { font-size: clamp(74px, 9vw, 126px); display: inline-block; margin: 0; }
.hero-small .hero-title { font-size: clamp(46px, 8vw, 82px); }
.hero-small .script { font-size: clamp(48px, 8vw, 74px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  margin-top: 28px;
  border: 2px solid var(--red);
  background: var(--red);
  color: #fff;
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); background: transparent; color: #fff; }
.btn.dark:hover { color: var(--red); }

.section { padding: clamp(56px, 8vw, 110px) clamp(24px, 7vw, 92px); }
.section.alt {
  background: var(--paper-2) url('../images/h7-backgroung-img-3.jpg') center/cover repeat;
}
.section.bg-img {
  background: var(--paper-2) url('../images/h7-backgroung-img-3.jpg') center/cover repeat;
}
.container { max-width: 1160px; margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr); gap: clamp(34px, 6vw, 86px); align-items: center; }
.split.reverse { grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr); }
.eyebrow {
  display: block;
  font-family: Sacramento, cursive;
  color: var(--red);
  font-size: clamp(42px, 6vw, 58px);
  line-height: .9;
  margin-bottom: 4px;
}
h1, h2, h3, h4 {
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0 0 20px;
}
h2 { font-size: clamp(38px, 5vw, 56px); }
h3 { font-size: clamp(25px, 3vw, 34px); }
h4 { font-size: 20px; color: var(--red); }
p { margin: 0 0 18px; color: var(--muted); }
.framed { box-shadow: var(--shadow); border: 12px solid #fff; background: #fff; }
.rounded { border-radius: 14px; overflow: hidden; }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 44px; }
.event-card { background: transparent; box-shadow: none; }
.event-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.event-body { padding: 20px 0 0; }
.event-date { color: #dd3333; font-family: Oswald, Arial, sans-serif; font-weight: 600; text-transform: uppercase; }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }

.map { width: 100%; height: 480px; border: 0; display: block; filter: saturate(.85); }
.menu-img { max-width: 920px; margin: 0 auto; background: #fff; padding: 12px; box-shadow: var(--shadow); }
.menu-img img { width: 100%; height: auto; }
.menu-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 0 38px; }
.menu-links a {
  font-family: Oswald, Arial, sans-serif;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 9px 16px;
  background: #fff;
}
.menu-links a.active { background: var(--red); color: #fff; border-color: var(--red); }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: start; }
.form { display: grid; gap: 15px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
}
.form textarea { min-height: 150px; resize: vertical; }
.details { display: grid; gap: 20px; }
.detail { display: grid; grid-template-columns: 34px 1fr; gap: 16px; align-items: start; }
.icon { width: 34px; height: 34px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: Oswald, Arial, sans-serif; }
.note { font-size: 14px; font-style: italic; }

.gallery-grid {
  columns: 3 260px;
  column-gap: 20px;
}
.gallery-grid img {
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
}
.video-card { position: relative; display: block; color: #fff; }
.video-card img { width: 100%; aspect-ratio: 12/5; object-fit: cover; filter: brightness(.72); }
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: Oswald, Arial, sans-serif;
  font-size: 32px;
  box-shadow: 0 0 0 12px rgba(228,0,9,.22);
}
.price-img { max-width: 760px; margin: 36px auto 0; }

.footer {
  background: #171717;
  color: #fff;
  margin-left: var(--side);
  padding: 58px clamp(24px, 6vw, 80px) 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1.1fr; gap: 36px; max-width: 1160px; margin: 0 auto 34px; }
.footer h4 { color: #fff; margin-bottom: 16px; }
.footer p, .footer a, .hours span { color: #b1b2b2; }
.hours { display: grid; gap: 7px; }
.hours div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dotted rgba(255,255,255,.22); padding-bottom: 5px; }
.hours span:last-child { color: var(--red); font-family: Oswald, Arial, sans-serif; }
.footer-bottom { background: #000; padding: 14px clamp(24px, 6vw, 80px); margin: 0 calc(-1 * clamp(24px, 6vw, 80px)); display: flex; justify-content: space-between; gap: 20px; color: #757575; font-size: 14px; }

@media (max-width: 1000px) {
  :root { --side: 0px; }
  .sidebar { display: none; }
  .mobile-bar {
    display: grid;
    grid-template-columns: 72px 1fr 72px;
    position: sticky;
    top: 0;
    z-index: 30;
    align-items: center;
    background: #fff;
    color: var(--ink);
    min-height: 140px;
    padding: 0 clamp(26px, 13vw, 140px);
  }
  .mobile-logo {
    grid-column: 2;
    justify-self: center;
    line-height: 0;
  }
  .mobile-logo img {
    width: clamp(82px, 14vw, 118px);
    height: auto;
  }
  .mobile-menu-toggle {
    grid-column: 1;
    justify-self: start;
    width: 34px;
    height: 28px;
    display: grid;
    gap: 5px;
    align-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 29px;
    height: 3px;
    background: var(--red);
    transition: transform .22s ease, opacity .18s ease;
  }
  .mobile-bar.is-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-bar.is-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
  .mobile-bar.is-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: #fff;
    box-shadow: 0 18px 34px rgba(0,0,0,.12);
    font-family: Oswald, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .12em;
    text-align: center;
    transition: max-height .3s ease, opacity .22s ease;
  }
  .mobile-bar.is-open .mobile-nav {
    max-height: 520px;
    opacity: 1;
    padding: 10px 0 22px;
  }
  .mobile-nav a {
    padding: 10px 20px;
    color: var(--ink);
  }
  .mobile-nav a:hover { color: var(--red); }
  .main, .footer { margin-left: 0; }
  .hero { min-height: 78vh; }
  .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 48px 20px; }
  .hero-small { min-height: 300px; padding: 44px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .map { height: 360px; }
  .mobile-bar {
    grid-template-columns: 52px 1fr 52px;
    min-height: 118px;
    padding: 0 28px;
  }
  .mobile-logo img { width: 86px; }
  .mobile-nav { font-size: 14px; }
  .play { width: 64px; height: 64px; }
}
