/* ============================================================
   homepage.css — Page-specific styles for index.html
   ============================================================ */


/* ── Hero ── */
.hero {
  padding:    100px 0 80px;
  text-align: center;
}

.hero h1 {
  max-width:  720px;
  margin:     0 auto 18px;
  font-style: italic;
}

.hero__eyebrow {
  font-family:    var(--ff-body);
  font-size:      0.82rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sage-dark);
  margin-bottom:  24px;
}

.hero__subtitle {
  font-size:   1.05rem;
  color:       var(--mid-brown);
  max-width:   600px;
  margin:      0 auto 20px;
  line-height: 1.85;
}
.hero__subtitle em {
  font-family: var(--ff-heading);
  color:       var(--terracotta);
}

.hero__photo {
  max-width:     780px;
  margin:        48px auto 0;
  border-radius: var(--radius);
  overflow:      hidden;
}
.hero__photo .img-ph { aspect-ratio: 21 / 9; }


/* ── Culinary Journey — two-column: image + text ── */
.culinary-journey {
  background-color: var(--sage-light);
  padding:          80px 0;
}

.culinary-journey__grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   48px;
  align-items:           stretch;
}

.culinary-journey__photo {
  border-radius: var(--radius);
  overflow:      hidden;
  min-height:    320px;
}
.culinary-journey__photo img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.culinary-journey__text {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  padding:         24px 0;
}

.culinary-journey__title {
  font-family:   var(--ff-heading);
  font-size:     clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight:   600;
  color:         var(--ease);
  margin-bottom: 28px;
  line-height:   1.3;
}

.culinary-journey__body {
  font-size:   1.02rem;
  color:       var(--mid-brown);
  line-height: 1.85;
}
.culinary-journey__body p          { margin-bottom: 18px; }
.culinary-journey__body p:last-child { margin-bottom: 0; }
.culinary-journey__body strong {
  font-weight: 700;
  color:       var(--dark-brown);
}


/* ── Services — 2 card layout ── */
.services-cards {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   36px;
  margin-top:            52px;
  align-items:           start;
}

.service-card {
  border-radius: 8px;
  overflow:      hidden;
  background:    var(--cream-white);
  border:        1px solid var(--border);
  box-shadow:    0 2px 16px rgba(41 25 9 / 0.06);
  transition:    box-shadow 0.25s ease, transform 0.25s ease;
  display:       flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(41 25 9 / 0.12);
  transform:  translateY(-3px);
}

/* Image area */
.service-card__image {
  position:    relative;
  overflow:    hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.service-card__image img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__image img {
  transform: scale(1.03);
}

/* Content area */
.service-card__body {
  padding:        36px 32px 32px;
  display:        flex;
  flex-direction: column;
  gap:            16px;
  flex:           1;
}

/* Eyebrow label */
.service-card__eyebrow {
  font-family:    var(--ff-body);
  font-size:      0.72rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sage-dark);
}

/* Card title */
.service-card__title {
  font-family:   var(--ff-heading);
  font-size:     clamp(1.25rem, 2vw, 1.55rem);
  font-weight:   600;
  color:         var(--dark-brown);
  line-height:   1.25;
  margin:        0;
}

/* Subcategory tags */
.service-card__tags {
  display:   flex;
  flex-wrap: wrap;
  gap:       8px;
}
.service-card__tags span {
  font-family:    var(--ff-body);
  font-size:      0.72rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding:        5px 12px;
  border-radius:  20px;
  background:     rgba(164 176 139 / 0.18);
  color:          var(--sage-dark);
  border:         1px solid rgba(164 176 139 / 0.5);
  transition:     background 0.2s ease;
}
.service-card:hover .service-card__tags span {
  background: rgba(164 176 139 / 0.28);
}

/* Short description */
.service-card__desc {
  font-size:   1rem;
  color:       var(--mid-brown);
  line-height: 1.7;
  margin:      0;
}

/* Main price */
.service-card__price {
  font-family: var(--ff-heading);
  font-size:   clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color:       var(--terracotta);
  line-height: 1;
}

/* Sub-service block (Regional Recipes) */
.service-card__sub {
  border:        1px dashed var(--border);
  border-radius: 6px;
  background:    var(--cream);
  padding:       18px 20px;
  display:       flex;
  flex-direction: column;
  gap:           6px;
}
.service-card__sub-title {
  font-family:   var(--ff-heading);
  font-size:     1rem;
  font-weight:   600;
  color:         var(--dark-brown);
  margin:        0;
  font-style:    italic;
}
.service-card__sub-desc {
  font-size:   0.85rem;
  color:       var(--mid-brown);
  line-height: 1.6;
  margin:      0;
}
.service-card__sub-price {
  font-family: var(--ff-heading);
  font-size:   1.4rem;
  font-weight: 700;
  color:       var(--sage-dark);
  margin-top:  4px;
}

/* CTA button spacing */
.service-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
}

