* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "News Cycle", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2c3e2d;
  background-color: #fefcf7;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
p {
  margin-bottom: 1rem;
  color: #4a5d4e;
}
a {
  color: #8b5a3c;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #6b8e3f;
  text-decoration: underline;
}
.header {
  background-color: #fefcf7;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.nav {
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo-img {
  height: 50px;
  width: auto;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-link {
  color: #2c3e2d;
  font-weight: 400;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #6b8e3f;
  text-decoration: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: #2c3e2d;
  margin: 3px 0;
  transition: 0.3s;
}
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f6f0 0%, #f0ede4 100%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-title {
  color: #2c3e2d;
  margin-bottom: 1rem;
}
.hero-subtitle {
  color: #6b8e3f;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-description {
  color: #4a5d4e;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seasonal-dish {
  width: 400px;
  height: 300px;
  background: linear-gradient(45deg, #e8e2d4, #ddd6c7);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.dish-placeholder {
  text-align: center;
  color: #6b8e3f;
  font-weight: 700;
  font-size: 1.2rem;
}
.dish-placeholder img {
  max-width: 340px;
  border-radius: 15px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: "News Cycle", Arial, sans-serif;
}
.btn-primary {
  background-color: #6b8e3f;
  color: #fff;
}
.btn-primary:hover {
  background-color: #5a7635;
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  background-color: rgba(0, 0, 0, 0);
  color: #8b5a3c;
  border: 2px solid #8b5a3c;
}
.btn-secondary:hover {
  background-color: #8b5a3c;
  color: #fff;
  text-decoration: none;
}
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #f8f6f0 0%, #d4ead7 50%, #f0ede4 100%);
  text-align: center;
}
.page-title {
  color: #2c3e2d;
  margin-bottom: 1rem;
}
.page-subtitle {
  color: #6b8e3f;
  font-size: 1.2rem;
  font-weight: 400;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e2d;
}
.categories,
.latest-posts,
.recommendations,
.recipes,
.stories,
.contact-section {
  padding: 80px 0;
}
.categories {
  background-color: #fefcf7;
}
.latest-posts {
  background-color: #f8f6f0;
}
.recommendations {
  background-color: #fefcf7;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.category-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.category-card h3 {
  color: #2c3e2d;
  margin-bottom: 0.5rem;
}
.category-card p {
  color: #6b6b6b;
  margin-bottom: 1.5rem;
}
.category-link {
  color: #6b8e3f;
  font-weight: 700;
  text-decoration: none;
}
.category-link:hover {
  color: #5a7635;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-image {
  height: 200px;
  background: linear-gradient(45deg, #e8e2d4, #ddd6c7);
  align-items: center;
  justify-content: center;
  color: #6b8e3f;
  font-weight: 700;
  font-size: 1.1rem;
}
.post-content {
  padding: 1.5rem;
}
.post-content h3 {
  color: #2c3e2d;
  margin-bottom: 0.5rem;
}
.post-excerpt {
  color: #6b6b6b;
  margin-bottom: 1rem;
}
.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.post-date {
  color: #8b5a3c;
}
.post-category {
  color: #6b8e3f;
  font-weight: 700;
}
.read-more {
  color: #6b8e3f;
  font-weight: 700;
  text-decoration: none;
}
.read-more:hover {
  color: #5a7635;
}
.recommendations-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
.recommendation-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.recommendation-image {
  height: 250px;
  background: linear-gradient(45deg, #e8e2d4, #ddd6c7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b8e3f;
  font-weight: 700;
  font-size: 1.2rem;
}
.recommendation-text h3 {
  color: #2c3e2d;
  margin-bottom: 1rem;
}
.recommendation-text p {
  margin-bottom: 1.5rem;
}
.recommendation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tip-of-day,
.seasonal-ingredient {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.tip-of-day h4,
.seasonal-ingredient h4 {
  color: #6b8e3f;
  margin-bottom: 0.5rem;
}
.ingredient-highlight {
  margin-top: 0.5rem;
}
.ingredient-highlight strong {
  color: #8b5a3c;
}
.filters {
  background-color: #f8f6f0;
  padding: 2rem 0;
}
.filter-bar {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.filter-group label {
  color: #2c3e2d;
  font-weight: 700;
  font-size: 0.9rem;
}
.filter-select {
  padding: 8px 12px;
  border: 2px solid #ddd6c7;
  border-radius: 6px;
  background-color: #fff;
  color: #2c3e2d;
  font-family: "News Cycle", Arial, sans-serif;
}
.filter-reset {
  background-color: #8b5a3c;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "News Cycle", Arial, sans-serif;
  font-weight: 700;
}
.filter-reset:hover {
  background-color: #6d4530;
}
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.recipe-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.recipe-card:hover {
  transform: translateY(-5px);
}
.recipe-image {
  height: 200px;
  align-items: center;
  justify-content: center;
  color: #6b8e3f;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
}
.recipe-time {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
}
.recipe-content {
  padding: 1.5rem;
}
.recipe-content h3 {
  color: #2c3e2d;
  margin-bottom: 0.5rem;
}
.recipe-excerpt {
  color: #6b6b6b;
  margin-bottom: 1rem;
}
.recipe-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tag {
  background-color: #f0ede4;
  color: #6b8e3f;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
}
.recipe-toggle {
  background-color: #6b8e3f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "News Cycle", Arial, sans-serif;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.recipe-toggle:hover {
  background-color: #5a7635;
}
.recipe-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0ede4;
}
.recipe-ingredients,
.recipe-instructions {
  margin-bottom: 1.5rem;
}
.recipe-ingredients h4,
.recipe-instructions h4 {
  color: #6b8e3f;
  margin-bottom: 0.5rem;
}
.recipe-ingredients ul,
.recipe-instructions ol {
  padding-left: 1.5rem;
}
.recipe-ingredients li,
.recipe-instructions li {
  margin-bottom: 0.3rem;
  color: #4a5d4e;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}
.story-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.story-image {
  height: 200px;
  background: linear-gradient(45deg, #e8e2d4, #ddd6c7);
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.story-image img {
  object-fit: cover;
  border-radius: 15px;
}
.story-content {
  padding: 2rem;
}
.story-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.story-date {
  color: #8b5a3c;
}
.story-category {
  color: #6b8e3f;
  font-weight: 700;
}
.story-content h2 {
  color: #2c3e2d;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.story-excerpt {
  color: #6b6b6b;
  margin-bottom: 1.5rem;
}
.story-toggle {
  background-color: #8b5a3c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "News Cycle", Arial, sans-serif;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.story-toggle:hover {
  background-color: #6d4530;
}
.story-full {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #f0ede4;
}
.story-full h3 {
  color: #6b8e3f;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.story-full h4 {
  color: #8b5a3c;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.story-full ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.story-full li {
  margin-bottom: 0.3rem;
  color: #4a5d4e;
}
.story-link {
  color: #6b8e3f;
  text-decoration: underline;
}
.story-link:hover {
  color: #5a7635;
}
.newsletter {
  background: linear-gradient(135deg, #6b8e3f 0%, #5a7635 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.newsletter h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.newsletter p {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-family: "News Cycle", Arial, sans-serif;
}
.newsletter-form .btn {
  padding: 12px 24px;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
.contact-card h2 {
  color: #2c3e2d;
  margin-bottom: 1rem;
}
.contact-details {
  margin: 1.5rem 0;
}
.contact-item {
  margin-bottom: 1rem;
}
.contact-item strong {
  color: #6b8e3f;
}
.contact-note {
  background-color: #f8f6f0;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.collaboration-info {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.collaboration-info h3 {
  color: #6b8e3f;
  margin-bottom: 1rem;
}
.collaboration-info ul {
  padding-left: 1.5rem;
}
.collaboration-info li {
  margin-bottom: 0.3rem;
  color: #4a5d4e;
}
.contact-form-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.contact-form {
  padding: 2rem;
}
.contact-form h2 {
  color: #2c3e2d;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  color: #2c3e2d;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ddd6c7;
  border-radius: 6px;
  font-family: "News Cycle", Arial, sans-serif;
  font-size: 1rem;
  background-color: #fefcf7;
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6b8e3f;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}
.footer {
  background-color: #2c3e2d;
  color: #fff;
  padding: 60px 0 20px;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-info p {
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 1.5rem;
}
.footer-contact {
  margin-top: 1rem;
}
.footer-contact a {
  color: #8b5a3c;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-column h4 {
  color: #6b8e3f;
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: hsla(0, 0%, 100%, 0.8);
  text-decoration: none;
}
.footer-column a:hover,
.footer-column a.active {
  color: #8b5a3c;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
}
.footer-bottom p {
  color: hsla(0, 0%, 100%, 0.6);
  margin: 0;
}
.legal-section {
  padding: 140px 0 80px;
  background-color: #fefcf7;
}
.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}
.legal-date {
  color: #8b5a3c;
  font-style: italic;
  margin-top: 0.5rem;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.legal-content h2 {
  color: #2c3e2d;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f0ede4;
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  color: #6b8e3f;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content h4 {
  color: #8b5a3c;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  margin-bottom: 0.3rem;
  color: #4a5d4e;
}
.legal-content strong {
  color: #2c3e2d;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #8b5a3c;
}
.close:hover {
  color: #6d4530;
}
.modal-content h3 {
  color: #6b8e3f;
  margin-bottom: 1rem;
}
.modal-content p {
  color: #4a5d4e;
}
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.image-placeholder img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: #fefcf7;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    margin: 1rem 0;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .seasonal-dish {
    width: 100%;
    max-width: 350px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .recommendations-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .recommendation-main {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .filter-group label {
    min-width: 80px;
  }
  .recipes-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero {
    padding: 100px 0 60px;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .seasonal-dish {
    height: 200px;
  }
  .categories,
  .latest-posts,
  .recommendations,
  .recipes,
  .stories,
  .contact-section {
    padding: 60px 0;
  }
  .newsletter {
    padding: 40px 0;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .category-card,
  .contact-card,
  .collaboration-info {
    padding: 1.5rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .legal-content {
    padding: 1.5rem 1rem;
  }
  .modal-content {
    margin: 20% auto;
    padding: 1.5rem;
  }
}
