/* ===== YUMMY FOOD — Global Styles ===== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --beige: #F0E8D8;
  --beige-light: #F7F2EA;
  --cream: #FEFDFB;
  --sage-green: #8BAF9C;
  --sage-green-light: #A8C7B6;
  --dark-green: #2D5E3A;
  --dark-green-deep: #1E3F27;
  --forest: #3A6B47;
  --text-dark: #2D3B2D;
  --text-medium: #5A6B5A;
  --text-light: #8A9A8A;
  --white: #FFFFFF;
  --shadow-soft: 0 2px 20px rgba(45, 94, 58, 0.08);
  --shadow-medium: 0 4px 30px rgba(45, 94, 58, 0.12);
  --shadow-strong: 0 8px 40px rgba(45, 94, 58, 0.18);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: var(--beige);
  border-bottom: 1px solid rgba(45, 94, 58, 0.08);
  transition: var(--transition-smooth);
}



.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo img {
  width: 50px;
  height: 50px;
}

.header__logo-text {
  font-family: var(--font-script);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-green);
  letter-spacing: 0.5px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-green);
  padding: 10px 18px;
  border-radius: 6px;
  transition: var(--transition-fast);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--sage-green);
  border-radius: 1px;
  transition: var(--transition-smooth);
}

.header__nav-link:hover {
  color: var(--forest);
  background: rgba(139, 175, 156, 0.12);
}

.header__nav-link:hover::after {
  width: 60%;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.header__menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(30, 63, 39, 0.35) 0%,
      rgba(30, 63, 39, 0.50) 50%,
      rgba(30, 63, 39, 0.65) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo {
  width: 220px;
  height: 220px;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));

}

.hero__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero__subtitle {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--sage-green-light);
  font-weight: 400;
  letter-spacing: 1px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
  cursor: pointer;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.6);
}

.hero__scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: rgba(254, 253, 251, 0.6);
}

/* Slideshow Indicators */
.hero__indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(254, 253, 251, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.hero__indicator.active {
  background: rgba(254, 253, 251, 0.9);
  border-color: rgba(254, 253, 251, 0.9);
  transform: scale(1.15);
}

.hero__indicator:hover {
  background: rgba(254, 253, 251, 0.6);
  border-color: rgba(254, 253, 251, 0.8);
}

/* ===== ABOUT / PHILOSOPHY SECTION ===== */
.about {
  padding: var(--section-padding);
  background: var(--cream);
}

.about__header {
  text-align: center;
  margin-bottom: 60px;
}

.about__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 16px;
  display: block;
}

.about__title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about__title-accent {
  font-family: var(--font-script);
  color: var(--sage-green);
  font-weight: 400;
}

.about__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-green), var(--sage-green-light));
  margin: 0 auto;
  border-radius: 2px;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__text p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.85;
}

.about__text p strong {
  color: var(--dark-green);
  font-weight: 600;
}

.about__highlight {
  background: var(--beige-light);
  border-left: 4px solid var(--sage-green);
  padding: 24px 30px;
  border-radius: 0 12px 12px 0;
  margin: 10px 0;
}

.about__highlight p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--dark-green) !important;
  line-height: 1.7 !important;
}

.about__info-card {
  background: var(--beige-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.about__info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-green), var(--dark-green));
}

.about__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(139, 175, 156, 0.15);
}

.about__info-item:last-child {
  border-bottom: none;
}

.about__info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--sage-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.about__info-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 4px;
}

.about__info-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* Chef mascot decoration */
.about__chef {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.about__chef img {
  width: 120px;
  height: auto;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.about__chef img:hover {
  opacity: 1;
  transform: scale(1.05) rotate(-3deg);
}

/* ===== CTA / MENU SECTION ===== */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark-green-deep) 0%, var(--forest) 50%, var(--dark-green) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.cta__subtitle {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--sage-green-light);
  margin-bottom: 40px;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--sage-green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--sage-green);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.cta__button:hover {
  background: transparent;
  color: var(--sage-green-light);
  border-color: var(--sage-green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 175, 156, 0.3);
}

.cta__button svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.cta__button:hover svg {
  transform: translateX(4px);
}

/* ===== SECTION CARDS (Traiteur / Livraison) ===== */
.section-card {
  padding: var(--section-padding);
  background: var(--cream);
}

.section-card--alt {
  background: var(--beige-light);
}

.section-card__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-card__icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.section-card__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.section-card__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-green), var(--sage-green-light));
  margin: 0 auto 30px;
  border-radius: 2px;
}

.section-card__text {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.85;
  margin-bottom: 32px;
}

.section-card__text strong {
  color: var(--dark-green);
  font-weight: 600;
}

.section-card__contact {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--beige-light);
  padding: 20px 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(139, 175, 156, 0.15);
}

.section-card--alt .section-card__contact {
  background: var(--white);
}

.section-card__contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--sage-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.section-card__contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 4px;
}

.section-card__phone {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-green);
  transition: var(--transition-fast);
}

.section-card__phone:hover {
  color: var(--forest);
}

.section-card__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--sage-green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--sage-green);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.section-card__button:hover {
  background: transparent;
  color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 175, 156, 0.3);
}

.section-card__button svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.section-card__button:hover svg {
  transform: translate(3px, -3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--beige);
  padding: 50px 0 30px;
  border-top: 1px solid rgba(45, 94, 58, 0.08);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer__brand-text {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--dark-green);
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== ANIMATIONS ===== */
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REVIEWS / AVIS SECTION ===== */
.reviews {
  padding: var(--section-padding);
  background: var(--cream);
}

.reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 16px;
  display: block;
}

.reviews__title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 16px;
}

.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews__stars {
  color: #E8B430;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews__score {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-green);
}

.reviews__count {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* Staggered single-column layout */
.reviews__grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

/* No box — just text on the background */
.reviews__card {
  max-width: 520px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  transition: none;
}

.reviews__card:hover {
  transform: none;
  box-shadow: none;
}

/* Staggered positions: left, right, center */
.reviews__card:nth-child(1) {
  align-self: flex-start;
}

.reviews__card:nth-child(2) {
  align-self: flex-end;
}

.reviews__card:nth-child(3) {
  align-self: center;
}

.reviews__card-stars {
  color: #E8B430;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.reviews__quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 14px;
  border: none;
  padding: 0;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__author-avatar {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--sage-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.8;
}

.reviews__author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.reviews__author-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.reviews__cta {
  text-align: center;
  margin-top: 50px;
}

.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sage-green);
  padding: 12px 24px;
  border-radius: 8px;
  transition: var(--transition-fast);
  border: 1px solid rgba(139, 175, 156, 0.2);
}

.reviews__link:hover {
  background: rgba(139, 175, 156, 0.08);
  color: var(--dark-green);
  border-color: var(--sage-green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__title {
    font-size: 2.2rem;
  }

  .hero__logo {
    width: 170px;
    height: 170px;
  }

  .reviews__grid {
    gap: 36px;
  }

  .reviews__card {
    max-width: 100%;
    align-self: center !important;
  }

  .reviews__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--beige);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-medium);
    border-top: 1px solid rgba(45, 94, 58, 0.08);
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav-link {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .header__menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .hero__logo {
    width: 150px;
    height: 150px;
  }

  .hero__title {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .about {
    padding: 60px 0;
  }

  .about__title {
    font-size: 1.8rem;
  }

  .cta__title {
    font-size: 1.8rem;
  }
}