@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Cormorant+Garamond:wght@600;700&display=swap');

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

:root {
  --primary: #0A4D3A;
  --ivory: #FDF8F0;
  --fern: #89B89A;
  --amber: #C46A2E;
  --dark: #1a1a1a;
  --light-gray: #f5f5f5;
  --border-gray: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--dark);
  background-color: var(--ivory);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: 74px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

h2 {
  font-size: 50px;
  margin-bottom: 30px;
  margin-top: 40px;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 30px;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

header {
  background-color: var(--ivory);
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  max-width: 1380px;
  margin: 0 auto;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-brand img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 140px 20px;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--fern) 100%);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-herbs.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--ivory);
  font-size: 74px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  color: var(--ivory);
  font-size: 19px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.section-accent {
  background-color: var(--ivory);
}

.section-alt {
  background-color: #f9f7f3;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  margin-top: 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease;
}

.two-column-text {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.bullet-list {
  list-style: none;
  margin: 30px 0;
}

.bullet-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  margin-bottom: 16px;
}

.bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
  font-size: 18px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.data-table th {
  background-color: var(--primary);
  color: var(--ivory);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  border: none;
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-gray);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background-color: #f9f7f3;
  transition: background-color 0.3s ease;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

.card-content {
  padding: 24px;
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.card-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.season-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.season-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

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

.season-card-content {
  padding: 20px;
}

.season-card-content h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 10px;
}

.season-card-content p {
  font-size: 14px;
  margin: 0;
}

.disclaimer-block {
  background-color: #f0f8f5;
  border-left: 4px solid var(--primary);
  padding: 24px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-block h3 {
  margin-top: 0;
  color: var(--primary);
}

.faq-item {
  margin: 24px 0;
  padding: 24px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item.active h3::after {
  content: '−';
}

.faq-item h3::after {
  content: '+';
  font-weight: 300;
  font-size: 24px;
}

.faq-answer {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-gray);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 77, 58, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--fern) 100%);
  color: var(--ivory);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  animation: pulse 2s infinite;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 77, 58, 0.25);
  animation: none;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--amber) 0%, #d97d3d 100%);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(10, 77, 58, 0.15);
  }
  50% {
    box-shadow: 0 6px 20px rgba(10, 77, 58, 0.25);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  background-color: var(--primary);
  color: var(--ivory);
  padding: 60px 20px 40px;
  margin-top: 100px;
}

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

.footer-section h3 {
  color: var(--ivory);
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--ivory);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--fern);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--ivory);
  border-top: 2px solid var(--primary);
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--primary);
  color: var(--ivory);
}

.cookie-accept:hover {
  background-color: #073a2d;
}

.cookie-reject {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.cookie-reject:hover {
  background-color: #f0f8f5;
}

.cookie-learn {
  background-color: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}

.cookie-learn:hover {
  background-color: #fff5f0;
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  body {
    font-size: 16px;
  }

  section {
    padding: 80px 20px;
  }

  .navbar {
    padding: 12px 20px;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .navbar-brand img {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--ivory);
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border-gray);
  }

  .nav-links.show {
    display: flex;
  }

  .navbar-toggler {
    display: block;
  }

  .two-column,
  .seasonal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-column.reverse {
    direction: ltr;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 60px 16px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .btn {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .data-table {
    font-size: 14px;
  }

  .data-table th,
  .data-table td {
    padding: 12px;
  }
}
