/* Base Styles & Typography */
:root {
  /* Seasonal colors - will be updated by JS */
  --season-primary: #8BC34A; /* Default: Spring */
  --season-secondary: #CDDC39;
  --season-accent: #4CAF50;
  --season-light: #F1F8E9;
  --season-dark: #33691E;
  
  /* Base colors */
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --text-muted: #757575;
  --background: #FFFFFF;
  --background-alt: #F5F5F5;
  --shadow: rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Hind', sans-serif;
}

/* Summer theme */
.season-summer {
  --season-primary: #FFEB3B;
  --season-secondary: #FFC107;
  --season-accent: #FF9800;
  --season-light: #FFFDE7;
  --season-dark: #F57F17;
}

/* Autumn theme */
.season-autumn {
  --season-primary: #FF9800;
  --season-secondary: #FF5722;
  --season-accent: #F44336;
  --season-light: #FFF3E0;
  --season-dark: #E65100;
}

/* Winter theme */
.season-winter {
  --season-primary: #90CAF9;
  --season-secondary: #64B5F6;
  --season-accent: #2196F3;
  --season-light: #E3F2FD;
  --season-dark: #1565C0;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--season-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--season-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background-color: var(--season-accent);
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-family: var(--font-secondary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--season-accent);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: var(--season-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow);
}

.btn-outline {
  background-color: transparent;
  color: var(--season-accent);
  border: 2px solid var(--season-accent);
}

.btn-outline:hover {
  background-color: var(--season-accent);
  color: var(--text-light);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: var(--background);
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  height: 40px;
}

.navbar-menu {
  display: flex;
  list-style: none;
}

.navbar-item {
  margin-left: 2rem;
}

.navbar-link {
  font-weight: 600;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--season-accent);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-btn {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* Why Seasonal Section */
.why-seasonal {
  background-color: var(--season-light);
  position: relative;
  overflow: hidden;
}

.why-seasonal::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--season-secondary);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background-color: var(--background);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--season-accent);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.market-collage {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
}

.market-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.market-image:hover {
  transform: scale(1.05);
}

.market-image:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.market-image:nth-child(4) {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}

/* Recipes Section */
.recipes {
  background-color: var(--background);
}

.season-marker {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  background-color: var(--season-primary);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.recipes-slider {
  margin-top: 3rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 1.5rem;
}

.recipe-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background-color: var(--background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.recipe-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  background-color: var(--season-light);
  position: relative;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--background), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background-color: var(--background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.pricing-header {
  background-color: var(--season-primary);
  color: var(--text-dark);
  padding: 2rem;
  text-align: center;
}

.pricing-popular .pricing-header {
  background-color: var(--season-accent);
  color: var(--text-light);
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.pricing-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-features {
  padding: 2rem;
  list-style: none;
  flex-grow: 1;
}

.pricing-feature {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 30px;
}

.pricing-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--season-accent);
  font-weight: 700;
}

.pricing-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

/* Reviews Section */
.reviews {
  background-color: var(--background);
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background-color: var(--background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  padding: 2rem;
  max-width: 400px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.review-author {
  font-weight: 600;
  font-size: 1.1rem;
}

.review-location {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-text {
  position: relative;
  padding-left: 1.5rem;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--season-primary);
  opacity: 0.3;
  font-family: serif;
}

/* Chef Section */
.chef {
  background-color: var(--season-light);
  position: relative;
}

.chef-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.chef-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.chef-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

.chef-content {
  flex: 1;
  min-width: 300px;
}

.chef-quote {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.chef-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--season-accent);
  opacity: 0.5;
  font-family: serif;
}

.chef-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.chef-title {
  color: var(--text-muted);
}

/* Subscribe Section */
.subscribe {
  background-image: url('images/wooden-board.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--text-light);
}

.subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.subscribe-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.subscribe-input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-family: var(--font-primary);
}

/* FAQ Section */
.faq {
  background-color: var(--background);
}

.accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow);
}

.accordion-header {
  background-color: var(--background);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-icon {
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  background-color: var(--background-alt);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 1.5rem;
  max-height: 500px;
}

/* Contact Section */
.contact {
  background-color: var(--season-light);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: var(--background);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--season-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

/* Footer */
.footer {
  background-color: #333;
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-nav {
  flex: 1;
  min-width: 200px;
}

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: var(--season-accent);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.7rem;
}

.footer-link a {
  color: #bbb;
  transition: all 0.3s ease;
}

.footer-link a:hover {
  color: var(--text-light);
}

.footer-newsletter {
  flex: 2;
  min-width: 300px;
}

.footer-newsletter form {
  display: flex;
  margin-top: 1.5rem;
}

.footer-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

.footer-btn {
  padding: 10px 15px;
  background-color: var(--season-accent);
  color: var(--text-light);
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: var(--season-dark);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
}

/* Policy Pages */
.policy-page {
  padding: 8rem 0 5rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-title {
  margin-bottom: 3rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  margin-bottom: 1.5rem;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: var(--season-light);
}

.success-content {
  max-width: 600px;
  background-color: var(--background);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--season-accent);
  margin-bottom: 2rem;
}

.success-title {
  margin-bottom: 1.5rem;
}

.success-message {
  margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--background);
    box-shadow: 0 5px 10px var(--shadow);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
  }
  
  .navbar-item {
    margin: 0.7rem 0;
  }
  
  .navbar-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .market-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 150px);
  }
  
  .market-image:nth-child(1),
  .market-image:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  
  .chef-container {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-map {
    height: 300px;
  }
  
  .subscribe-form {
    flex-direction: column;
  }
  
  .subscribe-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .market-collage {
    grid-template-columns: 1fr;
  }
  
  .policy-content {
    padding: 0 1.5rem;
  }
  
  .success-content {
    padding: 2rem;
  }
}