/* ========================================
   THE GLASS TURTLE — Styles
   ======================================== */

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

:root {
  --color-bg-dark: #1C1C1C;
  --color-bg-light: #FAF7F2;
  --color-bg-mid: #F5F0E8;
  --color-accent-amber: #D4922E;
  --color-accent-green: #2D5E3A;
  --color-text-light: #F5F0E8;
  --color-text-dark: #2A2A2A;
  --color-overlay: rgba(28, 28, 28, 0.72);
  --color-border: rgba(212, 146, 46, 0.25);
  --color-amber-glow: rgba(212, 146, 46, 0.12);
  --font-display: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', 'Arial', sans-serif;
  --font-quote: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-text-dark); background: var(--color-bg-dark); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

[id] { scroll-margin-top: 64px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 80px; } }

/* --- BUTTONS --- */
.btn { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease, border-color 200ms ease, color 200ms ease; }
.btn-primary { background: var(--color-accent-amber); color: var(--color-bg-dark); padding: 14px 32px; border: none; }
.btn-primary:hover { background: #C2831E; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,146,46,0.35); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-ghost { background: transparent; color: var(--color-text-light); padding: 13px 31px; border: 1px solid rgba(245,240,232,0.45); }
.btn-ghost:hover { border-color: var(--color-accent-amber); color: var(--color-accent-amber); background: rgba(212,146,46,0.06); }
:focus-visible { outline: 2px solid var(--color-accent-amber); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* --- SECTION TAGS --- */
.section-tag { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent-amber); display: inline-block; margin-bottom: 12px; }
.section-tag-light { color: var(--color-accent-green); }

.section-headline { font-family: var(--font-display); font-size: 40px; line-height: 1.0; letter-spacing: 0.02em; color: var(--color-text-light); }
.section-headline-dark { color: var(--color-text-dark); }
@media (min-width: 768px) { .section-headline { font-size: 52px; } }
@media (min-width: 1024px) { .section-headline { font-size: 64px; } }

.section-subheadline { font-size: 16px; color: rgba(42,42,42,0.75); margin-top: 12px; line-height: 1.6; }
@media (min-width: 768px) { .section-subheadline { font-size: 18px; } }

/* --- NAVIGATION --- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 56px; background: transparent; transition: background 300ms ease, box-shadow 300ms ease; }
@media (min-width: 768px) { .nav { height: 64px; } }
.nav.scrolled { background: var(--color-bg-dark); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .nav-container { padding: 0 40px; } }
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-text { font-family: var(--font-display); font-size: 22px; color: var(--color-text-light); letter-spacing: 0.08em; line-height: 1; }
.nav-logo-tag { font-family: var(--font-body); font-size: 9px; font-weight: 700; color: var(--color-accent-amber); letter-spacing: 0.15em; margin-top: 2px; }
.nav-links { display: none; gap: 32px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.75); transition: color 200ms ease, opacity 200ms ease; }
.nav-link:hover, .nav-link.active { color: var(--color-accent-amber); opacity: 1; }
.btn-nav-cta { display: none; padding: 10px 22px; font-size: 13px; }
@media (min-width: 1024px) { .btn-nav-cta { display: inline-block; } }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 28px; height: 28px; background: none; border: none; cursor: pointer; padding: 0; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 20px; height: 2px; background: rgba(245,240,232,0.85); transition: transform 250ms ease, opacity 250ms ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile Menu */
.mobile-menu-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--color-bg-dark); z-index: 999; display: flex; align-items: center; justify-content: center; transform: translateY(-100%); transition: transform 300ms ease; }
.mobile-menu-overlay.open { transform: translateY(0); }
.mobile-menu-close { position: absolute; top: 16px; right: 24px; font-size: 36px; color: var(--color-text-light); background: none; border: none; cursor: pointer; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu-links a { font-family: var(--font-display); font-size: 32px; color: var(--color-text-light); letter-spacing: 0.04em; padding: 12px 0; }

/* --- HERO --- */
.hero { position: relative; min-height: 600px; height: 80vh; display: flex; align-items: center; background: linear-gradient(135deg, #1C1C1C 0%, #2D2416 40%, #1C1C1C 100%); overflow: hidden; }
@media (min-width: 480px) { .hero { height: 85vh; } }
@media (min-width: 768px) { .hero { height: 90vh; } }
@media (min-width: 1024px) { .hero { height: 100vh; } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,28,28,0.55) 0%, rgba(28,28,28,0.72) 60%, rgba(28,28,28,0.88) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
@media (min-width: 768px) { .hero-content { padding: 0 40px; } }
@media (min-width: 1024px) { .hero-content { padding: 0 80px; } }
.hero-tag { margin-bottom: 16px; }
.hero-headline { font-family: var(--font-display); font-size: 44px; color: var(--color-text-light); line-height: 0.95; letter-spacing: 0.02em; max-width: 680px; }
@media (min-width: 480px) { .hero-headline { font-size: 52px; } }
@media (min-width: 768px) { .hero-headline { font-size: 64px; } }
@media (min-width: 1024px) { .hero-headline { font-size: 80px; } }
@media (min-width: 1200px) { .hero-headline { font-size: 96px; } }
.hero-subheadline { font-size: 15px; color: rgba(245,240,232,0.85); margin-top: 24px; margin-bottom: 40px; max-width: 520px; line-height: 1.6; }
@media (min-width: 768px) { .hero-subheadline { font-size: 17px; } }
@media (min-width: 1024px) { .hero-subheadline { font-size: 20px; } }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
@media (max-width: 639px) { .hero-cta-row { flex-direction: column; } .hero-cta-row .btn { width: 100%; text-align: center; } }

/* Hero animation */
.hero-anim { opacity: 0; transform: translateY(16px); }
.hero-anim.is-visible { opacity: 1; transform: translateY(0); transition: opacity 600ms ease, transform 600ms ease; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; color: rgba(212,146,46,0.7); }
.scroll-line { width: 1px; height: 32px; background: currentColor; margin-bottom: 8px; }
.scroll-indicator svg { animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 0.7; } 50% { transform: translateY(6px); opacity: 1; } }
@media (max-height: 680px) { .scroll-indicator { display: none; } }

/* --- ABOUT --- */
.about { background: var(--color-bg-light); padding: 56px 0; }
@media (min-width: 768px) { .about { padding: 72px 0; } }
@media (min-width: 1024px) { .about { padding: 96px 0; } }
.about-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .about-grid { flex-direction: row; gap: 40px; align-items: flex-start; } }
@media (min-width: 1024px) { .about-grid { gap: 64px; } }
.about-image { width: 100%; }
@media (min-width: 768px) { .about-image { width: 42%; flex-shrink: 0; } }
@media (min-width: 1024px) { .about-image { width: 45%; } }
.about-image-placeholder { width: 100%; height: 260px; background: linear-gradient(135deg, #2D3B2E, #3D4A3E, #2D5E3A); border-radius: 4px; box-shadow: 16px 24px 48px rgba(28,28,28,0.14); }
@media (min-width: 768px) { .about-image-placeholder { height: 0; padding-bottom: 125%; } }
.about-text { width: 100%; }
@media (min-width: 768px) { .about-text { width: 55%; } }
@media (min-width: 1024px) { .about-text { width: 50%; } }
.about-body { font-size: 15px; line-height: 1.75; color: var(--color-text-dark); margin-top: 24px; max-width: 480px; }
@media (min-width: 768px) { .about-body { font-size: 16px; } }
.about-divider { width: 48px; height: 2px; background: var(--color-accent-amber); margin: 32px 0; }
.pull-quote { position: relative; padding-left: 8px; }
.pull-quote-mark { font-family: var(--font-quote); font-size: 80px; color: var(--color-accent-amber); opacity: 0.25; position: absolute; top: -20px; left: -16px; line-height: 1; }
.pull-quote p { font-family: var(--font-quote); font-size: 19px; font-style: italic; color: var(--color-text-dark); line-height: 1.55; }
@media (min-width: 768px) { .pull-quote p { font-size: 22px; } }

/* --- MENU --- */
.menu-section { background: var(--color-bg-mid); padding: 56px 0; }
@media (min-width: 768px) { .menu-section { padding: 72px 0; } }
@media (min-width: 1024px) { .menu-section { padding: 96px 0; } }
.section-header { max-width: 600px; margin-bottom: 40px; }
@media (min-width: 768px) { .section-header { margin-bottom: 56px; } }
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.menu-card { background: #fff; border-radius: 4px; border: 1px solid rgba(212,146,46,0.15); box-shadow: 0 2px 12px rgba(28,28,28,0.06); overflow: hidden; transition: box-shadow 250ms ease, transform 250ms ease, border-color 250ms ease; }
.menu-card:hover { box-shadow: 0 8px 32px rgba(28,28,28,0.12); transform: translateY(-4px); border-color: rgba(212,146,46,0.35); }
.menu-card-image { height: 180px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 640px) and (max-width: 1023px) { .menu-card-image { height: 180px; } }
@media (min-width: 1024px) { .menu-card-image { height: 200px; } }
@media (max-width: 639px) { .menu-card-image { height: 220px; } }
.menu-card-image-label { font-size: 48px; }
.card-gradient-1 { background: linear-gradient(135deg, #2A2A2A, #3D2B0F); }
.card-gradient-2 { background: linear-gradient(135deg, #1C1C1C, #2D3B2E); }
.card-gradient-3 { background: linear-gradient(135deg, #2A2A2A, #4A2C0E); }
.card-gradient-4 { background: linear-gradient(135deg, #1C2E1F, #2D5E3A); }
.card-gradient-5 { background: linear-gradient(135deg, #3D2B0F, #1C1C1C); }
.card-gradient-6 { background: linear-gradient(135deg, #2D3B2E, #2A2A2A); }
.menu-card-content { padding: 20px 24px 24px; }
.menu-card-title { font-family: var(--font-display); font-size: 22px; color: var(--color-text-dark); letter-spacing: 0.02em; margin-bottom: 6px; }
.menu-card-desc { font-size: 14px; color: rgba(42,42,42,0.72); line-height: 1.6; }

/* Drink strip */
.drink-strip { background: var(--color-bg-dark); padding: 32px 24px; margin-top: 56px; }
@media (min-width: 768px) { .drink-strip { padding: 40px 40px; } }
@media (min-width: 1024px) { .drink-strip { padding: 48px 80px; } }
.drink-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-direction: column; gap: 24px; text-align: center; }
@media (min-width: 768px) { .drink-strip-inner { flex-direction: row; text-align: left; } }
.drink-strip-title { font-family: var(--font-display); font-size: 36px; color: var(--color-text-light); letter-spacing: 0.04em; }
@media (min-width: 768px) { .drink-strip-title { font-size: 48px; } }
.drink-strip-desc { font-size: 16px; color: rgba(245,240,232,0.70); margin-top: 8px; }
.drink-strip-icon { opacity: 0.85; }

/* --- VIBE / EVENTS --- */
.vibe { background: var(--color-bg-dark); padding: 56px 0; }
@media (min-width: 768px) { .vibe { padding: 72px 0; } }
@media (min-width: 1024px) { .vibe { padding: 96px 0; } }
.vibe-body { font-size: 16px; color: rgba(245,240,232,0.80); line-height: 1.75; margin-top: 24px; max-width: 600px; }
@media (min-width: 768px) { .vibe-body { font-size: 17px; } }
.vibe-quote { background: rgba(212,146,46,0.08); border-left: 3px solid var(--color-accent-amber); padding: 24px 32px; margin: 40px 0 56px; max-width: 640px; border-radius: 0 4px 4px 0; }
.vibe-quote-text { font-family: var(--font-quote); font-style: italic; font-size: 19px; color: var(--color-text-light); line-height: 1.5; }
@media (min-width: 768px) { .vibe-quote-text { font-size: 22px; } }
.vibe-quote-attr { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--color-accent-amber); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; display: block; }
.event-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .event-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .event-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
@media (max-width: 639px) { .event-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; } .event-grid::-webkit-scrollbar { display: none; } .event-card { min-width: 280px; scroll-snap-align: start; } }
.event-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,146,46,0.20); border-radius: 4px; padding: 28px 24px; transition: background 220ms ease, border-color 220ms ease, transform 220ms ease; }
.event-card:hover { background: rgba(212,146,46,0.10); border-color: rgba(212,146,46,0.45); transform: translateY(-3px); }
.event-icon { margin-bottom: 16px; }
.event-title { font-family: var(--font-display); font-size: 26px; color: var(--color-text-light); letter-spacing: 0.02em; margin-bottom: 8px; }
.event-detail { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: rgba(212,146,46,0.90); line-height: 1.5; }
.vibe-follow { text-align: center; margin-top: 56px; }
.vibe-follow-label { font-size: 11px; font-weight: 400; color: rgba(245,240,232,0.55); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }

/* --- LOCATION --- */
.location { background: var(--color-bg-light); padding: 56px 0; }
@media (min-width: 768px) { .location { padding: 72px 0; } }
@media (min-width: 1024px) { .location { padding: 96px 0; } }
.location-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .location-grid { flex-direction: row; gap: 40px; } }
.location-info { width: 100%; }
@media (min-width: 768px) { .location-info { width: 44%; } }
@media (min-width: 1024px) { .location-info { width: 42%; } }
.location-headline { font-family: var(--font-display); font-size: 32px; color: var(--color-text-dark); line-height: 1.05; margin-bottom: 8px; }
@media (min-width: 768px) { .location-headline { font-size: 40px; } }
@media (min-width: 1024px) { .location-headline { font-size: 52px; } }
.location-address { font-size: 16px; font-weight: 500; color: rgba(42,42,42,0.70); line-height: 1.7; margin-bottom: 32px; }
.hours-table { background: #fff; border: 1px solid rgba(42,42,42,0.10); border-radius: 4px; padding: 24px 28px; margin-bottom: 32px; max-width: 360px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(42,42,42,0.07); }
.hours-row:last-of-type { border-bottom: none; }
.hours-day { font-weight: 600; font-size: 14px; color: var(--color-text-dark); }
.hours-time { font-size: 14px; color: rgba(42,42,42,0.72); }
.hours-disclaimer { font-size: 12px; color: rgba(42,42,42,0.45); margin-top: 12px; }
.location-map { width: 100%; height: 300px; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 40px rgba(28,28,28,0.10); }
@media (min-width: 768px) { .location-map { width: 53%; height: 400px; } }
@media (min-width: 1024px) { .location-map { width: 55%; height: 480px; } }
.location-map iframe { width: 100%; height: 100%; }

/* --- FOOTER --- */
.footer { background: var(--color-bg-dark); }
.footer-cta { background: rgba(212,146,46,0.07); padding: 40px 24px; text-align: center; }
@media (min-width: 768px) { .footer-cta { padding: 56px 80px; } }
.footer-cta-headline { font-family: var(--font-display); font-size: 40px; color: var(--color-text-light); }
@media (min-width: 768px) { .footer-cta-headline { font-size: 56px; } }
.footer-cta-sub { font-size: 16px; color: rgba(245,240,232,0.55); margin-top: 8px; margin-bottom: 32px; }
.footer-rule { height: 1px; background: rgba(255,255,255,0.08); }
.footer-info { display: flex; flex-direction: column; gap: 32px; padding: 56px 24px; }
@media (min-width: 768px) { .footer-info { flex-direction: row; gap: 40px; padding: 56px 40px; } }
@media (min-width: 1024px) { .footer-info { padding: 56px 80px; } }
.footer-col { flex: 1; }
.footer-wordmark { font-family: var(--font-display); font-size: 24px; color: var(--color-text-light); letter-spacing: 0.08em; display: block; }
.footer-est { font-family: var(--font-body); font-size: 10px; font-weight: 700; color: var(--color-accent-amber); letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-top: 4px; }
.footer-desc { font-size: 13px; color: rgba(245,240,232,0.55); line-height: 1.7; margin-top: 16px; max-width: 240px; }
.footer-col-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--color-accent-amber); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(245,240,232,0.65); line-height: 2.2; transition: color 150ms ease; }
.footer-links a:hover { color: var(--color-accent-amber); }
.social-icons { display: flex; gap: 16px; }
.social-icons a { color: rgba(245,240,232,0.65); transition: color 150ms ease, transform 150ms ease; }
.social-icons a:hover { color: var(--color-accent-amber); transform: scale(1.12); }
.social-handle { font-size: 13px; color: rgba(245,240,232,0.45); margin-top: 10px; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 24px; font-size: 12px; color: rgba(245,240,232,0.30); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; padding: 20px 40px; } }
@media (min-width: 1024px) { .footer-bottom { padding: 20px 80px; } }

/* --- ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
  .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); transition-delay: var(--stagger, 0ms); }
  .animate-slide-left { transform: translateX(-24px); }
  .animate-slide-left.is-visible { transform: translateX(0); }
  .animate-slide-right { transform: translateX(24px); }
  .animate-slide-right.is-visible { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll, .hero-anim { opacity: 1 !important; transform: none !important; }
}
