/* CSS Variables for Design System */
:root {
  --deep-teal: #0f3b3b;
  --saffron-accent: #d98b17;
  --cream-paper: #faf6f0;
  --soft-gold: #c9a25a;
  --muted-clay: #e9d8c3;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --border-light: #e5e5e5;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  --border-radius: 12px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream-paper);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.saffron-swirl {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  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);
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--deep-teal);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron-accent), var(--soft-gold));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 16px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron-accent), var(--soft-gold));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(217, 139, 23, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 139, 23, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-teal);
  border: 2px solid var(--deep-teal);
}

.btn-secondary:hover {
  background: var(--deep-teal);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--saffron-accent);
  border: 2px solid var(--saffron-accent);
}

.btn-outline:hover {
  background: var(--saffron-accent);
  color: var(--white);
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background: url("/placeholder.svg?height=1200&width=1600") center / cover;
  background-attachment: fixed;
  transform: translateZ(0);
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 59, 59, 0.8), rgba(15, 59, 59, 0.6));
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D98B17' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm0 0c0 11.046 8.954 20 20 20s20-8.954 20-20-8.954-20-20-20-20 8.954-20 20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hero-left {
  animation: fadeInLeft 1s ease-out;
}

.logo-monogram {
  margin-bottom: 2rem;
  animation: popIn 0.8s ease-out 0.3s both;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--saffron-accent);
  margin-bottom: 2rem;
  min-height: 1.5em;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-microcopy {
  color: var(--cream-paper);
  font-style: italic;
  opacity: 0.9;
}

.hero-right {
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease-out;
}

.portrait-container {
  position: relative;
}

.chef-portrait {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--saffron-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  animation: popIn 1s ease-out 0.6s both;
}

