/* =============================================================
   Greek Specialties — reusable page styles
   Matches the Sirtaki specials identity (style-new-specials.css):
   near-black ground, #1a1814 alt panels, gold #cda45e,
   Playfair Display headings, Poppins labels.
   Used by /specials/greek/*.html
   ============================================================= */

:root {
  --gk-ground: #0c0b09;
  --gk-panel: #1a1814;
  --gk-panel-2: #14110d;
  --gk-gold: #cda45e;
  --gk-gold-soft: rgba(205, 164, 94, .3);
  --gk-line: rgba(255, 255, 255, .08);
  --gk-text: #e9e4da;
  --gk-muted: #a79f92;
}

/* ---------- section rhythm ---------- */
.greek-special-section {
  padding: 80px 0;
  background: var(--gk-ground);
  color: var(--gk-text);
}
.greek-special-section.greek-special-dark {
  background: var(--gk-panel);
}
@media (max-width: 768px) {
  .greek-special-section { padding: 54px 0; }
}

.greek-special-section p { color: var(--gk-muted); }
.greek-special-section .lead {
  font-size: 1.05rem;
  color: var(--gk-text);
  font-weight: 400;
  line-height: 1.7;
}
.greek-special-section h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 14px;
}

/* ---------- HERO ---------- */
.greek-special-hero {
  position: relative;
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  margin-top: 90px;            /* clear the fixed header */
}
.greek-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 8, 6, .92) 0%, rgba(9, 8, 6, .68) 55%, rgba(9, 8, 6, .35) 100%);
}
.greek-special-hero .container { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 40px; }

.greek-hero-kicker {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gk-gold);
  margin-bottom: 14px;
}
.greek-special-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 10px;
}
.greek-special-hero h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: var(--gk-gold);
  margin: 0 0 20px;
}
.greek-hero-text {
  max-width: 46ch;
  color: #d7d1c6 !important;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 26px;
}
.greek-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--gk-text);
}
.greek-hero-facts span { display: inline-flex; align-items: center; gap: 8px; }
.greek-hero-facts i { color: var(--gk-gold); font-size: 1.05em; }

.greek-hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* outline button — the site's book-a-table-btn is the solid one */
.greek-outline-btn {
  display: inline-block;
  padding: 9px 26px;
  border: 2px solid var(--gk-gold);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .3s;
}
.greek-outline-btn:hover { background: var(--gk-gold); color: #1a1814; }

/* breadcrumbs sit right under a full-bleed hero, so kill the header offset */
.breadcrumbs.greek-breadcrumbs { margin-top: 0; }

/* ---------- framed / rounded images ---------- */
.greek-image-frame { position: relative; }
.greek-image-frame img {
  width: 100%;
  border: 4px solid rgba(255, 255, 255, .12);
  display: block;
}
.greek-image-frame::before {
  content: "";
  position: absolute;
  left: -14px; top: -14px;
  width: 64px; height: 64px;
  border-left: 4px solid var(--gk-gold);
  border-top: 4px solid var(--gk-gold);
}
.greek-image-frame::after {
  content: "";
  position: absolute;
  right: -14px; bottom: -14px;
  width: 64px; height: 64px;
  border-right: 4px solid var(--gk-gold);
  border-bottom: 4px solid var(--gk-gold);
}
.greek-rounded-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--gk-line);
  display: block;
}

/* ---------- feature boxes (mirrors .why-us .box) ---------- */
.greek-feature-box {
  height: 100%;
  background: var(--gk-panel-2);
  border: 1px solid var(--gk-line);
  border-radius: 10px;
  padding: 34px 28px;
  transition: transform .25s ease, border-color .25s ease;
}
.greek-feature-box:hover { transform: translateY(-4px); border-color: var(--gk-gold-soft); }
.greek-feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gk-gold-soft);
  border-radius: 50%;
  color: var(--gk-gold);
  font-size: 22px;
  margin-bottom: 18px;
}
.greek-feature-box h3 { font-size: 1.25rem; margin-bottom: 10px; }
.greek-feature-box p { margin: 0; font-size: .95rem; line-height: 1.65; }

