/* ============================================================
   11 DEGREES DAIQUIRI - Main Stylesheet
   Dark Luxe Lounge Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------
   CSS Custom Properties
   ---------------------------------------- */
:root {
  --black-deep: #0a0a0a;
  --black-rich: #111111;
  --black-soft: #1a1a1a;
  --black-card: #151515;
  --black-border: #222222;
  --black-hover: #1e1e1e;
  --blue-deep: #314C9B;
  --blue-dark: #263a78;
  --blue-light: #4060b8;
  --gold-primary: #A5FF09;
  --gold-bright: #C3FB5F;
  --gold-neon: #A5FF09;
  --gold-dim: #7ac406;
  --gold-pale: #d4ff8a;
  --gradient-gold: linear-gradient(135deg, #A5FF09, #C3FB5F, #A5FF09);
  --gradient-gold-text: linear-gradient(90deg, #A5FF09, #C3FB5F, #A5FF09, #C3FB5F, #A5FF09);
  --gradient-gold-border: linear-gradient(90deg, transparent, #A5FF09, #C3FB5F, #A5FF09, transparent);
  --gradient-dark-overlay: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 35%, rgba(10,10,10,0.5) 65%, rgba(10,10,10,0.92) 100%);
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-muted: #888888;
  --glow-gold: 0 0 10px rgba(165,255,9,0.4), 0 0 30px rgba(165,255,9,0.15);
  --glow-gold-strong: 0 0 10px rgba(165,255,9,0.5), 0 0 40px rgba(195,251,95,0.3), 0 0 80px rgba(165,255,9,0.1);
  --glow-gold-text: 0 0 8px rgba(165,255,9,0.6), 0 0 20px rgba(165,255,9,0.2);
  --glass-bg: rgba(10,10,10,0.8);
  --glass-bg-heavy: rgba(10,10,10,0.95);
  --glass-border: rgba(165,255,9,0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-height: 70px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ----------------------------------------
   Reset & Base
   ---------------------------------------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--black-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--gold-primary); text-decoration:none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }
ul, ol { list-style:none; }
button { font-family: var(--font-body); cursor:pointer; border:none; background:none; color:inherit; }
input, textarea, select { font-family: var(--font-body); font-size:1rem; }
::selection { background: rgba(165,255,9,0.3); color: var(--text-primary); }
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background: var(--black-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }
address { font-style: normal; }

/* ----------------------------------------
   Typography
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight:700; line-height:1.2; color: var(--text-primary); }
h1 { font-size:2.25rem; }
h2 { font-size:1.875rem; }
h3 { font-size:1.5rem; }
h4 { font-size:1.25rem; }
p { margin-bottom:1rem; color: var(--text-secondary); }

.gold-text {
  background: var(--gradient-gold-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 4s linear infinite;
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 1.5rem; }
.section { padding: 4rem 0; }

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--black-deep);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-strong);
  color: var(--black-deep);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}
.btn-gold-outline:hover {
  background: rgba(165,255,9,0.1);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size:0.75rem; }

/* ----------------------------------------
   Header / Navigation
   ---------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: var(--glass-bg-heavy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}
.logo img { height:45px; width:auto; border-radius:50%; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Desktop Nav */
.main-nav { display:none; align-items:center; }
.nav-list { display:flex; align-items:center; gap:2rem; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.nav-link::after {
  content:'';
  position:absolute;
  bottom:-2px; left:0;
  width:0; height:2px;
  background: var(--gradient-gold);
  transition: width var(--transition-smooth);
}
.nav-link:hover, .nav-link.active { color: var(--gold-primary); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-footer-mobile { display:none; }
.header-cta { display:none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px; height: 28px;
  z-index: 1001;
  padding: 0;
}
.hamburger span {
  display:block; width:100%; height:2px;
  background: var(--text-primary);
  border-radius:2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold-primary);
}
.hamburger.active span:nth-child(2) {
  opacity:0; transform:scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold-primary);
}

/* Mobile Nav open state */
.main-nav.open {
  display: flex;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-nav.open .nav-list {
  flex-direction: column;
  gap: 1.5rem;
}
.main-nav.open .nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
}
.main-nav.open .nav-footer-mobile {
  display:block;
  margin-top:2rem;
  text-align:center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.nav-phone { color: var(--gold-primary); font-weight:600; }

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero-slider { position:relative; width:100%; height:calc(100vh - var(--header-height)); min-height:500px; }
.hero-slide {
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity:1; }
.hero-overlay {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: var(--gradient-dark-overlay);
}
.hero-content {
  position:relative; z-index:2;
  text-align:center;
  padding: 2rem;
  max-width:800px;
}
.hero-tag {
  display:inline-block;
  font-size:0.7rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.3em;
  color: var(--gold-primary);
  border: 1px solid rgba(165,255,9,0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both 0.2s;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease both 0.4s;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width:550px;
  margin-left:auto; margin-right:auto;
  animation: fadeInUp 0.8s ease both 0.6s;
}
.hero-content .btn { animation: fadeInUp 0.8s ease both 0.8s; }

/* Hero dots */
.hero-dots {
  position:absolute;
  bottom:2rem; left:50%;
  transform:translateX(-50%);
  z-index:10;
  display:flex; gap:0.5rem;
}
.hero-dot {
  width:10px; height:10px;
  border-radius:50%;
  background: rgba(255,255,255,0.3);
  border:none;
  cursor:pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(165,255,9,0.5);
}

/* ----------------------------------------
   Page Hero (inner pages)
   ---------------------------------------- */
.page-hero {
  position:relative;
  min-height:40vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: calc(var(--header-height) + 3rem) 1.5rem 3rem;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.page-hero-overlay {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
}
.page-hero-content { position:relative; z-index:2; }
.page-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ----------------------------------------
   Info Bar
   ---------------------------------------- */
.info-bar {
  background: var(--blue-deep);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 1.25rem 0;
}
.info-bar-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: center;
}
.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.info-icon {
  width: 24px; height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.info-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  display: block;
}
.info-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.info-item a { color: var(--text-primary); }
.info-item a:hover { color: var(--gold-primary); }

/* ----------------------------------------
   Section Headers
   ---------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  position: relative;
  padding: 0 2rem;
}
.section-tag::before,
.section-tag::after {
  content:'';
  position:absolute;
  top:50%;
  width:25px; height:1px;
  background: var(--gradient-gold-border);
}
.section-tag::before { left:0; }
.section-tag::after { right:0; }
.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-cta { text-align:center; margin-top:2.5rem; }

/* ----------------------------------------
   Drink Cards
   ---------------------------------------- */
.drink-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.drink-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  transition-delay: var(--delay, 0s);
}
.drink-card:hover {
  border-color: rgba(165,255,9,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--glow-gold);
}
.drink-card-image {
  position:relative;
  overflow:hidden;
  aspect-ratio: 1/1;
  background: var(--black-soft);
}
.drink-card-image img {
  width:100%; height:100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.drink-card:hover .drink-card-image img { transform:scale(1.08); }
.drink-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 1rem 0.25rem;
  color: var(--text-primary);
}
.drink-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0 1rem 1rem;
  margin-bottom: 0;
}

/* ----------------------------------------
   Happy Hour
   ---------------------------------------- */
.happy-hour {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.happy-hour-overlay {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(10,10,10,0.88);
}
.happy-hour-content {
  position:relative; z-index:2;
}
.happy-hour-deals {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.deal-card {
  background: rgba(165,255,9,0.06);
  border: 1px solid rgba(165,255,9,0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: all var(--transition);
}
.deal-card:hover {
  background: rgba(165,255,9,0.1);
  border-color: rgba(165,255,9,0.3);
  box-shadow: var(--glow-gold);
}
.deal-day {
  display:block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}
.deal-offer {
  display:block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ----------------------------------------
   Events
   ---------------------------------------- */
.events-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.event-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  transition-delay: var(--delay, 0s);
}
.event-card:hover {
  border-color: rgba(165,255,9,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 5px rgba(165,255,9,0.15);
}
.event-card-image {
  position:relative;
  overflow:hidden;
  aspect-ratio: 16/9;
}
.event-card-image img {
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-image img { transform:scale(1.05); }
.event-badge {
  position:absolute;
  top:1rem; right:1rem;
  z-index:2;
  font-size:0.65rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color: var(--black-deep);
  background: var(--gradient-gold);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}
.event-card-content {
  padding: 1.5rem;
}
.event-date {
  display:block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.event-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.event-card-featured {
  grid-column: 1 / -1;
}

/* ----------------------------------------
   About Preview
   ---------------------------------------- */
.about-preview-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}
.about-preview-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position:relative;
}
.about-preview-image img {
  width:100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-preview-image::after {
  content:'';
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  border: 1px solid rgba(165,255,9,0.15);
  border-radius: var(--radius-xl);
  pointer-events:none;
}
.about-preview-text .section-tag { padding-left:0; }
.about-preview-text .section-tag::before { display:none; }
.about-preview-text .section-title { text-align:left; }
.about-preview-text p { color: var(--text-secondary); line-height:1.7; }
.about-preview-text .btn { margin-top:0.5rem; }

/* ----------------------------------------
   Promo Banner
   ---------------------------------------- */
.promo-banner {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.promo-text h2 { font-size:1.75rem; margin-bottom:0.5rem; }
.promo-text p { color: var(--text-secondary); }
.promo-buttons { display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }

/* ----------------------------------------
   Newsletter
   ---------------------------------------- */
.newsletter-section {
  background: var(--blue-deep);
}
.newsletter-inner {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}
.newsletter-inner h2 { font-size:1.75rem; margin-bottom:0.5rem; }
.newsletter-inner p { color: var(--text-muted); margin-bottom:1.5rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.newsletter-form:focus-within { border-color: var(--gold-primary); }
.newsletter-form input {
  flex:1;
  padding: 0.875rem 1rem;
  background: var(--black-soft);
  color: var(--text-primary);
  border:none;
  outline:none;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form .btn { border-radius:0; }

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.site-footer {
  background: var(--black-rich);
  border-top: 1px solid var(--black-border);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
.footer-brand { max-width:300px; }
.footer-logo { border-radius:50%; margin-bottom:1rem; }
.footer-tagline {
  font-size:0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-social {
  display:flex;
  gap:0.75rem;
}
.footer-social a {
  width:40px; height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--text-muted);
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius:50%;
  transition: all var(--transition);
}
.footer-social a:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(165,255,9,0.08);
  box-shadow: var(--glow-gold);
}
.footer-social a svg { width:18px; height:18px; }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  position:relative;
  padding-bottom: 0.5rem;
}
.footer-heading::after {
  content:'';
  position:absolute;
  bottom:0; left:0;
  width:30px; height:2px;
  background: var(--gradient-gold);
}
.footer-links { display:flex; flex-direction:column; gap:0.5rem; }
.footer-links a {
  font-size:0.875rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--gold-primary); padding-left:4px; }

.footer-hours { display:flex; flex-direction:column; gap:0.5rem; }
.footer-hours li {
  display:flex;
  justify-content:space-between;
  font-size:0.85rem;
}
.footer-hours li span:first-child { color: var(--text-muted); }
.footer-hours li span:last-child { color: var(--text-primary); font-weight:500; }

.footer-address {
  font-size:0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer-phone, .footer-email {
  display:block;
  font-size:0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}
.footer-phone:hover, .footer-email:hover { color: var(--gold-primary); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ----------------------------------------
   Back to Top
   ---------------------------------------- */
.back-to-top {
  position:fixed;
  bottom:2rem; right:2rem;
  z-index:500;
  width:44px; height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius:50%;
  opacity:0;
  visibility:hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  cursor:pointer;
}
.back-to-top.visible {
  opacity:1; visibility:visible; transform:translateY(0);
}
.back-to-top:hover {
  border-color: var(--gold-primary);
  background: rgba(165,255,9,0.1);
  box-shadow: var(--glow-gold);
}
.back-to-top svg { width:20px; height:20px; color: var(--gold-primary); }

/* ----------------------------------------
   Menu Page
   ---------------------------------------- */
.menu-filter-bar {
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-filter-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  justify-content:center;
}
.menu-filter-btn {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
}
.menu-filter-btn:hover,
.menu-filter-btn.active {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(165,255,9,0.08);
}
.menu-section { transition: opacity 0.4s ease; }
.menu-section.hidden { display:none; }
.menu-full-image {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--black-border);
}
.menu-full-image img {
  width:100%;
  display:block;
}

/* Delivery CTA */
.delivery-section,
.delivery-cta {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.delivery-inner,
.delivery-cta-inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.delivery-image img,
.delivery-cta-image img {
  width:100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.delivery-text,
.delivery-cta-text {
  padding: 1.5rem;
}
.delivery-text h3,
.delivery-cta-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.delivery-text p,
.delivery-cta-text p {
  color: var(--text-secondary);
}

/* ----------------------------------------
   Contact Page
   ---------------------------------------- */
.contact-section,
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.contact-info {
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-card:hover { border-color: rgba(165,255,9,0.2); }
.contact-card-icon {
  width:48px; height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color: var(--gold-primary);
  background: rgba(165,255,9,0.08);
  border-radius: var(--radius);
}
.contact-card-icon svg { width:22px; height:22px; }
.contact-card-content h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}
.contact-card-content p {
  font-size:0.95rem;
  color: var(--text-primary);
  margin-bottom:0;
}
.contact-card-content a { color: var(--text-primary); }
.contact-card-content a:hover { color: var(--gold-primary); }
.hours-list { display:flex; flex-direction:column; gap:0.25rem; }
.hours-list li {
  display:flex;
  justify-content:space-between;
  font-size:0.85rem;
  color: var(--text-secondary);
}
.hours-list li span:last-child { color: var(--text-primary); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--black-border);
  min-height: 350px;
}
.contact-map iframe {
  width:100%; height:100%;
  min-height:350px;
  border:none;
  filter: grayscale(0.8) brightness(0.6) contrast(1.2);
  transition: filter var(--transition);
}
.contact-map:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.1);
}

/* Contact Form */
.contact-form-section,
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display:block;
  font-size:0.8rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea,
.form-select {
  width:100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline:none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(165,255,9,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize:vertical; min-height:140px; }
.form-select {
  appearance:none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position: right 1rem center;
  padding-right:2.5rem;
  cursor:pointer;
}

/* ----------------------------------------
   FAQ Accordion
   ---------------------------------------- */
.faq-section { max-width:900px; margin:0 auto; }
.faq-list { display:flex; flex-direction:column; gap:0.75rem; }
.faq-item {
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow:hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(165,255,9,0.15); }
.faq-item.active { border-color: rgba(165,255,9,0.25); }
.faq-question {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  width:100%;
  padding: 1.25rem;
  font-size:1rem;
  font-weight:600;
  color: var(--text-primary);
  background: var(--black-card);
  text-align:left;
  transition: color var(--transition);
  cursor:pointer;
}
.faq-question:hover { color: var(--gold-primary); }
.faq-item.active .faq-question { color: var(--gold-primary); }
.faq-icon {
  flex-shrink:0;
  width:24px; height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--gold-dim);
  transition: transform var(--transition);
  font-size: 1.25rem;
}
.faq-item.active .faq-icon { transform:rotate(45deg); color: var(--gold-primary); }
.faq-answer {
  max-height:0;
  overflow:hidden;
  transition: max-height var(--transition-smooth);
}
.faq-item.active .faq-answer { max-height:500px; }
.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  font-size:0.9rem;
  color: var(--text-muted);
  line-height:1.7;
}

/* ----------------------------------------
   Features Grid (About page)
   ---------------------------------------- */
.features-section { }
.features-grid {
  display:grid;
  gap:1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.feature-card {
  padding: 2rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  text-align:center;
  transition: all var(--transition-smooth);
}
.feature-card:hover {
  border-color: rgba(165,255,9,0.2);
  transform: translateY(-3px);
}
.feature-icon {
  width:56px; height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 1rem;
  font-size:1.5rem;
  color: var(--gold-primary);
  background: rgba(165,255,9,0.08);
  border: 1px solid rgba(165,255,9,0.15);
  border-radius:50%;
}
.feature-icon svg { width:24px; height:24px; }
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size:0.85rem;
  color: var(--text-muted);
  margin-bottom:0;
}

/* ----------------------------------------
   Stats Section (About page)
   ---------------------------------------- */
.stats-section {
  background: var(--blue-deep);
  border-top: 1px solid rgba(165,255,9,0.1);
  border-bottom: 1px solid rgba(165,255,9,0.1);
}
.stats-inner {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.stat-item {
  text-align:center;
  padding: 1.5rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height:1;
  margin-bottom:0.25rem;
  display:block;
}
.stat-label {
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color: var(--text-muted);
  display:block;
}

/* ----------------------------------------
   Newsletter Archive
   ---------------------------------------- */
.newsletter-archive {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-archive p { color: var(--text-secondary); }

/* ----------------------------------------
   Social Section
   ---------------------------------------- */
.social-section {
  text-align:center;
}
.social-inner { max-width:600px; margin:0 auto; }
.social-links-large {
  display:flex;
  gap:1rem;
  justify-content:center;
  margin-top:1.5rem;
}
.social-links-large a {
  width:56px; height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--text-muted);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius:50%;
  transition: all var(--transition);
}
.social-links-large a:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}
.social-links-large a svg { width:24px; height:24px; }
.social-hashtag {
  display:inline-block;
  font-size:1.1rem;
  font-weight:600;
  color: var(--gold-primary);
  margin-top:1rem;
}

/* ----------------------------------------
   Reveal / Scroll Animations
   ---------------------------------------- */
.reveal {
  opacity:0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity:1;
  transform: translateY(0) translateX(0);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-up {
  transform: translateY(30px);
}
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  transform: translate(0,0);
}

/* Parallax */
.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@supports (-webkit-overflow-scrolling: touch) {
  .parallax { background-attachment: scroll; }
}

/* Lazy loading placeholder */
.lazy {
  opacity:0;
  transition: opacity 0.5s ease;
}
.lazy.loaded { opacity:1; }

/* ----------------------------------------
   Keyframes
   ---------------------------------------- */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes shimmerGold {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(165,255,9,0.3); }
  50% { box-shadow: 0 0 15px rgba(165,255,9,0.5), 0 0 40px rgba(165,255,9,0.2); }
}

/* ----------------------------------------
   Responsive: Tablet (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
  h1 { font-size:3rem; }
  h2 { font-size:2.25rem; }
  h3 { font-size:1.75rem; }

  .hero-title { font-size:3.5rem; }
  .page-hero-title { font-size:3rem; }
  .section-title { font-size:2.5rem; }

  .info-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .drink-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card-featured { grid-column: 1 / -1; }
  .happy-hour-deals { grid-template-columns: repeat(4, 1fr); }
  .about-preview-inner { grid-template-columns: 1fr 1fr; }
  .contact-section,
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .delivery-inner,
  .delivery-cta-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .footer-bottom { display:flex; justify-content:center; }

  .promo-inner { flex-direction:row; justify-content:space-between; text-align:left; }
}

/* ----------------------------------------
   Responsive: Desktop (1024px+)
   ---------------------------------------- */
@media (min-width: 1024px) {
  h1 { font-size:3.5rem; }
  h2 { font-size:2.5rem; }

  .hero-title { font-size:4.25rem; }
  .page-hero-title { font-size:3.5rem; }

  /* Show desktop nav, hide hamburger */
  .main-nav { display:flex; }
  .hamburger { display:none; }
  .header-cta { display:inline-flex; }
  .nav-footer-mobile { display:none !important; }

  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ----------------------------------------
   Responsive: Large Desktop (1200px+)
   ---------------------------------------- */
@media (min-width: 1200px) {
  h1 { font-size:4rem; }
  .hero-title { font-size:5rem; }
  .page-hero-title { font-size:4rem; }
}

/* ----------------------------------------
   Accessibility & Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity:1; transform:none; }
  .parallax { background-attachment:scroll; }
}

*:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* ----------------------------------------
   Dropdown Navigation
   ---------------------------------------- */
.nav-list li { position:relative; }
.nav-dropdown {
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%) translateY(10px);
  min-width:200px;
  background: var(--glass-bg-heavy);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding:0.5rem 0;
  opacity:0;
  visibility:hidden;
  transition: all var(--transition);
  z-index:100;
}
.nav-list li:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.nav-dropdown a {
  display:block;
  padding:0.6rem 1.25rem;
  font-size:0.8rem;
  font-weight:500;
  color: var(--text-secondary);
  text-transform:uppercase;
  letter-spacing:0.08em;
  transition: all var(--transition);
}
.nav-dropdown a:hover { color: var(--gold-primary); background: rgba(165,255,9,0.05); }
.main-nav.open .nav-dropdown {
  position:static;
  transform:none;
  opacity:1;
  visibility:visible;
  background:transparent;
  border:none;
  backdrop-filter:none;
  padding:0.25rem 0 0.5rem;
}
.main-nav.open .nav-dropdown a {
  font-size:1rem;
  padding:0.4rem 0;
  font-family: var(--font-body);
}

/* ----------------------------------------
   Horizontal Flavor Scroll (Menu Page)
   ---------------------------------------- */
.flavor-scroll-section { overflow:hidden; }
.flavor-scroll {
  display:flex;
  gap:1.5rem;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) var(--black-soft);
}
.flavor-scroll::-webkit-scrollbar { height:6px; }
.flavor-scroll::-webkit-scrollbar-track { background: var(--black-soft); border-radius:3px; }
.flavor-scroll::-webkit-scrollbar-thumb { background: var(--gold-primary); border-radius:3px; }
.flavor-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow:hidden;
  transition: all var(--transition-smooth);
}
.flavor-card:hover {
  border-color: rgba(165,255,9,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--glow-gold);
}
.flavor-card-image {
  aspect-ratio:1/1;
  overflow:hidden;
  background: var(--black-soft);
}
.flavor-card-image img { width:100%; height:100%; object-fit:cover; }
.flavor-card-body { padding:1rem; }
.flavor-card-name {
  font-family: var(--font-heading);
  font-size:1.1rem;
  font-weight:700;
  color: var(--text-primary);
  margin-bottom:0.25rem;
}
.flavor-card-base {
  font-size:0.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color: var(--gold-primary);
  margin-bottom:0.5rem;
  display:block;
}
.flavor-card-desc {
  font-size:0.82rem;
  color: var(--text-muted);
  line-height:1.5;
  margin:0;
}

/* ----------------------------------------
   Spin Wheel (Menu Page)
   ---------------------------------------- */
.spin-section { text-align:center; }
.wheel-container {
  position:relative;
  width:300px;
  height:300px;
  margin:2rem auto;
}
.wheel {
  width:100%;
  height:100%;
  border-radius:50%;
  border: 3px solid var(--gold-primary);
  box-shadow: var(--glow-gold-strong);
  transition: transform 4s cubic-bezier(0.17,0.67,0.12,0.99);
  position:relative;
  overflow:hidden;
}
.wheel-segment {
  position:absolute;
  width:50%;
  height:50%;
  transform-origin: 100% 100%;
  display:flex;
  align-items:center;
  padding-left:15%;
}
.wheel-segment span {
  font-size:0.65rem;
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
  transform: rotate(20deg);
  white-space:nowrap;
}
.wheel-pointer {
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  width:0; height:0;
  border-left:12px solid transparent;
  border-right:12px solid transparent;
  border-top:20px solid var(--gold-primary);
  filter: drop-shadow(0 0 6px rgba(165,255,9,0.6));
}
.wheel-center {
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:50px; height:50px;
  border-radius:50%;
  background: var(--gradient-gold);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:5;
  font-weight:800;
  font-size:0.6rem;
  color: var(--black-deep);
  text-transform:uppercase;
  cursor:pointer;
  box-shadow: var(--glow-gold-strong);
}
.spin-result {
  margin-top:1.5rem;
  font-family: var(--font-heading);
  font-size:1.5rem;
  min-height:2rem;
}
.spin-buttons { display:flex; gap:1rem; justify-content:center; margin-top:1rem; }

/* ----------------------------------------
   Calendar Widget (Events Page)
   ---------------------------------------- */
.calendar-widget {
  max-width:800px;
  margin:0 auto 3rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.calendar-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.25rem 1.5rem;
  background: var(--blue-deep);
}
.calendar-header h3 { font-size:1.1rem; margin:0; }
.calendar-nav {
  background:none;
  border:1px solid rgba(165,255,9,0.2);
  color: var(--gold-primary);
  width:32px; height:32px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all var(--transition);
}
.calendar-nav:hover { background: rgba(165,255,9,0.1); border-color: var(--gold-primary); }
.calendar-days-header {
  display:grid;
  grid-template-columns: repeat(7,1fr);
  text-align:center;
  padding:0.75rem 1rem 0.5rem;
  font-size:0.7rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color: var(--text-muted);
}
.calendar-grid {
  display:grid;
  grid-template-columns: repeat(7,1fr);
  padding:0 1rem 1rem;
  gap:2px;
}
.calendar-day {
  aspect-ratio:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius: var(--radius);
  font-size:0.9rem;
  cursor:pointer;
  transition: all var(--transition);
  position:relative;
}
.calendar-day:hover { background: rgba(165,255,9,0.08); }
.calendar-day.today {
  border: 2px solid var(--gold-primary);
  box-shadow: var(--glow-gold);
  animation: pulseGlow 2s infinite;
  font-weight:700;
  color: var(--gold-primary);
}
.calendar-day.other-month { color: var(--text-muted); opacity:0.3; }
.calendar-day.has-event::after {
  content:'';
  width:5px; height:5px;
  border-radius:50%;
  background: var(--gold-primary);
  position:absolute;
  bottom:4px;
}
.calendar-day.has-event.happy-hour::after { background: var(--blue-light); }
.calendar-day-popup {
  position:absolute;
  bottom:calc(100% + 8px);
  left:50%;
  transform:translateX(-50%);
  background: var(--glass-bg-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding:0.75rem 1rem;
  min-width:180px;
  z-index:20;
  font-size:0.8rem;
  text-align:left;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.calendar-day-popup strong { color: var(--gold-primary); display:block; margin-bottom:0.25rem; }
.calendar-event-dot {
  display:inline-block;
  width:6px; height:6px;
  border-radius:50%;
  margin-right:4px;
}

/* ----------------------------------------
   Delivery Page
   ---------------------------------------- */
.delivery-logos {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:2rem;
  max-width:1000px;
  margin:0 auto;
}
.delivery-logo-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-xl);
  padding:3rem 2rem;
  text-align:center;
  transition: all var(--transition-smooth);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.5rem;
}
.delivery-logo-card:hover {
  border-color: rgba(165,255,9,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--glow-gold);
}
.delivery-logo-card img,
.delivery-logo-card svg {
  height:80px;
  width:auto;
  max-width:200px;
}
.delivery-logo-card h3 { font-size:1.25rem; margin:0; }
.delivery-logo-card p { color: var(--text-muted); margin:0; font-size:0.9rem; }

/* ----------------------------------------
   Photo Gallery (About Page)
   ---------------------------------------- */
.photo-gallery {
  display:grid;
  gap:1rem;
  grid-template-columns: repeat(3, 1fr);
}
.photo-gallery img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  transition: all var(--transition-smooth);
}
.photo-gallery img:hover {
  border-color: rgba(165,255,9,0.2);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* ----------------------------------------
   Newsletter Archive Links
   ---------------------------------------- */
.newsletter-links {
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  max-width:700px;
  margin:0 auto;
}
.newsletter-link-item {
  display:flex;
  align-items:center;
  gap:1rem;
  padding:1rem 1.25rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.newsletter-link-item:hover {
  border-color: rgba(165,255,9,0.2);
  background: var(--black-hover);
}
.newsletter-link-date {
  font-size:0.7rem;
  font-weight:700;
  text-transform:uppercase;
  color: var(--gold-primary);
  white-space:nowrap;
}
.newsletter-link-title {
  font-size:0.9rem;
  color: var(--text-primary);
}

/* ----------------------------------------
   Drink Builder Page
   ---------------------------------------- */
.builder-steps {
  display:flex;
  gap:0.5rem;
  justify-content:center;
  margin-bottom:2rem;
}
.builder-step {
  width:40px; height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:0.85rem;
  border:2px solid var(--black-border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.builder-step.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}
.builder-step.completed {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black-deep);
}
.builder-step-line {
  width:40px;
  height:2px;
  background: var(--black-border);
  align-self:center;
}
.builder-step-line.active { background: var(--gold-primary); }

.builder-panel { display:none; }
.builder-panel.active { display:block; }

.builder-flavors {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1rem;
}
.builder-flavor {
  background: var(--black-card);
  border: 2px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow:hidden;
  cursor:pointer;
  transition: all var(--transition-smooth);
  text-align:center;
}
.builder-flavor:hover { border-color: rgba(165,255,9,0.3); }
.builder-flavor.selected {
  border-color: var(--gold-primary);
  box-shadow: var(--glow-gold);
}
.builder-flavor img { width:100%; aspect-ratio:1; object-fit:cover; }
.builder-flavor span {
  display:block;
  padding:0.5rem;
  font-size:0.8rem;
  font-weight:600;
}

.size-options {
  display:flex;
  gap:1.5rem;
  justify-content:center;
  flex-wrap:wrap;
}
.size-option {
  background: var(--black-card);
  border: 2px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding:2rem 1.5rem;
  text-align:center;
  cursor:pointer;
  transition: all var(--transition);
  min-width:140px;
}
.size-option:hover { border-color: rgba(165,255,9,0.3); }
.size-option.selected { border-color: var(--gold-primary); box-shadow: var(--glow-gold); }
.size-option .cup-visual {
  margin:0 auto 1rem;
  background: var(--blue-deep);
  border-radius: 0 0 var(--radius) var(--radius);
  border:2px solid var(--gold-primary);
  border-top:none;
}
.size-option .size-name { font-weight:700; font-size:1.1rem; display:block; }
.size-option .size-price { color: var(--gold-primary); font-weight:600; }

.extras-grid {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:1rem;
}
.extra-option {
  background: var(--black-card);
  border: 2px solid var(--black-border);
  border-radius: var(--radius);
  padding:1rem;
  cursor:pointer;
  transition: all var(--transition);
  text-align:center;
}
.extra-option:hover { border-color: rgba(165,255,9,0.3); }
.extra-option.selected { border-color: var(--gold-primary); box-shadow: var(--glow-gold); }
.extra-option span { font-weight:600; display:block; }

.blending-animation {
  text-align:center;
  padding:3rem;
}
.blending-animation .cup {
  width:120px;
  height:160px;
  margin:0 auto 1.5rem;
  background: var(--blue-deep);
  border-radius: 0 0 20px 20px;
  border:3px solid var(--gold-primary);
  border-top:none;
  position:relative;
  overflow:hidden;
  animation: shake 0.5s ease infinite;
}
.blending-animation .cup .liquid {
  position:absolute;
  bottom:0; left:0; right:0;
  height:0;
  background: var(--gradient-gold);
  border-radius: 0 0 17px 17px;
  animation: fillCup 2s ease forwards;
}

.drink-card-result {
  max-width:400px;
  margin:2rem auto;
  background: var(--black-card);
  border:2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding:2rem;
  text-align:center;
  box-shadow: var(--glow-gold-strong);
}
.drink-card-result h3 { font-size:1.5rem; margin-bottom:0.5rem; }
.drink-card-result .drink-details { color: var(--text-secondary); font-size:0.9rem; }

/* ----------------------------------------
   Community Mixes Page
   ---------------------------------------- */
.community-grid {
  display:grid;
  gap:1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.mix-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding:1.5rem;
  transition: all var(--transition);
}
.mix-card:hover { border-color: rgba(165,255,9,0.2); }
.mix-card-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:1rem;
}
.mix-card-name {
  font-family: var(--font-heading);
  font-size:1.2rem;
  font-weight:700;
}
.mix-card-votes {
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.vote-btn {
  background: rgba(165,255,9,0.08);
  border: 1px solid rgba(165,255,9,0.2);
  color: var(--gold-primary);
  padding:0.35rem 0.75rem;
  border-radius:50px;
  font-size:0.8rem;
  font-weight:600;
  cursor:pointer;
  transition: all var(--transition);
}
.vote-btn:hover { background: rgba(165,255,9,0.15); }
.vote-btn.voted { background: var(--gold-primary); color: var(--black-deep); }
.mix-card-flavors {
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:0.75rem;
}
.flavor-tag {
  font-size:0.7rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding:0.3rem 0.75rem;
  border-radius:50px;
  background: var(--blue-deep);
  color: var(--text-primary);
}
.mix-card-creator {
  font-size:0.8rem;
  color: var(--text-muted);
}
.mix-form {
  max-width:600px;
  margin:0 auto 3rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding:2rem;
}

/* Confetti */
.confetti-container {
  position:fixed;
  top:0; left:0; width:100%; height:100%;
  pointer-events:none;
  z-index:9999;
  overflow:hidden;
}
.confetti-piece {
  position:absolute;
  width:10px;
  height:10px;
  top:-10px;
  animation: confettiFall 3s ease-in forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(0) rotate(0deg); opacity:1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity:0; }
}

/* ----------------------------------------
   Animated Hero Drink
   ---------------------------------------- */
.hero-drink-visual {
  position:absolute;
  right:5%;
  bottom:10%;
  z-index:3;
  width:200px;
  height:280px;
  display:none;
}
.hero-cup {
  width:100%;
  height:100%;
  position:relative;
}
.hero-cup-body {
  position:absolute;
  bottom:0;
  left:10%;
  width:80%;
  height:75%;
  background: linear-gradient(180deg, rgba(49,76,155,0.4) 0%, rgba(49,76,155,0.8) 100%);
  border-radius: 0 0 30% 30%;
  border:2px solid rgba(165,255,9,0.4);
  border-top:none;
  overflow:hidden;
}
.hero-cup-liquid {
  position:absolute;
  bottom:0; left:0; right:0;
  height:70%;
  background: linear-gradient(180deg, rgba(165,255,9,0.3) 0%, rgba(165,255,9,0.6) 100%);
  border-radius: 0 0 30% 30%;
  animation: liquidWave 3s ease-in-out infinite;
}
.hero-cup-liquid::before {
  content:'';
  position:absolute;
  top:-5px; left:-5%; right:-5%;
  height:12px;
  background: radial-gradient(ellipse, rgba(165,255,9,0.8) 0%, rgba(165,255,9,0.2) 100%);
  border-radius:50%;
  animation: waveBob 2s ease-in-out infinite;
}
.hero-cup-glow {
  position:absolute;
  bottom:10%; left:50%;
  transform:translateX(-50%);
  width:160%;
  height:80%;
  background: radial-gradient(ellipse, rgba(165,255,9,0.15) 0%, transparent 70%);
  z-index:-1;
  animation: pulseGlow 3s ease-in-out infinite;
}
.hero-cup-frost {
  position:absolute;
  top:10%; left:5%; right:5%;
  height:30%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.03) 3px,
    rgba(255,255,255,0.03) 4px
  );
  animation: frostShimmer 4s ease infinite;
}
.hero-cup-drops .drop {
  position:absolute;
  width:3px;
  background: rgba(255,255,255,0.3);
  border-radius: 0 0 50% 50%;
  animation: dropSlide 4s linear infinite;
}
@keyframes liquidWave {
  0%,100% { height:68%; }
  50% { height:72%; }
}
@keyframes waveBob {
  0%,100% { transform: scaleX(1); }
  50% { transform: scaleX(1.05); }
}
@keyframes frostShimmer {
  0%,100% { opacity:0.5; }
  50% { opacity:0.8; }
}
@keyframes dropSlide {
  0% { top:15%; height:0; opacity:0; }
  10% { opacity:0.6; height:8px; }
  80% { opacity:0.3; }
  100% { top:75%; height:12px; opacity:0; }
}
@keyframes shake {
  0%,100% { transform:rotate(-1deg); }
  50% { transform:rotate(1deg); }
}
@keyframes fillCup {
  0% { height:0; }
  100% { height:80%; }
}

/* ----------------------------------------
   Pop-Up Page
   ---------------------------------------- */
.popup-info-grid {
  display:grid;
  gap:2rem;
  grid-template-columns: 1fr;
}
.popup-image {
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--black-border);
}
.popup-image img { width:100%; display:block; }

/* ----------------------------------------
   Feedback Page
   ---------------------------------------- */
.feedback-form {
  max-width:700px;
  margin:0 auto;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding:2rem;
}
.star-rating {
  display:flex;
  gap:0.5rem;
  justify-content:center;
  margin:1rem 0;
}
.star-rating button {
  font-size:2rem;
  color: var(--black-border);
  transition: color var(--transition);
  cursor:pointer;
}
.star-rating button.active,
.star-rating button:hover { color: var(--gold-primary); }

/* ----------------------------------------
   Mobile Responsive Additions
   ---------------------------------------- */
@media (max-width:767px) {
  .photo-gallery { grid-template-columns:1fr; }
  .builder-flavors { grid-template-columns: repeat(2,1fr); }
  .extras-grid { grid-template-columns: 1fr; }
  .size-options { flex-direction:column; align-items:center; }
  .hero-drink-visual { display:none !important; }
  .calendar-day { font-size:0.75rem; }
  .flavor-card { flex: 0 0 200px; }
  .delivery-logos { grid-template-columns:1fr; }
}
@media (min-width:768px) {
  .popup-info-grid { grid-template-columns: 1fr 1fr; }
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .extras-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width:1024px) {
  .hero-drink-visual { display:block; }
  .flavor-card { flex: 0 0 280px; }
}

/* ----------------------------------------
   Event Calendar Widget
   ---------------------------------------- */
.calendar-widget {
  max-width: 540px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 1.5rem;
  overflow: hidden;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0;
}
.calendar-nav {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.calendar-nav:hover {
  background: var(--black-hover);
  border-color: var(--gold-primary);
}
.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}
.calendar-days-header span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted, #888);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
  padding: 2px;
}
.calendar-day.other-month {
  color: #444;
}
.calendar-day.today {
  border-color: var(--gold-primary);
  background: rgba(165, 255, 9, 0.08);
  font-weight: 700;
}
.calendar-day.has-event {
  cursor: pointer;
  background: var(--black-soft);
  border-color: var(--black-border);
}
.calendar-day.has-event:hover {
  border-color: var(--gold-primary);
  background: rgba(165, 255, 9, 0.06);
}
.calendar-day.happy-hour {
  /* subtle warm tint for happy hour days */
}
.calendar-event-dots {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}
.calendar-event-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.calendar-day-popup {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-rich);
  border: 1px solid var(--gold-primary);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 200px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  animation: popupFadeIn 0.15s ease;
}
.calendar-day-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gold-primary);
}
@keyframes popupFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.popup-event-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--text-primary);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .calendar-widget { padding: 1rem; }
  .calendar-day { font-size: 0.78rem; }
  .calendar-day-popup { min-width: 160px; font-size: 0.75rem; }
}

/* ----------------------------------------
   Print
   ---------------------------------------- */
@media print {
  .site-header, .site-footer, .back-to-top, .hero-dots, .calendar-widget, .spin-section { display:none !important; }
  body { background:#fff; color:#000; }
  .hero { min-height:auto; padding:2rem 0; }
}