.chef-portrait:hover {
  transform: rotate(3deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-left h2 {
  color: var(--deep-teal);
  margin-bottom: 2rem;
}

.bio-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.signature-section {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.signature {
  flex-shrink: 0;
}

.philosophy-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.philosophy-card {
  background: var(--muted-clay);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.philosophy-card h3 {
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.philosophy-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.chef-quote {
  background: var(--deep-teal);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
  font-style: italic;
}

.quote-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron-accent), var(--soft-gold));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.chef-quote p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.chef-quote cite {
  color: var(--saffron-accent);
  font-weight: 500;
}

/* Signature Dishes Section */
.dishes {
  padding: var(--section-padding);
  background: var(--cream-paper);
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.dish-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dish-image {
  position: relative;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.dish-card:hover .dish-image img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.dish-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 59, 59, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.dish-card:hover .dish-overlay {
  opacity: 1;
}

.view-recipe-btn {
  background: var(--saffron-accent);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.view-recipe-btn:hover {
  background: var(--soft-gold);
  transform: scale(1.05);
}

.dish-info {
  padding: 1.5rem;
}

.dish-info h3 {
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
}

.dish-info p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.dish-badges {
  display: flex;
  gap: 0.5rem;
}

.badge {
  background: var(--muted-clay);
  color: var(--deep-teal);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Workshops & Events Section */
.workshops {
  padding: var(--section-padding);
  background: var(--white);
}

.event-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--saffron-accent);
  color: var(--white);
  border-color: var(--saffron-accent);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 2rem;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  padding-left: 2rem;
}

.timeline-node {
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 16px;
  height: 16px;
  background: var(--saffron-accent);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--border-light);
  transition: var(--transition-smooth);
  z-index: 2;
}

.timeline-item:hover .timeline-node {
  background: var(--soft-gold);
  transform: translateX(-50%) scale(1.2);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 4px var(--border-light), 0 0 0 8px transparent;
  }
  50% {
    box-shadow: 0 0 0 4px var(--border-light), 0 0 0 8px rgba(217, 139, 23, 0.3);
  }
  100% {
    box-shadow: 0 0 0 4px var(--border-light), 0 0 0 8px transparent;
  }
}

.timeline-content {
  background: var(--muted-clay);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.event-date {
  color: var(--saffron-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  color: var(--deep-teal);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.event-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.timeline-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Media & Press Section */
.media {
  padding: var(--section-padding);
  background: var(--cream-paper);
}

.media-logos {
  margin-bottom: 3rem;
  overflow: hidden;
}

.logo-carousel {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: scroll 20s linear infinite;
}

.logo-carousel:hover {
  animation-play-state: paused;
}

.logo-carousel img {
  height: 60px;
  width: auto;
  opacity: 0.6;
  transition: var(--transition-smooth);
  filter: grayscale(100%);
}

.logo-carousel img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.press-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.press-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.press-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.press-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.press-content {
  padding: 1.5rem;
}

.press-content h3 {
  color: var(--deep-teal);
  margin-bottom: 1rem;
}

.press-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--saffron-accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.read-more:hover {
  color: var(--soft-gold);
}

/* Cookbooks Section */
.cookbooks {
  padding: var(--section-padding);
  background: var(--white);
}

.cookbook-showcase {
  margin-bottom: 4rem;
}

.cookbook-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.book-cover img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.book-cover img:hover {
  transform: rotate(-2deg) scale(1.05);
}

.book-info h3 {
  color: var(--deep-teal);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.book-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.book-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-signup {
  background: var(--deep-teal);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.signup-content h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.signup-content p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.signup-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
}

.signup-form input:focus {
  outline: 2px solid var(--saffron-accent);
}

/* Gallery Section */
.gallery {
  padding: var(--section-padding);
  background: var(--cream-paper);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.booking-form {
  background: var(--muted-clay);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.booking-form h3 {
  color: var(--deep-teal);
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron-accent);
  box-shadow: 0 0 0 3px rgba(217, 139, 23, 0.1);
}

.contact-card {
  background: var(--deep-teal);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.contact-card h3 {
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.contact-item:hover {
  color: var(--saffron-accent);
}

.contact-icon {
  font-size: 1.2rem;
  width: 24px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: var(--white);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  color: var(--saffron-accent);
  transform: scale(1.2);
}

.map-placeholder img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

/* Footer */
.footer {
  background: var(--deep-teal);
  color: var(--white);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 600;
}

.footer-left p {
  opacity: 0.8;
  margin: 0;
}

.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-signup {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-signup input {
  padding: 8px 12px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 14px;
}

.footer-signup button {
  background: var(--saffron-accent);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.footer-signup button:hover {
  background: var(--soft-gold);
}

.saffron-motif {
  transition: var(--transition-smooth);
}

.saffron-motif:hover {
  transform: rotate(15deg) scale(1.1);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideIn 0.3s ease-out;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.close:hover {
  color: var(--saffron-accent);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease-out;
}

.lightbox img {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
  border-radius: var(--border-radius);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--saffron-accent);
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  padding: 1rem;
  font-size: 1.1rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(217, 139, 23, 0.8);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--saffron-accent);
}

/* Chef's Tip Widget */
.chef-tip {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  border: 2px solid var(--saffron-accent);
  border-radius: var(--border-radius);
  padding: 1rem;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideInRight 0.5s ease-out;
}

.chef-tip .tip-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.chef-tip .tip-content {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.chef-tip .tip-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
}

.chef-tip .tip-close:hover {
  color: var(--saffron-accent);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-teal);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  animation: slideInUp 0.3s ease-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .chef-portrait {
    width: 250px;
    height: 250px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .signature-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 0;
    text-align: left;
  }

  .timeline-node {
    left: 20px;
  }

  .press-articles {
    grid-template-columns: 1fr;
  }

  .cookbook-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .chef-tip {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 2rem;
    transform: none;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .signup-form {
    flex-direction: column;
  }

  .footer-signup {
    flex-direction: column;
  }

  .event-filters,
  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }
}

/* Print Styles */
@media print {
  .hero-background,
  .preloader,
  .chef-tip,
  .toast,
  .modal,
  .lightbox {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .chef-portrait {
    width: 200px;
    height: 200px;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 20pt;
  }
  h3 {
    font-size: 16pt;
  }

  .btn {
    border: 2px solid var(--deep-teal);
    background: transparent !important;
    color: var(--deep-teal) !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --text-light: var(--text-dark);
    --border-light: var(--text-dark);
  }

  .btn-outline,
  .btn-secondary {
    border-width: 3px;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 3px solid var(--saffron-accent);
  outline-offset: 2px;
}

.dish-card:focus,
.gallery-item:focus,
.press-card:focus {
  outline: 3px solid var(--saffron-accent);
  outline-offset: 2px;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
        /* Footer Container Styling */
        .chef-footer {
            background-color: #0F3B3B; /* A neutral dark background */
            color: white; /* Original text color */
            padding: 64px 48px;
            border-top-left-radius: 28px; /* Added border radius */
            border-top-right-radius: 28px; /* Added border radius */
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Top Section Layout */
        .footer-top {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
            padding-bottom: 48px;
        }

        /* Individual Columns */
        .footer-column {
            flex: 1;
            min-width: 210px;
        }

        /* Brand Column */
        .footer-brand .logo-img {
            filter: brightness(0) invert(1); /* Original filter for the logo */
            margin-bottom: 16px;
        }

        .footer-brand .brand-name {
            font-weight: 600;
            font-size: 18px;
            margin: 0;
        }

        /* Link Columns Styling */
        .footer-links h4 {
            color: white;
            font-size: 16px;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links p {
            margin: 0 0 12px 0;
        }

        .footer-links a {
            color: white; /* Original link color */
            text-decoration: none;
            transition: text-decoration 0.3s;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        /* Bottom Section Styling */
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            font-size: 13px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: white;
            text-decoration: none;
        }

        .footer-bottom-links a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .footer-top {
                flex-direction: column;
                align-items: flex-start;
                gap: 32px;
            }
            .chef-footer {
                padding: 48px 24px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }