/* =========================================
   MACKAY'S GUYS — Gay Rodeo Bar
   ========================================= */

:root {
  --brown-dark:   #1a0f0a;
  --brown-mid:    #2d1a0e;
  --brown-warm:   #4a2c17;
  --brown-light:  #8b5e3c;
  --tan:          #c4956a;
  --cream:        #f5e6d3;
  --off-white:    #fdf8f2;

  --gold:         #d4a520;
  --gold-light:   #f0c040;

  /* Pride palette */
  --pride-red:    #e40303;
  --pride-orange: #ff8c00;
  --pride-yellow: #ffed00;
  --pride-green:  #008026;
  --pride-blue:   #004dff;
  --pride-violet: #750787;

  --text-dark:    #1a0f0a;
  --text-light:   #f5e6d3;
  --text-muted:   #a07855;

  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.5);

  --transition:   0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

p { line-height: 1.75; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.section-dark {
  background: var(--brown-dark);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin-top: 1rem;
  opacity: 0.8;
}

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ---- RAINBOW BAR ---- */
.rainbow-bar {
  height: 6px;
  background: linear-gradient(
    to right,
    var(--pride-red)   0%   16.67%,
    var(--pride-orange) 16.67% 33.33%,
    var(--pride-yellow) 33.33% 50%,
    var(--pride-green)  50%   66.67%,
    var(--pride-blue)   66.67% 83.33%,
    var(--pride-violet) 83.33% 100%
  );
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 165, 32, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 165, 32, 0.2);
  transition: all var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-hat { font-size: 1.6rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--brown-dark) !important;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--brown-dark) !important; }

.nav-instagram-link {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
  color: #fff !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem !important;
  white-space: nowrap;
}
.nav-instagram-link::after { display: none !important; }
.nav-instagram-link:hover { opacity: 0.88; color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(74, 44, 23, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(116, 7, 135, 0.2) 0%, transparent 50%),
    linear-gradient(160deg, #0d0703 0%, #1a0f0a 40%, #2d1a0e 70%, #1a0d05 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(228, 3, 3, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0, 77, 255, 0.08) 0%, transparent 40%);
}

/* Stars */
.hero::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute;
  top: 15%;
  left: 0; right: 0;
  font-size: 0.6rem;
  letter-spacing: 3rem;
  color: rgba(212, 165, 32, 0.15);
  white-space: nowrap;
  overflow: hidden;
}

.hero .rainbow-bar {
  position: absolute;
  top: 70px;
  left: 0; right: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(212, 165, 32, 0.02) 60px,
    rgba(212, 165, 32, 0.02) 61px
  );
  will-change: transform;
}

/* ---- HERO INTRO ANIMATION ---- */
@keyframes letterStamp {
  0%   { opacity: 0; transform: translateY(-55px) scale(1.25) rotate(-3deg); }
  55%  { opacity: 1; transform: translateY(6px)   scale(0.96) rotate(0.5deg); }
  75%  { transform: translateY(-3px) scale(1.02) rotate(0deg); }
  100% { opacity: 1; transform: translateY(0)    scale(1)    rotate(0deg); }
}

@keyframes titleGlow {
  0%   { text-shadow: 0 0 60px rgba(212,165,32,0.4), 2px 4px 0 rgba(0,0,0,0.5); }
  50%  { text-shadow: 0 0 90px rgba(212,165,32,0.95), 0 0 30px rgba(212,165,32,0.5), 2px 4px 0 rgba(0,0,0,0.5); }
  100% { text-shadow: 0 0 60px rgba(212,165,32,0.4), 2px 4px 0 rgba(0,0,0,0.5); }
}

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: heroFadeUp 0.55s ease 0.15s forwards;
}

.hero-title {
  font-family: 'Rye', serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  color: var(--cream);
  text-shadow:
    0 0 60px rgba(212, 165, 32, 0.4),
    2px 4px 0 rgba(0,0,0,0.5);
  line-height: 1;
  margin-bottom: 1rem;
}

.hero-title-glow {
  animation: titleGlow 0.7s ease forwards;
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  animation: letterStamp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-letter--space {
  display: inline-block;
  width: 0.35em;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 300;
  color: var(--tan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 0.55s ease var(--hero-tagline-delay, 1.3s) forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.55s ease var(--hero-buttons-delay, 1.6s) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 230, 211, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.55s ease 1.85s forwards;
}

.scroll-arrow {
  animation: bounce 1.5s ease infinite;
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---- PRIDE RIBBON ---- */
.pride-ribbon {
  background: linear-gradient(
    to right,
    var(--pride-red)   0%   16.67%,
    var(--pride-orange) 16.67% 33.33%,
    var(--pride-yellow) 33.33% 50%,
    var(--pride-green)  50%   66.67%,
    var(--pride-blue)   66.67% 83.33%,
    var(--pride-violet) 83.33% 100%
  );
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ribbon-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 25s linear infinite;
  padding-right: 2.5rem;
}

.ribbon-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image { position: relative; }

.image-frame {
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--brown-light);
  position: relative;
}


.owner-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}

.owner-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.badge {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text .section-label { display: block; margin-bottom: 0.5rem; }

.about-text h2 { margin-bottom: 1.5rem; }

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--brown-warm);
}