/* ── Featured card accent ── */
.service-card--featured {
  border-top: 4px solid var(--terracotta);
}
.service-card--featured .service-card__eyebrow {
  color: var(--terracotta);
}

/* ── Course card (secondary) ── */
.service-card--course {
  border-top: 4px solid var(--sage);
}
.service-card--course .service-card__body {
  padding-bottom: 36px;
}


/* ── Course minimal strip ── */
.course-minimal {
  text-align: center;
  padding:    56px 0;
}
.course-minimal__label {
  font-family:    var(--ff-body);
  font-size:      0.78rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sage-light);
  margin-bottom:  12px;
}
.course-minimal__title {
  font-family:   var(--ff-heading);
  font-size:     clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight:   600;
  color:         var(--cream);
  margin-bottom: 24px;
  line-height:   1.3;
}
.btn--outline-light {
  border-color: var(--sage-light);
  color:        var(--sage-light);
}
.btn--outline-light:hover {
  background-color: var(--sage-light);
  color:            var(--dark-brown);
}


/* ── Services — card grid ── */
.services-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   28px;
  margin-top:            52px;
}

.service-card {
  padding:       36px 24px;
  background:    var(--cream-white);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  text-align:    center;
  transition:    var(--ease);
}
.service-card:hover {
  border-color: var(--sage);
  box-shadow:   0 4px 20px rgba(0 0 0 / 0.05);
}

.service-card__icon {
  font-size:     2rem;
  margin-bottom: 14px;
}
.service-card h4 { color: var(--sage-dark); margin-bottom: 10px; }
.service-card h3 { color: var(--dark-brown); margin-bottom: 14px; font-size: 1.12rem; }
.service-card p  { font-size: 0.95rem; color: var(--mid-brown); line-height: 1.75; }

.badge-soon {
  display:        inline-block;
  font-size:      0.68rem;
  font-weight:    700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding:        4px 14px;
  border-radius:  20px;
  background:     var(--sage);
  color:          var(--dark-brown);
  margin-top:     14px;
}


/* ── Course Teaser ── */
.course-teaser {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   52px;
  align-items:           center;
}

.course-teaser__text h2     { color: var(--cream); margin-bottom: 18px; }
.course-teaser__text p      { font-size: 1.02rem; line-height: 1.85; margin-bottom: 14px; }
.course-teaser__text .btn   { margin-top: 18px; }
.course-teaser__photo .img-ph {
  aspect-ratio:  4 / 3;
  border-radius: var(--radius);
}


/* ── Products Placeholder ── */
.products-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   22px;
  margin-top:            48px;
}

.product-card {
  border:         1px dashed var(--border);
  border-radius:  var(--radius);
  overflow:       hidden;
  background:     var(--cream-white);
  text-align:     center;
  padding-bottom: 20px;
}
.product-card .img-ph { aspect-ratio: 1 / 1; }
.product-card p {
  font-size:   0.88rem;
  color:       rgba(0 0 0 / 0.28);
  margin-top:  14px;
  font-weight: 600;
}


/* ── Dishes Slider — center-focus carousel ── */
.dishes-slider        { margin-top: 40px; }

.dishes-slider__viewport {
  overflow: hidden;
  width:    100%;
  padding:  0 8px;
}

.dishes-slider__track {
  display:     flex;
  transition:  transform 0.4s ease;
  will-change: transform;
}

