/* ============================================
   NEON SPEAKEASY - Retro-Futuristic Theme
   Home Bar Styling & Mixology
   ============================================ */

:root {
  /* Color Palette - Neon Speakeasy */
  --color-bg-primary: #0D0D0F;
  --color-bg-secondary: #1a1a1d;
  --color-accent-primary: #FF8C00;
  --color-accent-secondary: #00F5FF;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B8B8B8;
  --color-border: rgba(255, 140, 0, 0.3);
  --color-glass: rgba(255, 255, 255, 0.05);
  
  /* Typography */
  --font-primary: 'Stravinsky', serif;
  --font-secondary: 'Michroma', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows & Effects */
  --shadow-glow: 0 0 20px rgba(255, 140, 0, 0.3);
  --shadow-glow-strong: 0 0 40px rgba(255, 140, 0, 0.5);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-rim: 0 0 0 1px rgba(255, 140, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

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

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-accent-secondary);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.95) 0%, rgba(13, 13, 15, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
}

.brand-name {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
}

.header-container nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  white-space: nowrap;
}

.nav-menu li a:hover {
  background: rgba(255, 140, 0, 0.1);
  box-shadow: var(--shadow-rim);
}

/* Burger Menu - Always in Header */
.burger-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  margin-left: var(--space-md);
  z-index: 1001;
  flex-shrink: 0;
}

.burger-toggle:hover {
  background: rgba(255, 140, 0, 0.1);
  box-shadow: var(--shadow-rim);
}

.burger-icon {
  width: 24px;
  height: 2px;
  background: var(--color-accent-primary);
  position: relative;
  transition: var(--transition-base);
}

.burger-icon::before,
.burger-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--color-accent-primary);
  transition: var(--transition-base);
}

.burger-icon::before {
  top: -8px;
}

.burger-icon::after {
  bottom: -8px;
}

.burger-toggle.active .burger-icon {
  background: transparent;
}

.burger-toggle.active .burger-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-toggle.active .burger-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu - Separate from Header */
.mobile-menu {
  display: none;
}



/* Mobile Navigation - Opens Separately from Header */
@media (max-width: 1023px) {
  .header-container nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(13, 13, 15, 0.98) 0%, rgba(26, 26, 29, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: calc(var(--space-xxl) + 20px) var(--space-lg) var(--space-lg);
    border-left: 1px solid var(--color-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  .mobile-menu.active {
    right: 0;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.7);
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .mobile-menu li {
    width: 100%;
  }

  .mobile-menu li a {
    display: block;
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    transition: var(--transition-base);
    border-radius: var(--radius-md);
  }

  .mobile-menu li a:hover {
    background: rgba(255, 140, 0, 0.1);
    color: var(--color-accent-primary);
    padding-left: calc(var(--space-md) + var(--space-sm));
    box-shadow: var(--shadow-rim);
  }

  .mobile-menu-overlay {
    display: block;
  }

  .burger-toggle {
    display: flex;
  }
}

/* ============================================
   HERO BANNERS (Full-Width)
   ============================================ */

.hero-banner {
  position: relative;
  width: 100vw;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.7) 0%, rgba(13, 13, 15, 0.9) 100%);
  z-index: 2;
}

/* Section Banner (for banners inside content sections) */
.section-banner {
  position: relative;
  width: 100vw;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: var(--space-xl) calc(-50vw + 50%);
}

.section-banner.compact {
  min-height: 40vh;
}

/* Centered Content Sections */
.content-section.centered {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-card {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.content-card-wide {
  max-width: 900px;
  margin: 0 auto;
}

.error-title {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  color: var(--color-accent-primary);
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.thank-you-text {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: var(--space-xl);
  text-align: center;
}

.banner-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 40px rgba(255, 140, 0, 0.6);
}

.banner-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   MAIN CONTENT & SECTIONS
   ============================================ */

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.content-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) var(--space-md);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md);
}

.grid-item {
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
  opacity: 0;
  transition: var(--transition-base);
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  border-color: var(--color-accent-primary);
}

.grid-item:hover::before {
  opacity: 1;
}

.grid-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
}

.grid-title {
  font-family: var(--font-secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-accent-primary);
  text-align: center;
}

.grid-text {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

/* Two Column Grid */
.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-two-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-glass);
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */

.glass-card {
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-accent-primary);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-accent-primary);
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent-primary);
  transition: var(--transition-base);
  z-index: -1;
}

.btn:hover {
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-glow);
}

.btn:hover::before {
  left: 0;
}

.btn-secondary {
  border-color: var(--color-accent-secondary);
  color: var(--color-accent-secondary);
}

.btn-secondary::before {
  background: var(--color-accent-secondary);
}

.btn-secondary:hover {
  color: var(--color-bg-primary);
}

/* ============================================
   FORMS
   ============================================ */

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-base);
  backdrop-filter: blur(10px);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1), var(--shadow-rim);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-accent-primary);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   PRODUCTS
   ============================================ */

.product-card {
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
  border-color: var(--color-accent-primary);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
}

.product-title {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  color: var(--color-accent-primary);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--color-accent-secondary);
  margin: var(--space-md) 0;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.product-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   MAPS
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-glass);
  margin-top: var(--space-lg);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.95) 0%, rgba(26, 26, 29, 0.95) 100%);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xxl);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-section h4 {
  font-family: var(--font-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-primary);
  margin-bottom: var(--space-md);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  transition: var(--transition-base);
}

.footer-menu a:hover {
  color: var(--color-accent-primary);
  padding-left: var(--space-sm);
}

.footer-text {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .grid-two {
    grid-template-columns: 1fr;
  }

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

  .hero-banner {
    min-height: 50vh;
  }

  .banner-content {
    padding: var(--space-lg);
  }

  main {
    padding: var(--space-lg) var(--space-md);
  }

  .content-section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }

  .header-container {
    padding: var(--space-md) 0;
  }

  .brand-name {
    font-size: 1.25rem;
  }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Caustics Effect (Light Refraction) */
.caustics-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
  animation: caustics 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes caustics {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.5;
  }
}

