/* =============================================
   CSS VARIABLES & RESET
============================================= */
:root {
  --black:      #0a0805;
  --dark:       #110e09;
  --dark2:      #1a1409;
  --amber:      #f045c8;
  --amber-dim:  #7f57ff;
  --neon-red:   #ff2a2a;
  --neon-blue:  #00cfff;
  --neon-green: #39ff14;
  --cream:      #f5e6c8;
  --rust:       #bf00ff;
  --wood:       #3d2005;
  --text:       #f0ddb8;
  --muted:      #8a7355;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #1a0c04;
  /* Real wood grain photo — img/wood_small.webp (1600x900, resized from
     the 1920x1080 img/wood.webp original, which is kept as the source) */
  background-image:
    /* Dark vignette so neon + text stays crisp against the wood */
    linear-gradient(180deg,
      rgba(5,2,0,0.70) 0%,
      rgba(8,4,1,0.55) 40%,
      rgba(8,4,1,0.55) 60%,
      rgba(5,2,0,0.70) 100%
    ),
    url('../img/wood_small.webp');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
  background-position: center, center;
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Subtle noise grain on top of wood — adds an aged, worn-bar feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-heading  { font-family: 'Oswald', sans-serif; }

/* =============================================
   NEON TEXT EFFECTS
============================================= */
.neon-amber {
  color: var(--amber);
  text-shadow: 0 0 8px var(--amber), 0 0 20px rgba(240,69,200,0.5);
}
.neon-red {
  color: var(--neon-red);
  text-shadow: 0 0 8px var(--neon-red), 0 0 20px rgba(255,42,42,0.5);
}
.neon-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 8px var(--neon-blue), 0 0 20px rgba(0,207,255,0.4);
}

/* =============================================
   HEADER / NAV
============================================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(14,8,3,0.97) 0%, rgba(22,12,4,0.95) 100%);
  border-bottom: 2px solid var(--amber-dim);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 60px;
}

.topbar-logo {
  display: block;
  width: min(190px, 44vw);
  max-height: 44px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-hours {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.4;
}

.header-hours span {
  display: block;
  color: var(--neon-green);
  font-size: 0.65rem;
  text-shadow: 0 0 6px var(--neon-green);
}

.header-hours span.closed {
  color: var(--neon-red);
  text-shadow: 0 0 6px var(--neon-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 3px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--neon-red);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  box-shadow: 0 0 12px rgba(255,42,42,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: #ff4a4a;
  box-shadow: 0 0 20px rgba(255,42,42,0.8), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-secondary:hover {
  background: var(--amber);
  color: var(--black);
  box-shadow: 0 0 16px rgba(240,69,200,0.5);
  transform: translateY(-1px);
}

/* =============================================
   HERO BAND
============================================= */
.hero {
  background: linear-gradient(180deg, rgba(12,7,2,0.88) 0%, rgba(20,11,3,0.82) 60%, rgba(12,7,2,0.88) 100%);
  padding: 28px 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(240,69,200,0.15);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(240,69,200,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.9;
  color: var(--amber);
  text-shadow: 0 0 20px rgba(240,69,200,0.6), 0 0 60px rgba(127,87,255,0.25), 3px 3px 0 rgba(0,0,0,0.8);
  letter-spacing: 0.06em;
}

.hero-logo {
  display: block;
  width: min(620px, 86vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 18px rgba(240,69,200,0.4)) drop-shadow(3px 3px 0 rgba(0,0,0,0.8));
}

.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.7rem, 2.5vw, 1rem);
  letter-spacing: 0.2em;
  color: var(--cream);
  margin: 8px 0 18px;
  text-transform: uppercase;
}

.hero-quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.hero-quick-item {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-quick-item strong {
  color: var(--cream);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-ctas .btn-primary { font-size: 1rem; padding: 13px 28px; }
.hero-ctas .btn-secondary { font-size: 1rem; padding: 11px 24px; }

/* =============================================
   EVENT CAROUSEL
============================================= */
.carousel-section {
  background: rgba(8,4,1,0.82);
  padding: 0 0 10px;
  border-bottom: 3px solid var(--amber-dim);
}

.carousel-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--neon-red);
  text-align: center;
  padding: 14px 0 10px;
  text-shadow: 0 0 8px var(--neon-red);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}

/* Use contain so full flyer text is visible */
.carousel-slide img {
  width: 100%;
  height: clamp(220px, 56vw, 520px);
  object-fit: contain;
  background: #000;
  display: block;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.65);
  border: 2px solid var(--amber-dim);
  color: var(--amber);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.carousel-arrow:hover, .carousel-arrow:focus {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}
.carousel-arrow.prev { left: 8px; }
.carousel-arrow.next { right: 8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 4px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.carousel-dot.active {
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  width: 22px;
  border-radius: 4px;
}

/* =============================================
   WEEKLY EVENTS SECTION
============================================= */
.events-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 16px 40px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.06em;
  color: var(--amber);
  text-shadow: 0 0 12px rgba(240,69,200,0.4);
  margin-bottom: 6px;
}

