/* ============================================
   NEO-CLASSICAL CYBERPUNK DESIGN SYSTEM
   Dark Luxury & Depth - Center-Focused Layout
   ============================================ */

:root {
  /* Color Palette: The Midnight Salon */
  --color-primary: #1A1110;
  --color-secondary: #4A5D4E;
  --color-accent: #E2B07E;
  --color-text: #F5F5F0;
  --color-text-muted: #B8B8B3;
  --color-overlay: rgba(26, 17, 16, 0.85);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Layout */
  --max-width: 1400px;
  --content-width: 90%;
  --section-padding: 5rem 0;
  
  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(226, 176, 126, 0.2);
}

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

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-primary);
  overflow-x: hidden;
  position: relative;
}

/* Grainy Film Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

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

a:hover {
  color: var(--color-text);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-md) var(--space-md);
  background: transparent;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.site-header nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: var(--space-md);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
}

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

.nav-link {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: var(--space-xs) var(--space-sm);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

/* Burger Menu */
.burger-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: var(--space-xs) var(--space-sm);
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 100001;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  order: 999;
  position: relative;
}

.burger-toggle:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.burger-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-primary);
  border-left: 1px solid var(--color-secondary);
  z-index: 100000;
  padding: var(--space-lg) var(--space-md);
  transition: right var(--transition-slow);
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.burger-menu.active {
  right: 0;
}

.burger-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.burger-menu-link {
  font-size: 1.2rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(226, 176, 126, 0.1);
  transition: color var(--transition-fast);
}

.burger-menu-link:hover {
  color: var(--color-accent);
}

.burger-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-close:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.burger-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}

.burger-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 200px);
}

/* ============================================
   FULL-WIDTH BANNERS
   ============================================ */

.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.3;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(26, 17, 16, 0.7);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-md);
}


.banner-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.banner-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* ============================================
   SECTIONS
   ============================================ */

.content-section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-container {
  width: var(--content-width);
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-accent);
}

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

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
  max-width: 1200px;
  margin: var(--space-md) auto;
  text-align: left;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1400px;
  margin: var(--space-md) auto;
  text-align: left;
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  max-width: 1400px;
  margin: var(--space-md) auto;
  text-align: left;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.grid-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
  border-radius: var(--radius-md);
}

.grid-item:hover .grid-image {
  transform: scale(1.02);
}

.grid-content {
  padding: var(--space-md);
  background: rgba(26, 17, 16, 0.9);
  border-top: 2px solid var(--color-accent);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: rgba(74, 93, 78, 0.1);
  border: 1px solid rgba(226, 176, 126, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-fast);
}

.card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--color-accent);
}

.card-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

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

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  margin-top: 10px;
}

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

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

.btn-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-text);
}

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  background: rgba(74, 93, 78, 0.1);
  border: 1px solid rgba(226, 176, 126, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

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

.checkbox-input {
  margin-top: 4px;
  cursor: pointer;
}

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

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

.site-footer {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: rgba(26, 17, 16, 0.95);
  border-top: 1px solid rgba(226, 176, 126, 0.2);
  margin-top: var(--space-xl);
}

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

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

.footer-title {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* ============================================
   PRIVACY POPUP
   ============================================ */

.privacy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.popup-content {
  background: var(--color-primary);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.popup-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.popup-close:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

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

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(226, 176, 126, 0.3);
  margin: var(--space-lg) 0;
}

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

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-card {
  background: rgba(74, 93, 78, 0.1);
  border: 1px solid rgba(226, 176, 126, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition-fast);
}

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

.product-price {
  font-size: 1.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: var(--space-sm);
}

/* ============================================
   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); }

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

.date {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  margin-top: var(--space-lg);
}

.legal-list {
  color: var(--color-text-muted);
  margin-left: var(--space-md);
  margin-top: var(--space-sm);
}

.centered-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 0;
}

.large-text {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.button-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.text-constrained {
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.text-constrained-small {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

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

@media (max-width: 1023px) {
  .main-navigation {
    display: none;
  }
  
  .site-header nav {
    display: none;
  }
  
  .burger-toggle {
    display: block;
    order: 999;
  }
  
  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .site-header .brand-name {
    flex: 0 0 auto;
  }
  
  .site-header .burger-toggle {
    flex: 0 0 auto;
    margin-left: auto;
  }
  
  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .banner-content {
    padding: var(--space-md);
    margin: var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --content-width: 95%;
    --section-padding: 3rem 0;
  }
  
  .site-header {
    padding: var(--space-sm) var(--space-sm);
  }
  
  .banner-content {
    padding: var(--space-md);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .form-container {
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .banner-title {
    font-size: 1.75rem;
  }
}

