/* ===== VARIABLES ===== */
:root {
  --navy:       #1B3A5C;
  --navy-dark:  #0D1F33;
  --coral:      #E0472E;
  --gold:       #C9943A;
  --cream:      #FAF8F4;
  --sand:       #F0E9D9;
  --text:       #1E1E1E;
  --muted:      #666;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-display); }
img { max-width: 100%; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.section-rule {
  width: 48px;
  height: 3px;
  background: var(--coral);
  border: none;
  margin: 1rem 0 1.75rem;
}
.section-rule.center { margin: 1rem auto 1.75rem; }

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(11, 27, 47, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  transition: padding 0.3s;
}
#mainNav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
#mainNav .navbar-brand img {
  height: 40px;
  width: auto;
}
#mainNav .brand-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
#mainNav .nav-link {
  color: rgba(255,255,255,0.80) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem !important;
  transition: color 0.2s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link:focus { color: #fff !important; }
.nav-order-btn {
  background: var(--coral) !important;
  color: #fff !important;
  border-radius: 3px;
  margin-left: 0.4rem;
}
.nav-order-btn:hover { background: #c73d26 !important; }
.navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding: 0.3rem 0.5rem;
}
.navbar-toggler-icon { filter: invert(1); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: url('img/hero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 27, 47, 0.50) 0%,
    rgba(11, 27, 47, 0.35) 45%,
    rgba(11, 27, 47, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem 1.5rem;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.02;
  margin-bottom: 0.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--coral);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 2.25rem;
  letter-spacing: 0.01em;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--coral);
  padding: 0.82rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-coral:hover { background: #c73d26; border-color: #c73d26; color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  padding: 0.82rem 2.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== FEATURE STRIP ===== */
#features {
  background: var(--navy);
  padding: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-tile {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: background 0.2s;
}
.feature-tile:last-child { border-right: none; }
.feature-tile:hover { background: rgba(255,255,255,0.04); }
.feature-icon {
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 0.8rem;
  display: block;
}
.feature-tile h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.feature-tile p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== MENU SECTION ===== */
#menu { background: var(--cream); padding: 5rem 0; }

.menu-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin-bottom: 2rem;
}
.menu-tabs-wrapper::-webkit-scrollbar { height: 3px; }
.menu-tabs-wrapper::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 2px; }
.menu-nav-pills { flex-wrap: nowrap; gap: 0.35rem; min-width: max-content; }
.menu-nav-pills .nav-link {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 3px;
  border: 1.5px solid #ddd;
  background: #fff;
  white-space: nowrap;
  transition: all 0.15s;
}
.menu-nav-pills .nav-link:hover:not(.active) {
  border-color: var(--coral);
  color: var(--coral);
}
.menu-nav-pills .nav-link.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1 1 auto; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}
.badge-new {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}
.badge-gs, .badge-v {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
}
.badge-gs { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.badge-v  { background: #f3e5f5; color: #6a1b9a; border: 1px solid #ce93d8; }
.menu-item-desc {
  color: var(--muted);
  font-size: 0.83rem;
  margin: 0.2rem 0 0;
  line-height: 1.5;
}
.menu-item-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
  margin: 0.15rem 0 0;
}
.menu-price {
  font-weight: 700;
  color: var(--coral);
  font-size: 1rem;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  line-height: 1.4;
  min-width: 80px;
}
.menu-price .price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}

.menu-sub-header {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--sand);
}
.menu-sub-header:first-child { margin-top: 0; }

.menu-note-box {
  background: var(--sand);
  border-left: 3px solid var(--coral);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-radius: 0 3px 3px 0;
  margin-bottom: 1rem;
}

/* ===== DRINKS SECTION ===== */
#drinks { background: #fff; padding: 5rem 0; }
#drinks .menu-nav-pills .nav-link.active {
  background: var(--coral);
  border-color: var(--coral);
}

/* beer list */
.beer-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.beer-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--cream);
  border-radius: 3px;
  font-size: 0.87rem;
}
.beer-item .beer-name { font-weight: 500; }
.beer-item .beer-abv { color: var(--muted); font-size: 0.78rem; }

/* ===== WEEKLY SPECIALS ===== */
#specials { background: var(--navy); padding: 5rem 0; }
#specials .section-title { color: #fff; }
.special-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  height: 100%;
  transition: background 0.2s, transform 0.2s;
}
.special-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.special-day {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.6rem;
}
.special-card h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.special-card p {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.special-price {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 1rem;
}

/* ===== GALLERY ===== */
#gallery { background: var(--cream); padding: 5rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.gallery-cell {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-cell:hover img { transform: scale(1.06); }

/* ===== ENTERTAINMENT ===== */
#entertainment { background: #fff; padding: 5rem 0; }
.ent-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 6px;
}
.ent-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.ent-icon {
  font-size: 1.5rem;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ent-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--navy);
}
.ent-item p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ===== LOCATION ===== */
#location { background: var(--sand); padding: 5rem 0; }
.loc-card {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 2.5rem;
  height: 100%;
}
.loc-card h4 {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.loc-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.loc-detail i { color: var(--coral); font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.loc-detail a { color: rgba(255,255,255,0.85); text-decoration: none; }
.loc-detail a:hover { color: #fff; }

.hours-table { width: 100%; font-size: 0.87rem; }
.hours-table td { padding: 0.22rem 0; }
.hours-table .day-col { color: rgba(255,255,255,0.65); padding-right: 1rem; }
.hours-table .time-col { color: #fff; font-weight: 500; }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ===== ORDER ONLINE BANNER ===== */
#order-banner {
  background: var(--coral);
  padding: 2rem 0;
  text-align: center;
}
#order-banner h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
#order-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.btn-white {
  background: #fff;
  color: var(--coral);
  border: 2px solid #fff;
  padding: 0.75rem 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  padding: 3.5rem 0 1.5rem;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 0.75rem; }
.footer-brand-name {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 400;
}
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
footer h5 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 0.55rem; }
footer ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--coral); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--coral); color: #fff; }
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 2.5rem 0 1.5rem;
}
.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.powered-by a { color: var(--coral); text-decoration: none; font-weight: 600; }
.powered-by a:hover { color: #fff; }

/* ===== MERCH CARDS ===== */
.merch-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.merch-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.merch-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}
.merch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.merch-card:hover .merch-img-wrap img { transform: scale(1.05); }
.merch-info {
  padding: 0.75rem 0.9rem;
}
.merch-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.merch-price {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-tile:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .feature-tile:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 767px) {
  section, #menu, #drinks, #specials, #gallery, #entertainment, #location { padding: 3.5rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrap { min-height: 280px; }
  .map-wrap iframe { min-height: 280px; }
  .ent-img { height: 260px; }
}
@media (max-width: 575px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-tile:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
