@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary-color: #B2D8B2;
  --accent-color: #D88C6B;
  --off-white: #F5F5DC;
  --charcoal: #333333;
  --light-gray: #f8f8f5;
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background-color: var(--off-white);
  line-height: 1.6;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

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

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--off-white);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--charcoal);
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  height: 600px;
  background: linear-gradient(135deg, rgba(178, 216, 178, 0.3), rgba(216, 140, 107, 0.3)), url('images/hero-fresh-vegetables.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--off-white);
}

.hero-content {
  background-color: rgba(51, 51, 51, 0.6);
  padding: 3rem;
  border-radius: 8px;
  max-width: 700px;
}

.hero h1 {
  color: var(--off-white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--off-white);
  font-size: 1.3rem;
  margin: 0;
}

section {
  padding: 100px 0;
}

.section-light {
  background-color: var(--off-white);
}

.section-primary {
  background-color: var(--primary-color);
  color: var(--charcoal);
}

.section-primary h2,
.section-primary h3 {
  color: var(--charcoal);
}

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

.two-column-img-left {
  grid-template-columns: 1fr 1fr;
}

.two-column-img-right {
  grid-template-columns: 1fr 1fr;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 500px;
}

.panel {
  background-color: var(--off-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.panel h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.panel ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.panel li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.panel li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--off-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: var(--accent-color);
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
}

.section-primary .card {
  background-color: rgba(255, 255, 255, 0.9);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: var(--accent-color);
  color: var(--off-white);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

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

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--off-white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.btn:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.btn-secondary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

footer {
  background-color: var(--charcoal);
  color: var(--off-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  margin: 0 1rem;
  color: var(--primary-color);
}

.disclaimer-box {
  background-color: var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-box p {
  margin: 0;
  font-size: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--off-white);
  padding: 1.5rem;
  display: none;
  z-index: 2000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  min-width: 200px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-accept:hover {
  background-color: var(--accent-color);
  color: var(--off-white);
}

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

.cookie-decline:hover {
  background-color: var(--primary-color);
  color: var(--charcoal);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: var(--charcoal);
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero {
    height: 400px;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

  .cookie-banner.show {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
  }

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

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.opacity-fade {
  animation: fadeIn 0.6s ease-in;
}

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

.highlight {
  color: var(--accent-color);
  font-weight: 400;
}

.section-primary p {
  color: var(--charcoal);
}

.section-primary a {
  color: var(--charcoal);
  text-decoration: underline;
}

.section-primary a:hover {
  color: var(--accent-color);
}
