/* ========================================
   SOFT & ORGANIC DARK MINIMAL DESIGN
   Custom CSS for Tailwind Framework
   ======================================== */

/* CSS Custom Properties - Color System */
:root {
  /* Primary Brand Colors */
  --primary-green: #00ff9d;
  --secondary-yellow: #fff700;
  --background-dark: #0b0c15;
  --background-section: #11131f;
  --footer-dark: #05060a;
  
  /* Soft & Organic Color Palette */
  --organic-mint: #00ff9d;
  --organic-gold: #fff700;
  --organic-dark: #0b0c15;
  --organic-darker: #05060a;
  --organic-blue: #11131f;
  --organic-gray: #1a1d29;
  --organic-light: #2a2e3f;
  
  /* Typography */
  --font-primary: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Poppins', 'SF Pro Text', sans-serif;
  
  /* Spacing & Layout */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius - Soft & Organic */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50px;
  
  /* Shadows - Soft & Diffused */
  --shadow-soft-sm: 0 4px 20px -8px rgba(0, 255, 157, 0.15);
  --shadow-soft-md: 0 10px 30px -10px rgba(0, 255, 157, 0.2);
  --shadow-soft-lg: 0 20px 40px -15px rgba(0, 255, 157, 0.25);
  --shadow-soft-xl: 0 30px 60px -20px rgba(0, 255, 157, 0.3);
  --shadow-organic: 0 15px 35px -12px rgba(17, 19, 31, 0.8);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00ff9d 0%, #00e68a 100%);
  --gradient-secondary: linear-gradient(135deg, #fff700 0%, #ffd700 100%);
  --gradient-dark: linear-gradient(135deg, #0b0c15 0%, #11131f 100%);
  --gradient-organic: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(255, 247, 0, 0.1) 100%);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--background-dark);
  color: #ffffff;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Smooth scrolling and selection */
::selection {
  background: var(--primary-green);
  color: var(--background-dark);
}

::-moz-selection {
  background: var(--primary-green);
  color: var(--background-dark);
}

/* Headings - Round & Friendly Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
  color: #ffffff;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 500;
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 500;
}

p {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Links */
a {
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--secondary-yellow);
  text-shadow: 0 0 8px rgba(255, 247, 0, 0.3);
}

/* Container Overrides for Full-Screen Experience */
.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: var(--spacing-md) !important;
  padding-right: var(--spacing-md) !important;
}

.container-fluid {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Section Backgrounds - Cycling Pattern */
.section-primary {
  background: var(--background-dark);
}

.section-secondary {
  background: var(--background-section);
}

.section-tertiary {
  background: var(--background-dark);
}

/* Soft & Organic Buttons */
.btn-organic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 56px;
  text-transform: none;
  letter-spacing: 0.01em;
}

.btn-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-organic:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--background-dark);
  box-shadow: var(--shadow-soft-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  color: var(--background-dark);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--background-dark);
  box-shadow: var(--shadow-soft-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-lg);
  color: var(--background-dark);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: var(--shadow-soft-sm);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--background-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft-md);
}

/* Soft & Organic Cards */
.card-organic {
  background: rgba(17, 19, 31, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 157, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-organic);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-organic:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft-xl);
  border-color: rgba(0, 255, 157, 0.3);
}

.card-organic:hover::before {
  opacity: 1;
}

.card-featured {
  background: var(--gradient-organic);
  border: 2px solid rgba(0, 255, 157, 0.3);
  box-shadow: var(--shadow-soft-lg);
}

.card-featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -25px rgba(0, 255, 157, 0.4);
}

/* Form Elements - Soft & Organic */
.form-organic {
  background: rgba(17, 19, 31, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-soft-sm);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(26, 29, 41, 0.6);
  border: 2px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(0, 255, 157, 0.1);
  background: rgba(26, 29, 41, 0.8);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Navigation - Soft & Organic */
.navbar-organic {
  background: rgba(11, 12, 21, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-organic.scrolled {
  background: rgba(11, 12, 21, 0.95);
  box-shadow: var(--shadow-soft-sm);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-green);
  background: rgba(0, 255, 157, 0.1);
}

.nav-link.active {
  color: var(--primary-green);
  background: rgba(0, 255, 157, 0.15);
}

/* Hero Section - Full Screen */
.hero-organic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero-organic::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 800px;
  padding: var(--spacing-2xl);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

/* Footer - Soft & Organic */
.footer-organic {
  background: var(--footer-dark);
  border-top: 1px solid rgba(0, 255, 157, 0.1);
  padding: var(--spacing-2xl) 0 var(--spacing-xl);
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
  color: var(--primary-green);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xs);
}

.footer-section a:hover {
  color: var(--secondary-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 255, 157, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-organic {
  background: var(--gradient-dark);
}

.shadow-organic {
  box-shadow: var(--shadow-organic);
}

.border-organic {
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius-lg);
}

/* Interactive Elements */
.interactive-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft-lg);
}

/* Loading States */
.loading-organic {
  position: relative;
  overflow: hidden;
}

.loading-organic::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 157, 0.2), transparent);
  animation: loading 2s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding-left: var(--spacing-sm) !important;
    padding-right: var(--spacing-sm) !important;
  }
  
  .card-organic {
    padding: var(--spacing-lg);
  }
  
  .form-organic {
    padding: var(--spacing-lg);
  }
  
  .btn-organic {
    padding: 0.875rem 1.5rem;
    min-height: 52px;
  }
  
  .hero-content {
    padding: var(--spacing-lg);
  }
  
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  h3 { font-size: clamp(1.25rem, 4vw, 2rem); }
}

@media (max-width: 480px) {
  .card-organic,
  .form-organic {
    padding: var(--spacing-md);
  }
  
  .btn-organic {
    padding: 0.75rem 1.25rem;
    min-height: 48px;
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: var(--spacing-md);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-organic::before {
    animation: none;
  }
}

/* Focus States for Better Accessibility */
.btn-organic:focus,
.form-input:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .card-organic {
    border: 2px solid var(--primary-green);
  }
  
  .btn-outline {
    border-width: 3px;
  }
}

/* Print Styles */
@media print {
  .navbar-organic,
  .btn-organic,
  .interactive-hover {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-organic {
    min-height: auto;
    page-break-after: always;
  }
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}