:root {
  --c22-white: #ffffff;
  --c22-sky: #7db4dd;
  --c22-ink: #0d1216;
  --c22-navy: #023460;
  --c22-royal: #004687;
  --c22-gold: #bd9a58;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow Condensed", sans-serif;
  color: var(--c22-white);
  background:
    radial-gradient(circle at 15% 20%, rgba(125, 180, 221, 0.28), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(189, 154, 88, 0.18), transparent 35%),
    linear-gradient(160deg, #041224 0%, #02213e 60%, #001327 100%);
  line-height: 1.4;
}

h1,
h2,
h3,
.navbar-brand span {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.site-header {
  position: relative;
  overflow: hidden;
}

.navbar {
  background: rgba(1, 17, 34, 0.7);
  backdrop-filter: blur(6px);
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.navbar-brand span {
  font-size: 1.25rem;
}

.nav-link {
  color: var(--c22-white);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--c22-sky);
}

.hero-section {
  padding: 3rem 0 5rem;
}

.hero-copy {
  animation: fadeUp 0.9s ease-out both;
}

.hero-logo {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.45));
  animation: floatIn 1.1s ease-out both;
}

.hero-tag {
  margin-bottom: 0.5rem;
  color: var(--c22-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.lead {
  max-width: 40ch;
  font-size: 1.3rem;
}

.btn-brand {
  background: linear-gradient(135deg, var(--c22-gold), #cfb47b);
  border: 0;
  color: #1f1200;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #d5bd8c, var(--c22-gold));
  color: #1f1200;
}

.section-block {
  padding: 4rem 0;
}

.section-block + .section-block {
  border-top: 1px solid rgba(125, 180, 221, 0.2);
}

.alt-bg {
  background: rgba(1, 17, 34, 0.55);
}

#live-music {
  background: linear-gradient(180deg, rgba(2, 25, 47, 0.5), rgba(1, 7, 13, 0.8));
}

.section-title-wrap {
  margin-bottom: 1.5rem;
}

.section-kicker {
  margin: 0;
  color: var(--c22-sky);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.content-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(125, 180, 221, 0.25);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.menu-preview {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(125, 180, 221, 0.45);
  background: #fff;
}

.menu-preview iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.music-photo-wrap {
  padding: 0.75rem;
}

.live-music-photo {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(125, 180, 221, 0.35);
  display: block;
}

.feature-list,
.event-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.event-list li,
.hours-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.event-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.event-date {
  color: var(--c22-sky);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list strong {
  color: var(--c22-gold);
}

.small-note {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 3rem 0;
  background: rgba(1, 17, 34, 0.55);
  border-top: 1px solid rgba(125, 180, 221, 0.25);
}

.site-footer h2 {
  font-size: 2.1rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 991px) {
  .navbar-brand span {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 2rem 0 3rem;
  }

  .hero-logo {
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .section-block {
    padding: 3rem 0;
  }

  .menu-preview iframe {
    height: 340px;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.1rem;
  }
}
