/* Design System: Vacuum-Sealed Elegance */
:root {
  --color-obsidian: #080C08;
  --color-bioluminescent: #DFFF00;
  --color-vapor: #FDFDFD;
  --color-violet: #4B0082;
  --color-primary: #080C08;
  --color-secondary: #DFFF00;
  --color-text: #FDFDFD;
  --color-accent: #4B0082;
  --font-primary: 'Cormorant Garamond', serif;
  --font-mono: 'Courier New', monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow-subtle: 0 2px 8px rgba(223, 255, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(223, 255, 0, 0.3);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-obsidian);
  color: var(--color-vapor);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* UV-Shield Overlay */
.uv-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(75, 0, 130, 0.05) 0%,
    rgba(8, 12, 8, 0.1) 50%,
    rgba(75, 0, 130, 0.05) 100%
  );
  pointer-events: none;
  z-index: 9999;
  animation: uv-shift 8s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes uv-shift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-2px) translateY(2px); }
  50% { transform: translateX(2px) translateY(-2px); }
  75% { transform: translateX(-1px) translateY(-1px); }
}

.uv-cleared {
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

/* Humidity/Temp HUD */
.hud-display {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(8, 12, 8, 0.9);
  border: 1px solid var(--color-bioluminescent);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  z-index: 10000;
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(10px);
}

.hud-label {
  color: var(--color-bioluminescent);
  margin-bottom: var(--space-xs);
}

.hud-value {
  color: var(--color-vapor);
}

/* Header */
.header-main {
  background: rgba(8, 12, 8, 0.95);
  border-bottom: 1px solid rgba(223, 255, 0, 0.2);
  padding: var(--space-md);
  position: relative;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.brand-name {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-vapor);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(223, 255, 0, 0.3);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--color-vapor);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
}

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

/* Burger Menu */
.burger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--color-bioluminescent);
  color: var(--color-bioluminescent);
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  order: 999;
  margin-left: auto;
}

.burger-btn:hover {
  background: rgba(223, 255, 0, 0.1);
  box-shadow: var(--shadow-glow);
}

.burger-menu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(8, 12, 8, 0.98);
  border-left: 1px solid var(--color-bioluminescent);
  z-index: 10001;
  transition: right var(--transition-slow);
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}

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

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

.burger-menu-item {
  border-bottom: 1px solid rgba(223, 255, 0, 0.1);
  padding-bottom: var(--space-sm);
}

.burger-menu-link {
  color: var(--color-vapor);
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  transition: color var(--transition-fast);
}

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

.burger-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: transparent;
  border: 1px solid var(--color-bioluminescent);
  color: var(--color-bioluminescent);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius-sm);
}

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  
  .burger-btn {
    display: block;
  }
}

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

/* Hero Banner */
.hero-section {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 12, 8, 0.9) 0%, rgba(8, 12, 8, 0.7) 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  color: var(--color-vapor);
  text-shadow: 0 0 20px rgba(223, 255, 0, 0.4);
  line-height: 1.2;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: rgba(253, 253, 253, 0.9);
  line-height: 1.8;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: var(--space-lg) auto 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(223, 255, 0, 0.2);
  box-shadow: var(--shadow-glow);
  display: block;
}

/* Sections */
.content-section {
  padding: var(--space-xl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  color: var(--color-vapor);
  text-align: center;
  text-shadow: 0 0 15px rgba(223, 255, 0, 0.3);
}

.section-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: rgba(253, 253, 253, 0.85);
}

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: var(--space-lg) auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(223, 255, 0, 0.2);
  display: block;
  box-shadow: var(--shadow-subtle);
}

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

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

