/* Soft & Organic Design System - Greek Language Support */
:root {
  /* Color Palette */
  --primary-color: #2E8B57;
  --secondary-color: #E8F5E9;
  --background-color: #FFFFFF;
  --footer-bg-color: #1B5E20;
  --button-color: #2E8B57;
  --section-bg-1: #FFFFFF;
  --section-bg-2: #F1F8E9;
  --section-bg-3: #FFFFFF;
  
  /* Soft Shadows */
  --shadow-soft: 0 10px 30px -10px rgba(46, 139, 87, 0.15);
  --shadow-hover: 0 20px 40px -10px rgba(46, 139, 87, 0.25);
  --shadow-card: 0 8px 25px -8px rgba(27, 94, 32, 0.12);
  
  /* Border Radius */
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2E8B57 0%, #4CAF50 100%);
  --gradient-soft: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  --gradient-footer: linear-gradient(135deg, #1B5E20 0%, #2E8B57 100%);
}

/* Base Styles */
body {
  background-color: var(--background-color);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  overflow-x: hidden;
}

/* Typography Enhancement */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1B5E20;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

/* Custom Container */
.container-organic {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-organic {
  background: var(--gradient-soft);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-organic::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(46, 139, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Organic Cards */
.card-organic {
  background: var(--background-color);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.card-organic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.card-organic:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-organic:hover::before {
  height: 6px;
}

/* Custom Buttons */
.btn-organic {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.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.5s ease;
}

.btn-organic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn-organic:hover::before {
  left: 100%;
}

.btn-organic:active {
  transform: translateY(0);
}

/* Section Backgrounds */
.section-light {
  background-color: var(--section-bg-1);
  padding: 6rem 0;
}

.section-soft {
  background-color: var(--section-bg-2);
  padding: 6rem 0;
  position: relative;
}

.section-soft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(46, 139, 87, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Navigation */
.navbar-organic {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46, 139, 87, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-organic.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.nav-link {
  font-weight: 500;
  color: #2C3E50 !important;
  border-radius: var(--radius-sm);
  padding: 8px 16px !important;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
}

/* Footer */
.footer-organic {
  background: var(--gradient-footer);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-organic::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

/* Form Elements */
.form-organic {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.form-control-organic {
  border: 2px solid #E8F5E9;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control-organic:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
  outline: none;
}

.form-label-organic {
  font-weight: 600;
  color: #1B5E20;
  margin-bottom: 0.75rem;
}

/* Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-hover);
}

/* Stats Counter */
.stat-organic {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.stat-organic:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Testimonials */
.testimonial-organic {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  margin: 1rem 0;
}

.testimonial-organic::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Call to Action */
.cta-organic {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-organic::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Loading Animation */
.loading-organic {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(46, 139, 87, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container-organic {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-light,
  .section-soft {
    padding: 4rem 0;
  }
  
  .card-organic {
    margin-bottom: 2rem;
  }
  
  .btn-organic {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .form-organic {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  .hero-organic {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus States */
.btn-organic:focus,
.form-control-organic:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  .navbar-organic,
  .footer-organic,
  .btn-organic {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}


/* Cookie Banner Additional Styles for Bootstrap */
.cookie-banner-custom {
    z-index: 1060;
    backdrop-filter: blur(10px);
}

.cookie-banner-custom .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}