:root {
  --primary-yellow: #FFD97D;
  --accent-orange: #F28C38;
  --accent-green: #4CAF50;
  --neutral-white: #FFFFFF;
  --neutral-dark: #333333;
  --neutral-light-gray: #F5F5F5;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PT Sans', 'Work Sans', sans-serif;
  font-size: 17px;
  line-height: 1.82;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
}

h1 {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-size: 52px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--neutral-dark);
}

h2 {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--neutral-dark);
}

h3 {
  font-family: 'PT Sans', 'Work Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--neutral-dark);
}

p {
  margin-bottom: 15px;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--neutral-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background: linear-gradient(90deg, var(--primary-yellow), var(--accent-orange));
}

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

.logo {
  font-family: 'Quicksand', 'Comfortaa', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--neutral-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--neutral-dark);
  border-radius: 2px;
  transition: 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--neutral-white);
    padding: 20px;
    border-bottom: 1px solid var(--neutral-light-gray);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--neutral-light-gray);
  }
}

main {
  margin-top: 70px;
}

section {
  padding: 110px 30px;
  max-width: 1360px;
  margin: 0 auto;
}

.hero {
  padding: 0;
  margin-top: 70px;
}

.hero-content {
  position: relative;
  height: 500px;
  background: url('images/hero-plate.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neutral-white);
  overflow: hidden;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(242, 140, 56, 0.3);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  color: var(--neutral-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.container-2col {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 55px;
  align-items: center;
}

.container-2col.reverse {
  grid-template-columns: 40% 60%;
}

.container-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}

.card {
  background: var(--neutral-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(242, 140, 56, 0.2);
}

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

.card-content {
  padding: 25px;
}

.card-content h3 {
  color: var(--accent-orange);
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--accent-orange));
  color: var(--neutral-dark);
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 140, 56, 0.3);
  filter: brightness(1.1);
}

.accent-text {
  color: var(--accent-orange);
  font-weight: 600;
}

.section-intro {
  font-size: 18px;
  line-height: 1.82;
  margin-bottom: 40px;
  color: var(--neutral-dark);
}

.img-section {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item {
  background: var(--neutral-light-gray);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--neutral-dark);
  background: var(--neutral-light-gray);
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e8e8e8;
}

.faq-question.active {
  background: var(--primary-yellow);
  color: var(--neutral-dark);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-answer.active {
  max-height: 500px;
  padding: 20px;
}

.table-seasonal {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

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

.table-seasonal th {
  background: var(--primary-yellow);
  font-weight: bold;
  color: var(--neutral-dark);
}

.table-seasonal tr:hover {
  background: var(--neutral-light-gray);
}

footer {
  background: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 50px 30px;
  margin-top: 50px;
}

.footer-content {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary-yellow);
  margin-bottom: 20px;
}

.footer-section a {
  color: var(--neutral-white);
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
}

.disclaimer-section {
  background: var(--neutral-light-gray);
  padding: 20px;
  border-radius: var(--radius);
  margin: 30px 0;
  border-left: 4px solid var(--accent-orange);
  font-size: 15px;
}

form {
  max-width: 600px;
  margin: 30px 0;
}

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

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

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(242, 140, 56, 0.1);
}

.form-disclaimer {
  background: #fffaeb;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 3px solid var(--accent-orange);
  font-size: 14px;
}

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

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

.modal-content {
  background: var(--neutral-white);
  padding: 40px;
  border-radius: var(--radius);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--neutral-dark);
  transition: color 0.3s ease;
}

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

.modal-content h2 {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 20px 30px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

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

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

.cookie-accept {
  background: var(--primary-yellow);
  color: var(--neutral-dark);
}

.cookie-accept:hover {
  background: var(--accent-orange);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-learn {
  background: transparent;
  color: var(--primary-yellow);
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

.hidden {
  display: none;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}

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

  h2 {
    font-size: 28px;
  }

  section {
    padding: 60px 20px;
  }

  .container-2col,
  .container-2col.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .container-3col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .hero-content {
    height: 300px;
  }

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

  .cookie-buttons {
    flex-wrap: wrap;
  }

  nav a {
    font-size: 14px;
  }
}