.about-text p { margin-bottom: 1.5rem; color: #5a3a26; }

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(74, 44, 23, 0.2);
  border-bottom: 1px solid rgba(74, 44, 23, 0.2);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ---- WES CALLOUT ---- */
.wes-callout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(74, 44, 23, 0.15);
}

.wes-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.wes-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.wes-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.3rem;
}

.wes-item p {
  font-size: 0.88rem;
  color: #6b4226;
  margin: 0;
  line-height: 1.55;
}

/* ---- EVENTS ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 165, 32, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  transition: all var(--transition);
}

.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 165, 32, 0.1);
}

.event-card.featured {
  grid-column: 1 / -1;
  border-color: var(--gold);
  background: rgba(212, 165, 32, 0.06);
}

.event-card.recurring {
  border-color: var(--pride-violet);
}

.event-date {
  flex-shrink: 0;
  text-align: center;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date .month {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.event-date .day {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .day-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.event-tag {
  display: inline-block;
  background: rgba(212, 165, 32, 0.15);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.event-info h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.event-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.event-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--tan);
}

/* ---- DRINKS ---- */
.featured-drink {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.featured-drink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20l20-20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.featured-drink-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 15, 10, 0.7);
  margin-bottom: 1rem;
}

.featured-drink-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.featured-drink-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.featured-drink-content h3 {
  font-family: 'Rye', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.featured-drink-content p {
  font-size: 0.92rem;
  color: rgba(26, 15, 10, 0.8);
  line-height: 1.55;
  margin: 0;
}

.featured-drink-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .featured-drink-inner { flex-wrap: wrap; }
  .featured-drink-price { margin-left: 0; }
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.drink-card {
  background: var(--cream);
  border: 1px solid rgba(74, 44, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.drink-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--pride-red), var(--pride-orange), var(--pride-yellow),
    var(--pride-green), var(--pride-blue), var(--pride-violet)
  );
}

.drink-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brown-light);
}

.drink-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.drink-card h3 {
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.drink-card p {
  font-size: 0.9rem;
  color: #6b4226;
  margin-bottom: 1rem;
}

.drink-price {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.hornets-special {
  border-color: #00778b;
  background: linear-gradient(135deg, #f5e6d3, #e8f5f7);
}

.hornets-special::before {
  background: linear-gradient(to right, #1d1160, #00778b, #a1a1a4, #00778b, #1d1160);
}

.drink-tag {
  display: inline-block;
  margin-top: 0.5rem;
  background: #1d1160;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

/* ---- FOOD MENU ---- */
.menu-section-label {
  font-family: 'Rye', serif;
  font-size: 1.1rem;
  color: var(--brown-warm);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--brown-light), transparent);
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--cream);
  border: 1px solid rgba(74, 44, 23, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--pride-red), var(--pride-orange), var(--pride-yellow),
    var(--pride-green), var(--pride-blue), var(--pride-violet)
  );
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brown-light);
}

.menu-card-icon {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}

.menu-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.menu-card p {
  font-size: 0.85rem;
  color: #6b4226;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.menu-card-price {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.menu-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffbf0, var(--cream));
  box-shadow: 0 4px 24px rgba(212, 165, 32, 0.18);
}

.menu-card--featured::before {
  height: 5px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
}

.menu-card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}

.sides-strip {
  background: var(--brown-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(212, 165, 32, 0.2);
}

.sides-strip-label {
  font-family: 'Rye', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}

.sides-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.side-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 165, 32, 0.2);
  border-radius: 30px;
  padding: 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
}

.side-pill:hover {
  background: rgba(212, 165, 32, 0.1);
  border-color: var(--gold);
}

.side-pill-name {
  font-size: 0.88rem;
  color: var(--cream);
}

.side-pill-price {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.sides-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-3 { grid-column: 3 / 4; grid-row: 1 / 3; }
.item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-6 { grid-column: 3 / 4; grid-row: 1 / 2; }

.gallery-grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
}

.item-1 { grid-area: 1 / 1 / 2 / 2; }
.item-2 { grid-area: 1 / 2 / 2 / 3; }
.item-3 { grid-area: 1 / 3 / 3 / 4; }
.item-4 { grid-area: 2 / 1 / 3 / 2; }
.item-5 { grid-area: 2 / 2 / 3 / 3; }
.item-6 { display: none; }

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