.dishes-slider__slide {
  flex:       0 0 33.333%;
  padding:    0 12px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dishes-slider__slide-inner {
  position:      relative;
  border-radius: var(--radius);
  overflow:      hidden;
  box-shadow:    0 4px 20px rgba(0 0 0 / 0.08);
}

.dishes-slider__slide:not(.dishes-slider__slide--active) .dishes-slider__slide-inner {
  opacity:   0.55;
  transform: scale(0.92);
}
.dishes-slider__slide--active .dishes-slider__slide-inner {
  opacity:   1;
  transform: scale(1);
}

.dishes-slider__slide-inner img,
.dishes-slider__slide-inner video {
  width:      100%;
  height:     auto;
  display:    block;
}

.dishes-slider__thumbs {
  display:         flex;
  justify-content: center;
  gap:             10px;
  margin-top:      24px;
  flex-wrap:       wrap;
  padding:         0 8px;
}

.dishes-slider__thumb {
  flex:          0 0 auto;
  width:         56px;
  height:        56px;
  border-radius: var(--radius);
  overflow:      hidden;
  border:        2px solid transparent;
  cursor:        pointer;
  transition:    border-color 0.2s ease, opacity 0.2s ease;
  background:    var(--border);
}
.dishes-slider__thumb:hover      { opacity: 0.9; }
.dishes-slider__thumb--active    { border-color: var(--terracotta); opacity: 1; }

.dishes-slider__thumb img,
.dishes-slider__thumb video {
  width:      100%;
  height:     100%;
  object-fit: cover;
  display:    block;
}

.dishes-slider__arrows {
  display:         flex;
  justify-content: center;
  gap:             16px;
  margin-top:      16px;
}

.dishes-slider__arrow {
  width:           44px;
  height:          44px;
  border-radius:   50%;
  border:          2px solid var(--sage);
  background:      var(--cream-white);
  color:           var(--sage-dark);
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: center;
  transition:      var(--ease);
}
.dishes-slider__arrow:hover {
  background:   var(--sage);
  color:        var(--cream);
  border-color: var(--sage);
}
.dishes-slider__arrow svg { width: 20px; height: 20px; }


/* ── Booking embed ── */
.booking-embed {
  display:    block;
  width:      100%;
  border:     none;
  overflow:   hidden;
  margin-top: 32px;
}


/* ── Newsletter ── */
.newsletter-form {
  max-width: 480px;
  margin:    40px auto 0;
}

.newsletter-form .field-group {
  display:        flex;
  flex-direction: column;
  gap:            14px;
}

.newsletter-form input {
  font-family:   var(--ff-body);
  font-size:     1rem;
  padding:       14px 20px;
  border:        1px solid var(--border);
  border-radius: var(--radius);
  background:    var(--cream-white);
  color:         var(--dark-brown);
  outline:       none;
  transition:    var(--ease);
}
.newsletter-form input:focus { border-color: var(--sage); }

.newsletter-form .btn { width: 100%; margin-top: 6px; }

.newsletter-note {
  font-size:  0.82rem;
  color:      var(--sage-dark);
  margin-top: 14px;
  text-align: center;
}


/* ── FAQ ── */
.faq__list {
  max-width:  760px;
  margin:     48px auto 0;
  display:    flex;
  flex-direction: column;
  gap:        12px;
}

.faq__item {
  border:        1px solid var(--border);
  border-radius: var(--radius);
  background:    var(--cream-white);
  overflow:      hidden;
  box-shadow:    0 1px 8px rgba(41 25 9 / 0.04);
}

.faq__question {
  font-family:   var(--ff-body);
  font-size:     1.02rem;
  font-weight:   700;
  color:         var(--dark-brown);
  padding:       18px 48px 18px 20px;
  cursor:        pointer;
  list-style:    none;
  position:      relative;
  line-height:   1.45;
  transition:    background 0.2s ease;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
  content:     "";
  position:    absolute;
  right:       20px;
  top:         50%;
  width:       10px;
  height:      10px;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform:   translateY(-65%) rotate(45deg);
  transition:  transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq__question:hover,
.faq__item[open] .faq__question {
  background: rgba(139 115 85 / 0.06);
}

.faq__answer {
  padding:      0 20px 20px 20px;
  font-size:    1rem;
  color:        var(--mid-brown);
  line-height:  1.85;
  border-top:   1px solid var(--border);
  padding-top:  16px;
  margin-top:   0;
}

.faq__answer p { margin-bottom: 14px; }
.faq__answer p:last-child { margin-bottom: 0; }

.faq__bullets {
  margin:       0 0 14px 0;
  padding-left: 1.35em;
}
.faq__bullets li { margin-bottom: 8px; }
.faq__bullets li:last-child { margin-bottom: 0; }


/* ── Instagram CTA (inside dishes section) ── */
.ig-cta {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             7px;
  margin-bottom:   28px;
  text-decoration: none;
  color:           var(--mid-brown);
  transition:      opacity 0.2s ease;
}

.ig-cta:hover { opacity: 0.65; }

.ig-cta__icon {
  width:       16px;
  height:      16px;
  fill:        var(--mid-brown);
  flex-shrink: 0;
}

.ig-cta__text {
  font-family:  var(--ff-body);
  font-size:    0.8rem;
  color:        var(--mid-brown);
  text-align:   center;
  line-height:  1.4;
  letter-spacing: 0.02em;
}


/* ── Responsive — Homepage ── */
@media (max-width: 768px) {
  .hero { padding: 72px 0 56px; }

  .culinary-journey              { padding: 56px 0; }
  .culinary-journey__grid        { grid-template-columns: 1fr; }
  .culinary-journey__photo       { min-height: 280px; }
  .culinary-journey__text        { padding: 32px 0 0; }

  .services-grid                 { grid-template-columns: 1fr; }
  .services-cards                { grid-template-columns: 1fr; gap: 28px; }
  .service-card__body            { padding: 28px 24px 28px; }
  .course-teaser                 { grid-template-columns: 1fr; }
  .dishes-slider__slide          { flex: 0 0 50%; }
  .products-grid                 { grid-template-columns: repeat(2, 1fr); }
  .faq__list                     { margin-top: 36px; }
  .faq__question                 { padding: 16px 44px 16px 16px; font-size: 0.98rem; }
  .faq__answer                   { padding: 0 16px 16px 16px; padding-top: 14px; }
}

@media (max-width: 480px) {
  .products-grid                 { grid-template-columns: 1fr; }
  .services-cards                { gap: 22px; }
  .service-card__price           { font-size: 1.9rem; }
  .dishes-slider__slide          { flex: 0 0 100%; }
}
