﻿:root {
  --primary-green: #6B8E23;
  --light-green: #9ACD32;
  --cream: #F5F5DC;
  --soft-beige: #FAF0E6;
  --dark-text: #2C3E50;
  --light-text: #7F8C8D;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-text);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand img {
  max-height: 60px;
}

.navbar-item {
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-item:hover {
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-body {
  position: relative;
  z-index: 1;
  padding: 8rem 1.5rem;
}

.hero-body h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}

.hero-body p {
  font-size: 1.4rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

/* Buttons */
.button.is-primary {
  background-color: var(--primary-green);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button.is-primary:hover {
  background-color: var(--light-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107,142,35,0.3);
}

.button.is-light {
  background-color: white;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.button.is-light:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Section Styles */
section {
  padding: 5rem 1.5rem;
}

section.has-background-light {
  background-color: var(--soft-beige);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content .title {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.card-content .content {
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* Features Box */
.feature-box {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.feature-box h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--primary-green);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.field label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1rem;
}

.input, .textarea {
  border: 2px solid #E0E0E0;
  border-radius: 6px;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.3s ease;
}

.input:focus, .textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(107,142,35,0.1);
}

/* Contact Info */
.contact-info {
  background: var(--soft-beige);
  padding: 2.5rem;
  border-radius: 12px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  color: white;
  font-size: 1.3rem;
}

.contact-info-text h4 {
  font-size: 1.2rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-info-text p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #2C3E50;
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--light-green);
}

.footer p, .footer a {
  font-size: 1rem;
  color: #BDC3C7;
  line-height: 1.8;
}

.footer a:hover {
  color: var(--light-green);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.95rem;
  color: #95A5A6;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.is-active {
  display: block;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cookie-banner-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--light-green);
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-banner .button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Workshop Cards */
.workshop-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.workshop-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.workshop-content {
  padding: 2rem;
}

.workshop-content h3 {
  font-size: 1.6rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.workshop-content p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.workshop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E0E0E0;
}

.workshop-duration, .workshop-price {
  font-size: 1rem;
  color: var(--light-text);
}

.workshop-price {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.3rem;
}

/* Ingredients Grid */
.ingredient-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ingredient-item:hover {
  transform: scale(1.05);
}

.ingredient-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background-color: var(--soft-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ingredient-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.ingredient-item p {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* Info Boxes */
.info-box {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
}

.info-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: -3rem;
  width: 2px;
  background-color: var(--light-green);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-content h4 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

.timeline-content p {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.7;
}

/* Policy Content */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.policy-content h2 {
  font-size: 2rem;
  color: var(--primary-green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--dark-text);
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  color: var(--dark-text);
}

/* Thank You Page */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-box {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: white;
}

.thank-you-box h1 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.thank-you-box p {
  font-size: 1.2rem;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* 404 Page */
.error-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  line-height: 1;
}

.error-box h1 {
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
}

.error-box p {
  font-size: 1.2rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero-body h1 {
    font-size: 2.5rem;
  }

  .hero-body p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .cookie-banner-content {
    flex-direction: column;
  }

  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .error-number {
    font-size: 5rem;
  }
}