:root {
  --primary: #E07A5F;
  --accent: #A8C686;
  --cream: #FDFBF7;
  --dark-brown: #5D4037;
  --text-dark: #3E3E3E;
  --text-light: #6B6B6B;
  --border-light: #E8E8E8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 17px;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--dark-brown);
  font-weight: 600;
  margin-top: 0;
}

h1 {
  font-size: 50px;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 30px;
}

h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 20px;
  color: var(--text-light);
}

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

a:hover {
  color: var(--dark-brown);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 0 20px;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 0;
}

.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--dark-brown);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 4px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

main {
  margin-top: 70px;
}

section {
  padding: 100px 20px;
}

.hero {
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.85) 0%, rgba(168, 198, 134, 0.85) 100%), url('images/hero-dish.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 150px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero h1 {
  color: white;
  margin-bottom: 20px;
  font-size: 50px;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 30px;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.section-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.split-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.split-text h2 {
  color: var(--dark-brown);
}

.split-text p {
  color: var(--text-light);
  line-height: 1.8;
}

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

.seasonal-table thead {
  background-color: var(--primary);
  color: white;
}

.seasonal-table th,
.seasonal-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.seasonal-table tbody tr:hover {
  background-color: #FAFAF8;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 50px auto 0;
}

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

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.02);
}

.card-content {
  padding: 30px;
}

.card-content h3 {
  color: var(--dark-brown);
  margin-bottom: 12px;
}

.card-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.accordion {
  max-width: 900px;
  margin: 50px auto;
}

.accordion-item {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  background-color: #FAFAF8;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #F5F3F0;
}

.accordion-header h4 {
  color: var(--dark-brown);
  margin: 0;
  font-size: 16px;
}

.accordion-toggle {
  color: var(--primary);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.accordion-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.tips-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
}

.tips-list li:before {
  content: "•";
  color: var(--accent);
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -5px;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 122, 95, 0.3);
}

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  background-color: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-disclaimer {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding: 12px;
  background-color: #FAFAF8;
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}

.form-group button {
  width: 100%;
  padding: 14px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-group button:hover {
  background-color: var(--dark-brown);
}

footer {
  background-color: var(--dark-brown);
  color: rgba(255, 255, 255, 0.9);
  padding: 50px 20px 30px;
  margin-top: 80px;
}

footer .container {
  max-width: 1300px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section a {
  cursor: pointer;
  text-decoration: underline;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.disclaimer-banner {
  background-color: #FFF3E0;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 40px 0;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--cream);
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  animation: slideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--primary);
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 25px;
}

.modal p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid var(--border-light);
  padding: 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-light);
}

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

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

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

.cookie-accept:hover {
  background-color: var(--dark-brown);
}

.cookie-decline {
  background-color: #E8E8E8;
  color: var(--text-dark);
}

.cookie-decline:hover {
  background-color: #D8D8D8;
}

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

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

.thank-you-modal {
  background-color: var(--cream);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  max-width: 500px;
}

.thank-you-modal h2 {
  color: var(--dark-brown);
  margin-bottom: 15px;
}

.thank-you-modal p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.thank-you-close {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.thank-you-close:hover {
  background-color: var(--dark-brown);
}

@media (max-width: 768px) {
  header {
    padding: 0 15px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  header.nav-open nav {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--cream);
    padding: 20px;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .hero {
    padding: 100px 20px;
    min-height: 400px;
  }

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

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

  section {
    padding: 60px 20px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-section.reverse {
    direction: ltr;
  }

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

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
  }

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

  .modal-content {
    max-width: 90%;
    padding: 30px 20px;
    max-height: 90vh;
  }

  main {
    margin-top: 70px;
  }
}

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

  h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .card-image {
    height: 200px;
  }

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

  .cookie-btn {
    width: 100%;
  }
}
