/* Futuristic Art Framing - Vector-Edge Geometry Design System */

:root {
  /* Color Palette - Anodized Void Collection */
  --color-void: #0A0A0B;
  --color-laser: #FF003C;
  --color-titanium: #D1D5DB;
  --color-acid: #CCFF00;
  --color-bg: #0F0F11;
  --color-surface: #1A1A1D;
  --color-border: #2A2A2E;
  --color-text: #E5E5E7;
  --color-text-dim: #9CA3AF;
  
  /* Typography */
  --font-header: 'Syncopate', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Layout */
  --radius-md: 8px;
  --radius-lg: 12px;
  --border-thin: 1px;
  --border-thick: 2px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Effects */
  --glow-laser: 0 0 10px rgba(255, 0, 60, 0.5);
  --glow-acid: 0 0 15px rgba(204, 255, 0, 0.4);
  --shadow-deep: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* 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-body);
  background-color: var(--color-void);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Dynamic Border Frame - Edge UI */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: var(--border-thin) solid var(--color-laser);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
  transition: opacity var(--transition-base);
}

body:hover::before {
  opacity: 0.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--color-titanium);
}

h1 {
  font-size: clamp(1.4rem, 5vw, 4rem);
  text-transform: uppercase;
}

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

h3 {
  font-size: clamp(0.8rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-dim);
}

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

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

/* Header */
.header-container {
  background-color: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-thin) solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  position: relative;
  z-index: 1000;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-text {
  font-family: var(--font-header);
  font-size: clamp(0.9rem, 2vw, 1.35rem);
  color: var(--color-titanium);
  text-shadow: var(--glow-laser);
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 15px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-item a {
  color: var(--color-text-dim);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) var(--space-sm);
  border-bottom: var(--border-thin) solid transparent;
  transition: all var(--transition-fast);
}

.nav-item a:hover {
  color: var(--color-acid);
  border-bottom-color: var(--color-acid);
}

/* Burger Menu Button - Always Last */
.burger-toggle {
  display: none;
  background: transparent;
  border: var(--border-thin) solid var(--color-border);
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  padding: var(--space-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 100001;
  transition: border-color var(--transition-fast);
}

.burger-toggle:hover {
  border-color: var(--color-laser);
}

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

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

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

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

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
    order: 999;
    margin-left: auto;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: var(--border-thin) solid var(--color-border);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    z-index: 999;
    box-shadow: var(--shadow-deep);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-item a {
    display: block;
    padding: var(--space-md);
    border: var(--border-thin) solid var(--color-border);
  }
}

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

/* Hero Banners - Full Width */
.hero-section {
  width: 100vw;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 1200px;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(10px);
  border: var(--border-thin) solid var(--color-border);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.6) 0%, rgba(10, 10, 11, 0.8) 100%);
  z-index: 1;
}

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

.section-wrapper > * {
  text-align: left;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  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: linear-gradient(90deg, transparent, var(--color-laser), transparent);
}

/* Grid Layouts */
.grid-container {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.grid-two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid-three {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid-item {
  background-color: var(--color-surface);
  border: var(--border-thin) solid var(--color-border);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background-color: var(--color-laser);
  transition: height var(--transition-base);
}

.grid-item:hover {
  border-color: var(--color-laser);
  box-shadow: var(--glow-laser);
  transform: translateY(-4px);
}

.grid-item:hover::before {
  height: 100%;
}

/* Images */
.content-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  display: block;
  margin-bottom: var(--space-md);
  border: var(--border-thin) solid var(--color-border);
  object-fit: cover;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.grid-item:hover .image-wrapper img {
  transform: scale(1.05);
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border: var(--border-thin) solid var(--color-border);
  padding: var(--space-xl);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-void);
  border: var(--border-thin) solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

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

.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: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background-color: transparent;
  border: var(--border-thin) solid var(--color-laser);
  color: var(--color-laser);
  font-family: var(--font-header);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  margin-top: 10px;
}

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

.btn-primary {
  border-color: var(--color-acid);
  color: var(--color-acid);
}

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

/* Footer */
.footer-container {
  background-color: var(--color-surface);
  border-top: var(--border-thin) solid var(--color-border);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xxl);
}

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

.footer-section h4 {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-titanium);
}

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

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.footer-links a:hover {
  color: var(--color-acid);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: var(--border-thin) solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* Laser Line Parallax Effect */
.laser-indicator {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-laser), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.grid-item:hover .laser-indicator {
  opacity: 0.6;
}

/* UV Protection Indicators */
.uv-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background-color: rgba(204, 255, 0, 0.1);
  border: var(--border-thin) solid var(--color-acid);
  color: var(--color-acid);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Product Cards */
.product-card {
  background-color: var(--color-surface);
  border: var(--border-thin) solid var(--color-border);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: var(--space-md);
  border: var(--border-thin) solid var(--color-border);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--color-titanium);
}

.product-description {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-md);
}

.product-price {
  font-family: var(--font-header);
  font-size: 1.5rem;
  color: var(--color-acid);
  margin-top: var(--space-md);
}

/* Map Container */
.map-wrapper {
  width: 100%;
  height: 400px;
  border: var(--border-thin) solid var(--color-border);
  margin-top: var(--space-xl);
  overflow: hidden;
}

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

/* Contact Info */
.contact-info {
  margin-top: var(--space-xl);
}

.contact-item {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background-color: var(--color-surface);
  border-left: 3px solid var(--color-laser);
}

.contact-item h4 {
  margin-bottom: var(--space-sm);
  color: var(--color-titanium);
}

.contact-item p {
  margin: 0;
  color: var(--color-text-dim);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

/* Privacy Policy Popup */
.privacy-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 10, 11, 0.95);
  z-index: 10000;
  padding: var(--space-xl);
  overflow-y: auto;
}

.privacy-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  max-width: 800px;
  background-color: var(--color-surface);
  border: var(--border-thick) solid var(--color-laser);
  padding: var(--space-xl);
  position: relative;
}

.popup-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: transparent;
  border: var(--border-thin) solid var(--color-border);
  color: var(--color-text);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.popup-close:hover {
  border-color: var(--color-laser);
  color: var(--color-laser);
}

/* 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-laser);
  margin-bottom: var(--space-md);
}

/* Responsive */
@media (max-width: 768px) {
  .section-wrapper {
    padding: var(--space-lg) var(--space-md);
  }
  
  .hero-content {
    padding: var(--space-lg);
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

/* Depth Zoom Effect */
.depth-zoom-container {
  position: relative;
  overflow: hidden;
}

.depth-zoom-container::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 60, 0.2) 0%, transparent 70%);
  transition: width var(--transition-slow), height var(--transition-slow);
  pointer-events: none;
}

.grid-item:hover .depth-zoom-container::after {
  width: 200%;
  height: 200%;
}

