/* ============================================
   Art Deco Futurism - The Digital Speakeasy
   Bar Cart & Home Bar Styling Website
   ============================================ */

/* CSS Variables */
:root {
  /* Color Palette */
  --color-midnight-teal: #04202C;
  --color-deep-emerald: #0a3d3d;
  --color-burnished-gold: #C5A059;
  --color-champagne-white: #F7E7CE;
  --color-gold-light: #E8D5A3;
  --color-gold-dark: #A68B4F;
  --color-dark-bg: #0a1a1f;
  --color-overlay: rgba(4, 32, 44, 0.85);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', 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: 12px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* 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);
  color: var(--color-champagne-white);
  background-color: var(--color-midnight-teal);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Cursor */
body {
  cursor: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-burnished-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}

.cursor-trail {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-burnished-gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.3;
  transition: transform 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-champagne-white);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(1.4rem, 4vw, 3rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.7rem);
}

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

a {
  color: var(--color-burnished-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-gold-light);
}

/* Header */
.site-header {
  position: relative;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-overlay);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  z-index: 1000;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-champagne-white);
  font-weight: 700;
}

.main-navigation {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  color: var(--color-champagne-white);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  padding: var(--space-sm) var(--space-md);
  display: block;
  position: relative;
  transition: color var(--transition-base);
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-burnished-gold);
  transition: width var(--transition-base);
}

.main-navigation a:hover::after {
  width: 80%;
}

/* Burger Menu */
.burger-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--color-burnished-gold);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-base);
  z-index: 10001;
}

.burger-toggle:hover {
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-gold);
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--color-burnished-gold);
  transition: all var(--transition-base);
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-dark-bg);
  z-index: 10000;
  padding: var(--space-xxl) var(--space-lg);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
  border-right: 2px solid var(--color-burnished-gold);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  transform: translateX(0);
}


.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
}

.mobile-nav-list a {
  font-size: 1.5rem;
  color: var(--color-champagne-white);
  padding: var(--space-md);
  display: block;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: all var(--transition-base);
}

.mobile-nav-list a:hover {
  color: var(--color-burnished-gold);
  padding-left: var(--space-lg);
}

/* Main Content */
main {
  min-height: calc(100vh - 200px);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100vw;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  transform: none !important;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 32, 44, 0.7) 0%, rgba(10, 26, 31, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-title::before,
.hero-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background: var(--color-burnished-gold);
  top: 50%;
  transform: translateY(-50%);
}

.hero-title::before {
  left: -80px;
}

.hero-title::after {
  right: -80px;
}

.hero-description {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-xl);
  color: var(--color-champagne-white);
  opacity: 0.95;
}

/* Section Styles */
.content-section {
  padding: var(--space-xxl) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.content-section > * {
  text-align: center;
}

.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: 3px;
  background: linear-gradient(90deg, transparent, var(--color-burnished-gold), transparent);
}

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

.grid-item {
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(5px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-item:hover {
  border-color: var(--color-burnished-gold);
  box-shadow: var(--shadow-gold);
}

.grid-item-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

/* Banner Section */
.banner-section {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  margin: var(--space-xxl) 0;
  margin-left: calc(-50vw + 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: none !important;
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4, 32, 44, 0.6) 0%, rgba(10, 26, 31, 0.8) 100%);
  z-index: 2;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border: 2px solid var(--color-burnished-gold);
  color: var(--color-champagne-white);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

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

.btn:hover {
  color: var(--color-midnight-teal);
  box-shadow: var(--shadow-gold);
}

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

.btn-primary {
  background: var(--color-burnished-gold);
  color: var(--color-midnight-teal);
}

.btn-primary::before {
  background: var(--color-gold-light);
  color: black;
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-champagne-white);
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(10, 26, 31, 0.5);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-champagne-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-burnished-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

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

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

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: rgba(197, 160, 89, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.product-card:hover {
  border-color: var(--color-burnished-gold);
  box-shadow: var(--shadow-gold);
}

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

.product-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-champagne-white);
}

.product-price {
  font-size: 1.25rem;
  color: var(--color-burnished-gold);
  font-weight: 600;
  margin-top: var(--space-md);
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(197, 160, 89, 0.3);
  margin-top: var(--space-lg);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.site-footer {
  background: var(--color-dark-bg);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: var(--space-xl) var(--space-lg);
  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 h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: var(--color-burnished-gold);
}

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

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

.footer-nav a {
  color: var(--color-champagne-white);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

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

.footer-contact {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-copyright {
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  font-size: 0.875rem;
  color: rgba(247, 231, 206, 0.6);
}

/* Privacy Policy Popup */
.privacy-popup {
  display: none;
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - var(--space-xl));
  background: var(--color-dark-bg);
  border: 2px solid var(--color-burnished-gold);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  z-index: 10000;
  box-shadow: var(--shadow-lg);
}

.privacy-popup.active {
  display: block;
}

.privacy-popup-content {
  margin-bottom: var(--space-md);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

/* 404 Page */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-burnished-gold);
  margin-bottom: var(--space-md);
}

/* Geometric Decorations */
.geometric-line {
  position: absolute;
  background: var(--color-burnished-gold);
  opacity: 0.3;
}

.geometric-line-horizontal {
  width: 100px;
  height: 2px;
}

.geometric-line-vertical {
  width: 2px;
  height: 100px;
}

/* Parallax Elements - DISABLED */
.parallax-element {
  display: none;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .main-navigation {
    display: none;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .header-container {
    justify-content: space-between;
  }
  
  .hero-title::before,
  .hero-title::after {
    display: none;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  .content-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .hero-banner,
  .banner-section {
    min-height: 50vh;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .privacy-popup {
    width: calc(100% - var(--space-md));
    bottom: var(--space-md);
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .brand-name {
    font-size: 1.25rem;
  }
  
  .hero-content,
  .banner-content {
    padding: var(--space-md);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.875rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .content-section {
    padding: var(--space-lg) var(--space-sm);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Content Wrapper */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Centered Content */
.centered-content {
  text-align: center;
  padding: var(--space-xxl) 0;
}

.centered-text {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.large-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

.large-text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-xl);
}

.flex-center {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .burger-toggle,
  .mobile-menu {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