/* ---------- dish checklist ---------- */
.greek-dish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 26px;
  margin: 22px 0;
}
.greek-dish-grid > div {
  display: flex; align-items: center; gap: 10px;
  color: var(--gk-text);
  font-size: .98rem;
}
.greek-dish-grid i { color: var(--gk-gold); flex-shrink: 0; }
@media (max-width: 575px) { .greek-dish-grid { grid-template-columns: 1fr; } }

.greek-note {
  border-left: 3px solid var(--gk-gold);
  background: rgba(205, 164, 94, .07);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  color: var(--gk-text) !important;
  font-size: .95rem;
}
.greek-note strong { color: var(--gk-gold); }

/* ---------- video ---------- */
.greek-video-section { background: var(--gk-panel); }
.greek-video-card {
  border: 1px solid var(--gk-line);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.greek-video-caption {
  text-align: center;
  margin-top: 18px;
  font-size: .9rem;
  color: var(--gk-muted) !important;
}

/* ---------- review ---------- */
.greek-review-card {
  background: var(--gk-panel-2);
  border: 1px solid var(--gk-line);
  border-radius: 12px;
  padding: 34px 32px;
  text-align: center;
}
.greek-stars { color: var(--gk-gold); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.greek-review-card blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 16px;
}
.greek-review-source {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gk-muted);
}

/* ---------- how to order — numbered steps (a real sequence) ---------- */
.greek-order-section { background: var(--gk-panel); }
.greek-step {
  height: 100%;
  padding: 26px 22px;
  border-top: 2px solid var(--gk-gold-soft);
  background: var(--gk-panel-2);
}
.greek-step > span {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gk-gold);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.greek-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.greek-step p { margin: 0; font-size: .92rem; }

.greek-important-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 34px auto 0;
  max-width: 760px;
  padding: 16px 20px;
  background: rgba(205, 164, 94, .08);
  border: 1px solid var(--gk-gold-soft);
  border-radius: 10px;
}
.greek-important-notice i { color: var(--gk-gold); font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.greek-important-notice div { color: var(--gk-text); font-size: .95rem; line-height: 1.6; }
.greek-important-notice strong { color: #fff; }

.greek-price {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gk-gold);
  margin-bottom: 16px;
}
.greek-price span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gk-muted);
}

/* ---------- FAQ accordion (dark) ---------- */
.greek-faq { --bs-accordion-border-color: var(--gk-line); }
.greek-faq .accordion-item {
  background: var(--gk-panel-2);
  border: 1px solid var(--gk-line);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.greek-faq .accordion-button {
  background: var(--gk-panel-2);
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: none;
  padding: 16px 18px;
}
.greek-faq .accordion-button:not(.collapsed) {
  background: rgba(205, 164, 94, .1);
  color: var(--gk-gold);
}
.greek-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cda45e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.greek-faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(205, 164, 94, .18); }
.greek-faq .accordion-body {
  background: var(--gk-panel-2);
  color: var(--gk-muted);
  border-top: 1px solid var(--gk-line);
  padding: 16px 18px;
  line-height: 1.7;
}
.greek-faq .accordion-body strong { color: var(--gk-gold); }

/* ---------- related specialties ---------- */
.greek-related-section {
  padding: 80px 0;
  background: var(--gk-panel);
}
@media (max-width: 768px) { .greek-related-section { padding: 54px 0; } }
.greek-related-card {
  display: block;
  height: 100%;
  padding: 0 26px 24px;
  background: var(--gk-ground);
  border: 1px solid var(--gk-line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.greek-related-card:hover { transform: translateY(-4px); border-color: var(--gk-gold); }
.greek-related-card img {
  width: calc(100% + 52px);
  margin: 0 -26px 22px;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(.9);
  transition: filter .25s ease, transform .25s ease;
}
.greek-related-card:hover img { filter: brightness(1); transform: scale(1.03); }
.greek-related-card > span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gk-muted);
}
.greek-related-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #fff;
  margin: 8px 0 10px;
}
.greek-related-card p { color: var(--gk-muted); font-size: .92rem; line-height: 1.6; margin: 0 0 14px; }
.greek-related-card strong { display: block; color: var(--gk-gold); font-weight: 600; font-size: .9rem; margin: 0; }
.greek-related-card strong i { transition: transform .2s ease; }
.greek-related-card:hover strong i { transform: translateX(4px); }