.section-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-red), var(--amber));
  margin-bottom: 28px;
  border: none;
}

/* Today highlight strip */
.today-strip {
  background: linear-gradient(135deg, rgba(255,42,42,0.12), rgba(240,69,200,0.08));
  border: 1px solid rgba(255,42,42,0.3);
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.today-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  background: var(--neon-red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
  text-shadow: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.today-events-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
}

/* Event cards grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.event-card {
  background: rgba(20,11,3,0.78);
  border: 1px solid rgba(240,69,200,0.18);
  border-radius: 6px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent-color, var(--amber));
}

.event-card:hover {
  border-color: var(--accent-color, var(--amber));
  transform: translateY(-2px);
}

.event-card.today-event {
  border-color: var(--accent-color, var(--amber));
  background: linear-gradient(135deg, rgba(255,255,255,0.04), var(--dark2));
}

.event-day {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.event-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 4px;
}

.event-time {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber);
  margin-bottom: 6px;
}

.event-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* =============================================
   CONTACT / FIND US SECTION
============================================= */
.contact-section {
  background: linear-gradient(180deg, rgba(8,4,1,0.9) 0%, rgba(16,9,2,0.88) 100%);
  border-top: 2px solid var(--amber-dim);
  border-bottom: 2px solid var(--amber-dim);
  padding: 52px 16px;
  overflow-x: hidden;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.contact-inner > * {
  min-width: 0;
}

@media (min-width: 760px) {
  .contact-inner { grid-template-columns: 1fr 1.4fr; align-items: start; }
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-shadow: 0 0 12px rgba(240,69,200,0.4);
  line-height: 1;
  margin-bottom: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.4;
}

.contact-detail .ci {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--amber);
}

.contact-detail a:hover { color: var(--amber); }

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-ctas .btn-primary { font-size: 1rem; padding: 12px 26px; }
.contact-ctas .btn-secondary { font-size: 1rem; padding: 10px 22px; }

.map-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--amber-dim);
  box-shadow: 0 0 24px rgba(240,69,200,0.15);
  aspect-ratio: 16/9;
  min-height: 260px;
}
/* Self-hosted map card in place of the Google Maps embed, so the page
   loads no third-party resources and sets no cookies. */
.map-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 22px 18px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(240,69,200,0.18) 0%, rgba(10,8,5,0) 68%),
    linear-gradient(160deg, #16101a 0%, #0b0908 100%);
  transition: all 0.2s ease;
}

/* Stylised street grid drawn in CSS -- no map tiles are requested. */
.map-link::before {
  content: '';
  position: absolute;
  inset: -25%;
  background-image:
    repeating-linear-gradient(0deg,  rgba(127,87,255,0.28) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(127,87,255,0.28) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(240,69,200,0.20) 0 3px, transparent 3px 176px);
  transform: rotate(-9deg);
  pointer-events: none;
}

/* Stops the grid competing with the text in the middle. */
.map-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(8,5,4,0.88) 0%, rgba(8,5,4,0.25) 55%, rgba(8,5,4,0.72) 100%);
  pointer-events: none;
}

.map-link > * { position: relative; z-index: 1; }

.map-pin {
  width: 34px;
  height: 34px;
  fill: var(--amber);
  filter: drop-shadow(0 0 8px rgba(240,69,200,0.85));
}

.map-link-title { font-size: 1.6rem; line-height: 1; color: var(--cream); }
.map-link-addr  { font-size: 0.9rem; color: var(--muted); }

.map-link-cta {
  margin-top: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 2px solid var(--amber);
  border-radius: 3px;
  padding: 7px 16px;
  transition: all 0.2s ease;
}

.map-link:hover .map-link-cta,
.map-link:focus-visible .map-link-cta {
  background: var(--amber);
  color: #12060f;
  box-shadow: 0 0 18px rgba(240,69,200,0.6);
}

.map-link:focus-visible { outline: 3px solid var(--neon-blue); outline-offset: -3px; }

@media (max-width: 480px) {
  .map-wrapper {
    aspect-ratio: 4/3;
    min-height: 220px;
  }
}

/* =============================================
   GALLERY SECTION
============================================= */
.gallery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 16px 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-img {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(240,69,200,0.15);
  aspect-ratio: 4/3;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-img:hover img { transform: scale(1.04); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: rgba(8,4,1,0.93);
  border-top: 1px solid rgba(240,69,200,0.2);
  padding: 28px 16px;
  text-align: center;
}

.footer-logo {
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto 8px;
}

.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.7rem;
  color: #4a3a25;
}

.footer-credit {
  font-size: 0.7rem;
  color: #4a3a25;
  margin-top: 10px;
}

.footer-credit a {
  color: var(--muted);
  border-bottom: 1px solid rgba(240,69,200,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); border-radius: 3px; }

/* =============================================
   UTILITY
============================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .header-hours { display: none; }
}
