/* Bio-Digital Print Lab - Futuristic Design System */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Aileron:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --color-oxidized-copper: #483C32;
  --color-sulfur-glow: #E1FF00;
  --color-raw-onion-purple: #602D51;
  --color-liquid-mercury: #A6A6A6;
  --color-dark-base: #1a1a1a;
  --color-light-base: #f5f5f5;
  --color-text-primary: #e8e8e8;
  --color-text-secondary: #b0b0b0;
  
  /* Typography */
  --font-headline: 'Syne', sans-serif;
  --font-body: 'Aileron', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --border-thin: 1px solid var(--color-liquid-mercury);
  --border-glow: 2px solid var(--color-sulfur-glow);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(225, 255, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index layers */
  --z-base: 1;
  --z-header: 100;
  --z-menu: 200;
  --z-overlay: 300;
}

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

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

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

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

h1 {
  font-size: clamp(1rem, 5vw, 4rem);
  font-weight: 800;
}

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

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

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: relative;
  padding: var(--space-md) var(--space-lg);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-thin);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--z-header);
}

.brand-name {
  font-family: var(--font-headline);
  font-size: clamp(0.9rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--color-sulfur-glow);

}

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

.nav-menu li a {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-sm) var(--space-md);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-menu li a:hover {
  border-color: var(--color-sulfur-glow);
  box-shadow: var(--shadow-glow);
}

/* Burger Menu */
.burger-toggle {
  display: none;
  background: transparent;
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  cursor: pointer;
  color: var(--color-sulfur-glow);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  order: 999;
  z-index: 10001;
}

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

.burger-toggle.active {
  border-color: var(--color-sulfur-glow);
  background: rgba(225, 255, 0, 0.1);
}

@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-xxl) var(--space-lg);
    gap: var(--space-md);
    border-left: var(--border-glow);
    transition: right var(--transition-base);
    z-index: var(--z-menu);
    overflow-y: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu li a {
    display: block;
    width: 100%;
    text-align: left;
    padding: var(--space-md);
  }
}

/* Hero Banner - Full Width */
.hero-banner {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-xxl) var(--space-lg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(72, 60, 50, 0.7) 0%, rgba(96, 45, 81, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(225, 255, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  width: 100%;
}

.hero-content h1 {
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(225, 255, 0, 0.5);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Sections */
main {
  max-width: 1400px;
  margin: 0 auto;
}
.legal-page h1 {
  font-size: 0.8rem;
}
.content-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  color: var(--color-sulfur-glow);
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-md);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-sulfur-glow);
  box-shadow: var(--shadow-glow);
}

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

.section-card {
  background: rgba(72, 60, 50, 0.3);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

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

.section-card h3 {
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.section-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin: var(--space-xl) 0;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: var(--border-thin);
}

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

/* Full Width Image Section */
.full-width-image {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin: var(--space-xl) calc(-50vw + 50%);
  height: 400px;
  overflow: hidden;
}

.full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: var(--space-xl) auto;
  background: rgba(72, 60, 50, 0.3);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: var(--border-thin);
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-sulfur-glow);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(26, 26, 26, 0.8);
  border: var(--border-thin);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

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

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.submit-button {
  background: transparent;
  border: var(--border-glow);
  color: var(--color-sulfur-glow);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  width: 100%;
  margin-top: var(--space-md);
}

.submit-button:hover {
  background: rgba(225, 255, 0, 0.1);
  box-shadow: var(--shadow-glow);
  color: whitesmoke;
  transform: translateY(-2px);
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  margin: var(--space-xl) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-thin);
}

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

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.contact-item {
  padding: var(--space-lg);
  background: rgba(72, 60, 50, 0.3);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  text-align: center;
  backdrop-filter: blur(10px);
}

.contact-item h3 {
  color: var(--color-sulfur-glow);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

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

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

.product-card {
  background: rgba(72, 60, 50, 0.3);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

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

.product-card h3 {
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sulfur-glow);
  margin-top: var(--space-md);
  font-family: var(--font-headline);
}

/* Footer */
.site-footer {
  background: rgba(26, 26, 26, 0.95);
  border-top: var(--border-thin);
  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(200px, 1fr));
  gap: var(--space-xl);
}

.footer-section h3 {
  color: var(--color-sulfur-glow);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-menu li a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-menu li a:hover {
  color: var(--color-sulfur-glow);
}

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

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

.error-page h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-md);
}

.error-page h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.error-page p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: var(--space-xxl) var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-lg);
}

.thank-you-content p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

/* Privacy/Terms/Cookies/Return Pages */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.legal-page h1 {
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-lg);
}

.legal-page h2 {
  color: var(--color-text-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.legal-page p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-page ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.legal-page li {
  margin-bottom: var(--space-sm);
}

.date {
  color: var(--color-sulfur-glow);
  font-weight: 600;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: var(--border-thin);
}

/* Interactive Elements */
.interactive-pod {
  background: rgba(72, 60, 50, 0.3);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.interactive-pod:hover {
  border-color: var(--color-sulfur-glow);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.interactive-pod h3 {
  color: var(--color-sulfur-glow);
  margin-bottom: var(--space-sm);
}

.spectrum-visualization {
  display: flex;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.spectrum-color {
  flex: 1;
  transition: transform var(--transition-base);
}

.spectrum-color:hover {
  transform: scaleY(1.2);
}

/* Before/After Matrix */
.matrix-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.matrix-item {
  background: rgba(72, 60, 50, 0.3);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  backdrop-filter: blur(10px);
}

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

.matrix-label {
  color: var(--color-sulfur-glow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* Wash Cycle Simulation */
.wash-cycle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.cycle-stage {
  background: rgba(72, 60, 50, 0.3);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.cycle-stage:hover {
  border-color: var(--color-sulfur-glow);
  box-shadow: var(--shadow-glow);
}

.cycle-stage h4 {
  color: var(--color-sulfur-glow);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.cycle-stage p {
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

  
  .hero-banner {
    min-height: 50vh;
    padding: var(--space-xl) var(--space-md);
  }
  
  .content-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
  }
  
  .section-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .site-header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .hero-banner {
    min-height: 40vh;
  }
  
  .section-card img,
  .product-card img {
    height: 200px;
  }
}

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

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--color-sulfur-glow);
  outline-offset: 2px;
}

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

