/* ============================================
   FUTURISTIC COMPOSTING PLATFORM - STYLES
   ============================================ */

:root {
  /* Color Palette */
  --color-obsidian: #1A1A1B;
  --color-enzyme-gold: #D4AF37;
  --color-bokashi-teal: #20C997;
  --color-mist-white: #F8F9FA;
  --color-dark-gray: #2C2C2E;
  --color-light-gray: #E5E5E7;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  /* 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: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows - Neumorphism */
  --shadow-soft: 8px 8px 16px rgba(0, 0, 0, 0.3), -8px -8px 16px rgba(255, 255, 255, 0.05);
  --shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.3), inset -4px -4px 8px rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* ============================================
   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-primary);
  background: var(--color-obsidian);
  color: var(--color-mist-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Liquid Morphing Background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(32, 201, 151, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(32, 201, 151, 0.05) 0%, transparent 50%);
  animation: liquidMorph 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes liquidMorph {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(5%, 5%) scale(1.1) rotate(2deg); }
  66% { transform: translate(-5%, -5%) scale(0.9) rotate(-2deg); }
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-md);
  color: rgba(248, 249, 250, 0.8);
}

a {
  color: var(--color-bokashi-teal);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

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

.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: rgba(26, 26, 27, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand-text {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-mist-white);
  letter-spacing: 0.05em;
}

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

.nav-link {
  color: var(--color-mist-white);
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--color-bokashi-teal);
  background: rgba(32, 201, 151, 0.1);
}

/* Burger Menu */
.burger-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 10001;
  position: relative;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--color-mist-white);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

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

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

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

.burger-menu {
  position: fixed;
  top: var(--header-height);
  right: -100%;
  width: 280px;
  height: calc(100vh - var(--header-height));
  background: rgba(26, 26, 27, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl);
  transition: right var(--transition-base);
  z-index: 999;
  overflow-y: auto;
}

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

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

.burger-nav-link {
  color: var(--color-mist-white);
  font-size: 1.1rem;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: block;
  transition: all var(--transition-base);
}

.burger-nav-link:hover {
  background: rgba(32, 201, 151, 0.2);
  color: var(--color-bokashi-teal);
  padding-left: var(--space-lg);
}

/* ============================================
   HERO BANNERS
   ============================================ */

.hero-banner {
  width: 100vw;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xxl) var(--space-lg);
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-lg);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: left;
  width: 100%;
  order: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-mist-white) 0%, var(--color-bokashi-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.8;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: 100%;
  order: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.main-content {
  width: 100%;
  padding: var(--space-xxl) var(--space-lg);
}

.content-section {
  width: 100%;
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl);
  background: rgba(44, 44, 46, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: var(--space-lg);
  color: var(--color-enzyme-gold);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-bokashi-teal), var(--color-enzyme-gold));
  border-radius: var(--radius-full);
}

.section-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.section-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  align-self: start;
}

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

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin-top: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-bokashi-teal), var(--color-enzyme-gold));
  color: var(--color-obsidian);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: rgba(32, 201, 151, 0.2);
  color: var(--color-bokashi-teal);
  border: 1px solid var(--color-bokashi-teal);
}

.btn-secondary:hover {
  color: whitesmoke;
  background: rgba(32, 201, 151, 0.3);
}

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: rgba(44, 44, 46, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(26, 26, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-mist-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-inset);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-bokashi-teal);
  box-shadow: 0 0 0 3px rgba(32, 201, 151, 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;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.7);
  line-height: 1.5;
}

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

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

.product-card {
  background: rgba(44, 44, 46, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

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

.product-title {
  font-size: 1.5rem;
  color: var(--color-enzyme-gold);
  margin-bottom: var(--space-md);
}

.product-description {
  color: rgba(248, 249, 250, 0.7);
  margin-bottom: var(--space-lg);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bokashi-teal);
  font-family: var(--font-mono);
}

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

.site-footer {
  background: rgba(26, 26, 27, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-xl) var(--space-lg);
  margin-top: var(--space-xxl);
}

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

.footer-copyright {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(248, 249, 250, 0.6);
  font-size: 0.9rem;
}

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

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

.footer-nav-link {
  color: rgba(248, 249, 250, 0.7);
  display: block;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.footer-nav-link:hover {
  color: var(--color-bokashi-teal);
}

.footer-info {
  color: rgba(248, 249, 250, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

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

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

.date {
  color: rgba(248, 249, 250, 0.5);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================
   MAP CONTAINER
   ============================================ */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-soft);
}

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

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

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
  }
  
  .burger-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    order: 1;
    text-align: center;
  }
  
  .hero-image-wrapper {
    order: 2;
  }
  
  .section-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .section-text {
    order: 1;
  }
  
  .section-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-xxl: 3rem;
  }
  
  .site-header {
    padding: var(--space-md);
  }
  
  .hero-banner {
    min-height: 50vh;
    padding: var(--space-xl) var(--space-md);
  }
  
  .hero-content {
    padding: 0 var(--space-md);
  }
  
  .main-content {
    padding: var(--space-xl) var(--space-md);
    max-width: 100%;
  }
  
  .content-section {
    padding: var(--space-lg);
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-banner {
    min-height: 40vh;
  }
  
  .form-container {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .site-header {
    padding: var(--space-sm);
  }
  
  .hero-banner {
    padding: var(--space-lg) var(--space-sm);
  }
}