/* Cards */
.card-item {
  background: rgba(8, 12, 8, 0.6);
  border: 1px solid rgba(223, 255, 0, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.card-item:hover {
  border-color: var(--color-bioluminescent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

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

.card-text {
  color: rgba(253, 253, 253, 0.8);
  margin-bottom: var(--space-md);
}

.card-price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--color-bioluminescent);
  font-weight: bold;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: transparent;
  border: 1px solid var(--color-bioluminescent);
  color: var(--color-bioluminescent);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-primary);
  margin-top: 10px;
}

.btn-primary:hover {
  background: rgba(223, 255, 0, 0.1);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  color: white;
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg);
  background: rgba(8, 12, 8, 0.6);
  border: 1px solid rgba(223, 255, 0, 0.2);
  border-radius: var(--radius-md);
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-vapor);
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: rgba(8, 12, 8, 0.8);
  border: 1px solid rgba(223, 255, 0, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-vapor);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-bioluminescent);
  box-shadow: 0 0 10px rgba(223, 255, 0, 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 {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  color: rgba(253, 253, 253, 0.8);
  cursor: pointer;
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(223, 255, 0, 0.2);
  margin: var(--space-lg) 0;
}

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

/* Aroma Release Animation */
@keyframes aroma-release {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.aroma-active {
  animation: aroma-release 0.6s ease-out;
}

/* Vacuum Scroll Effect */
.vacuum-resistance {
  scroll-behavior: auto;
}

@keyframes vacuum-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.vacuum-pop {
  animation: vacuum-pop 0.4s ease-out;
}

/* Interactive Slider */
.slider-container {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: rgba(8, 12, 8, 0.6);
  border: 1px solid rgba(223, 255, 0, 0.2);
  border-radius: var(--radius-md);
}

.slider-label {
  display: block;
  margin-bottom: var(--space-md);
  color: var(--color-bioluminescent);
  font-family: var(--font-mono);
  font-size: 1rem;
}

.time-slider {
  width: 100%;
  height: 8px;
  background: rgba(223, 255, 0, 0.2);
  border-radius: var(--radius-sm);
  outline: none;
  -webkit-appearance: none;
  margin-bottom: var(--space-md);
}

.time-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-bioluminescent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}

.time-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-bioluminescent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-glow);
}

.degradation-display {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background: rgba(8, 12, 8, 0.8);
  border: 1px solid rgba(223, 255, 0, 0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
}

.degradation-value {
  color: var(--color-bioluminescent);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

/* 3D Diagram Styles */
.diagram-container {
  perspective: 1000px;
  margin: var(--space-xl) 0;
}

.diagram-box {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform var(--transition-slow);
}

.diagram-box:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

.diagram-layer {
  background: rgba(223, 255, 0, 0.1);
  border: 1px solid rgba(223, 255, 0, 0.3);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
}

/* Aroma Gallery */
.aroma-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.aroma-item {
  background: rgba(8, 12, 8, 0.6);
  border: 1px solid rgba(223, 255, 0, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.aroma-item:hover {
  border-color: var(--color-bioluminescent);
  box-shadow: var(--shadow-glow);
}

.aroma-cloud {
  width: 100%;
  height: 200px;
  background: radial-gradient(circle, rgba(223, 255, 0, 0.2) 0%, transparent 70%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  position: relative;
}

.aroma-name {
  font-size: 1.25rem;
  color: var(--color-vapor);
  margin-bottom: var(--space-sm);
}

.aroma-description {
  color: rgba(253, 253, 253, 0.8);
  font-size: 0.9rem;
}

/* Footer */
.footer-main {
  background: rgba(8, 12, 8, 0.95);
  border-top: 1px solid rgba(223, 255, 0, 0.2);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xl);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-lg);
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--color-bioluminescent);
}

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

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

.footer-menu-link {
  color: rgba(253, 253, 253, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

.footer-text {
  color: rgba(253, 253, 253, 0.7);
  font-size: 0.9rem;
  margin-top: var(--space-md);
}

/* Privacy Popup */
.privacy-popup {
  display: none;
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: rgba(8, 12, 8, 0.98);
  border: 1px solid var(--color-bioluminescent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  z-index: 10002;
  box-shadow: var(--shadow-glow);
}

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

.privacy-text {
  color: var(--color-vapor);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Thank You Page */
.thank-you-container {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 600px;
  margin: var(--space-xl) auto;
}

.thank-you-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  color: var(--color-bioluminescent);
}

.thank-you-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(253, 253, 253, 0.9);
  margin-bottom: var(--space-lg);
}

/* 404 Page */
.error-container {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 600px;
  margin: var(--space-xl) auto;
}

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

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-vapor);
}

.error-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(253, 253, 253, 0.9);
  margin-bottom: var(--space-lg);
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: var(--space-xl) auto;
  padding: var(--space-lg);
}

.policy-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-vapor);
}

.policy-section {
  margin-bottom: var(--space-xl);
}

.policy-section-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-bioluminescent);
}

.policy-text {
  color: rgba(253, 253, 253, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.policy-list {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: rgba(253, 253, 253, 0.85);
}

.policy-list-item {
  margin-bottom: var(--space-sm);
}

.date {
  color: var(--color-bioluminescent);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-top: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .hero-section {
    padding: var(--space-lg) var(--space-md);
  }
  
  .content-section {
    padding: var(--space-lg) var(--space-md);
  }
  
  .grid-two,
  .grid-three {
    grid-template-columns: 1fr;
  }
  
  .hud-display {
    top: var(--space-sm);
    right: var(--space-sm);
    font-size: 0.65rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .footer-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  
  .header-container {
    padding: var(--space-sm);
  }
  
  .brand-name {
    font-size: 1.2rem;
  }
  
  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

/* 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-bioluminescent);
  outline-offset: 2px;
}

