/* ============================================
   BOTANICAL FUTURISM - Floral Preservation Service
   ============================================ */

/* CSS Variables - Botanical Futurism Palette */
:root {
  --color-alabaster: #FBFBF9;
  --color-lavender: #96858F;
  --color-resin: #E0F2F1;
  --color-sage: #4F5D4B;
  --color-text-dark: #2C2C2C;
  --color-text-light: #6B6B6B;
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-glass: 0 8px 32px rgba(150, 133, 143, 0.1);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --blur-sm: blur(8px);
  --blur-md: blur(16px);
  --blur-lg: blur(24px);
}

/* Reset & Base Styles */
* {
  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-dark);
  background-color: var(--color-alabaster);
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

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

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

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

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

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

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

/* Header Styles */
.site-header {
  position: relative;
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  background: rgba(251, 251, 249, 0.85);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-bottom: 1px solid rgba(150, 133, 143, 0.1);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  position: relative;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--color-sage);
}

.main-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  background: var(--color-resin);
  color: var(--color-sage);
}

/* Burger Menu */
.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 10001;
  position: relative;
}

.burger-icon {
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: var(--color-sage);
  border-radius: 2px;
  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(8px, -8px);
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .burger-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(251, 251, 249, 0.98);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--space-xxl) var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    z-index: 999;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: var(--space-md);
    border-bottom: 1px solid rgba(150, 133, 143, 0.1);
  }
  
  .header-container {
    flex-wrap: nowrap;
  }
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(251, 251, 249, 0.85) 0%,
    rgba(224, 242, 241, 0.75) 50%,
    rgba(150, 133, 143, 0.65) 100%
  );
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  color: var(--color-text-dark);
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  color: var(--color-sage);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-text-light);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-weight: 300;
}

/* Section Styles */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
}

.content-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl) 0;
  text-align: center;
}

.content-section .section-content {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

/* Grid Layouts */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.grid-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.grid-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

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

.two-column-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-resin);
  color: var(--color-sage);
  border: 2px solid var(--color-lavender);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  margin-top: 10px;
}

.btn:hover {
  background: var(--color-lavender);
  color: var(--color-alabaster);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-alabaster);
  border-color: var(--color-sage);
}

.btn-primary:hover {
  color: black;
  background: var(--color-lavender);
  border-color: var(--color-lavender);
}
.footer-section p{color: white}
.footer-bottom p{color: white}
/* Form Styles */
.contact-form {
  max-width: 600px;
  margin: var(--space-xl) auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(150, 133, 143, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color var(--transition-fast);
}

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

.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: var(--color-text-light);
  cursor: pointer;
}

/* Products Grid */
.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(255, 255, 255, 0.6);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  transition: transform var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

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

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-lavender);
  margin-top: var(--space-md);
}

/* Interactive Features */
.color-fade-simulator {
  max-width: 800px;
  margin: var(--space-xl) auto;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.simulator-controls {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.slider-container {
  flex: 1;
  min-width: 200px;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--color-resin);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

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

.comparison-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.comparison-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
}

.comparison-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

/* Order Tracker */
.order-tracker {
  max-width: 900px;
  margin: var(--space-xl) auto;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.tracker-vine {
  position: relative;
  height: 60px;
  margin: var(--space-xl) 0;
}

.vine-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-sage);
  transform: translateY(-50%);
  border-radius: 2px;
}

.vine-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: var(--color-lavender);
  transform: translateY(-50%);
  border-radius: 2px;
  transition: width var(--transition-slow);
}

.vine-leaf {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--color-resin);
  border: 2px solid var(--color-sage);
  border-radius: 50% 0 50% 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all var(--transition-slow);
}

.vine-leaf.active {
  background: var(--color-lavender);
  transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}

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

.tracker-step {
  text-align: center;
  padding: var(--space-md);
}

.step-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

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

.map-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(255, 255, 255, 0.6);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  font-size: 2rem;
  color: var(--color-lavender);
  margin-bottom: var(--space-md);
}

/* Footer */
.site-footer {
  background: var(--color-sage);
  color: var(--color-alabaster);
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xxl);
}

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

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

.footer-link {
  display: block;
  color: rgba(251, 251, 249, 0.8);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(251, 251, 249, 0.2);
  color: rgba(251, 251, 249, 0.7);
  font-size: 0.9rem;
}

/* Privacy Policy Popup */
.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - var(--space-xl));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
}

.privacy-popup.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.privacy-content {
  margin-bottom: var(--space-md);
}

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

/* Thank You Page */
.thank-you-container {
  max-width: 800px;
  margin: var(--space-xxl) auto;
  padding: var(--space-xxl);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glass);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-lavender);
  margin-bottom: var(--space-lg);
}

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

.error-code {
  font-size: 6rem;
  color: var(--color-lavender);
  margin-bottom: var(--space-md);
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

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

.legal-section h3 {
  color: var(--color-sage);
  margin-bottom: var(--space-md);
}

.date {
  font-style: italic;
  color: var(--color-text-light);
  margin-top: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }
  
  .hero-banner {
    min-height: 50vh;
  }
  
  .comparison-display {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .main-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .content-section {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero-banner {
    min-height: 40vh;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