.item-1 .gallery-inner { background: linear-gradient(135deg, #4a1515, #8b3a3a); }
.item-2 .gallery-inner { background: linear-gradient(135deg, #1a3a1a, #3a8b3a); }
.item-3 .gallery-inner { background: linear-gradient(135deg, #1a1a4a, #3a3a8b); }
.item-4 .gallery-inner { background: linear-gradient(135deg, #4a3a1a, #8b6a3a); }
.item-5 .gallery-inner { background: linear-gradient(135deg, #3a1a4a, #6a3a8b); }

.gallery-item:hover .gallery-inner { filter: brightness(1.2) saturate(1.2); transform: scale(1.03); }

.gallery-emoji { font-size: 3.5rem; }

.gallery-inner p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ---- STAFF ---- */
.staff-cards-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.staff-photo-pill {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: auto;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.staff-photo-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: auto;
  position: relative;
  background: linear-gradient(90deg, #c8b89a 25%, #e2d4be 50%, #c8b89a 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.staff-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.staff-card-photo.loaded {
  opacity: 1;
}

/* ---- HOURS ---- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hours-block .section-label, .location-block .section-label { display: block; margin-bottom: 0.5rem; }
.hours-block h2, .location-block h2 { margin-bottom: 2rem; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.hours-table td {
  padding: 0.9rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(74, 44, 23, 0.1);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--brown-warm);
  width: 50%;
}

.hours-table td:last-child { color: var(--text-dark); }

.hours-table .highlight td {
  font-weight: 700;
  color: var(--brown-dark);
}

.hours-table .highlight td:first-child { color: var(--gold); }

.closed-td { color: var(--text-muted) !important; }

.hours-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 165, 32, 0.2);
}

.map-embed iframe {
  display: block;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.loc-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.loc-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }

.loc-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.loc-item p { font-size: 0.95rem; color: #5a3a26; }

/* ---- CONTACT ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-text .section-label { display: block; margin-bottom: 0.5rem; }
.contact-text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.contact-text p { color: rgba(245, 230, 211, 0.75); margin-bottom: 2rem; }

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(212, 165, 32, 0.4);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}

.social-btn--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.social-btn--instagram:hover {
  background: linear-gradient(45deg, #e07820, #d05028, #cc1830, #bb1055, #ab0577);
  color: #fff;
  border-color: transparent;
}

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 165, 32, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212, 165, 32, 0.2);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 230, 211, 0.3);
}

.form-group select option { background: var(--brown-dark); color: var(--cream); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 32, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 128, 38, 0.2);
  border: 1px solid var(--pride-green);
  border-radius: var(--radius);
  color: #6de88a;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding-top: 4rem;
}

.footer-rainbow { margin-bottom: 4rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 165, 32, 0.15);
}

.footer-brand h3 {
  font-family: 'Rye', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.tagline-footer {
  color: var(--tan) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem !important;
  letter-spacing: 0.1em;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p,
.footer-hours p {
  font-size: 0.9rem;
  color: rgba(245, 230, 211, 0.6);
  margin-bottom: 0.5rem;
}

.footer-hours .closed { color: rgba(245, 230, 211, 0.3); }

.tel-link {
  color: inherit;
  text-decoration: none;
}
.tel-link:hover { text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 230, 211, 0.4);
}

.footer-bottom a { color: rgba(212, 165, 32, 0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

.footer-pride { color: rgba(245, 230, 211, 0.5) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid,
  .hours-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .wes-callout {
    grid-template-columns: 1fr 1fr;
  }

  .about-image { order: -1; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .item-1 { grid-area: 1 / 1 / 2 / 2; }
  .item-2 { grid-area: 1 / 2 / 2 / 3; }
  .item-3 { grid-area: 2 / 1 / 3 / 2; }
  .item-4 { grid-area: 2 / 2 / 3 / 3; }
  .item-5 { grid-area: 3 / 1 / 4 / 2; }
  .item-6 { display: block; grid-area: 3 / 2 / 4 / 3; }
  .item-6 .gallery-inner { background: linear-gradient(135deg, #3a2a0a, #8b7020); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--brown-dark);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 2px solid var(--gold);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: block; }

  #navbar { position: fixed; }

  .hero-title { font-size: clamp(2.5rem, 15vw, 5rem); }

  .events-grid { grid-template-columns: 1fr; }

  .event-card.featured { grid-column: 1; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 180px);
  }

  .item-1 { grid-area: 1 / 1; }
  .item-2 { grid-area: 2 / 1; }
  .item-3 { grid-area: 3 / 1; }
  .item-4 { grid-area: 4 / 1; }
  .item-5 { grid-area: 5 / 1; }
  .item-6 { display: none; }

  .about-stats { gap: 1rem; }

  .drinks-grid { grid-template-columns: 1fr; }

  .menu-cards-grid { grid-template-columns: 1fr 1fr; }

  .contact-form { padding: 1.5rem; }

  .wes-callout { grid-template-columns: 1fr; }
}

/* ---- FAKE MODAL ---- */
#fake-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fake-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.fake-modal-box {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.fake-modal-hat {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fake-modal-box p {
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.fake-modal-box p:first-of-type {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fake-modal-box button {
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.fake-modal-box button:hover {
  background: var(--gold-light);
}

/* ---- PAGE LOADER ---- */
#page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #fff8b0, var(--gold));
  background-size: 200% 100%;
  z-index: 10000;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  pointer-events: none;
}

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  pointer-events: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top:hover {
  background: var(--cream);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transform: translateY(-3px);
}
