@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Lora:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@400;500;600;700&family=Crimson+Text:ital@0;1&display=swap');

:root {
  --gold: #a58f60;
  --gold-hover: #e0a240;
  --dark: #222222;
  --body-text: #5f6263;
  --muted: #888888;
  --light-bg: #f7f7f7;
  --border: #e0e0e0;
  --white: #ffffff;
  --footer-bg: #222222;
  --footer-widgets: #333333;
  --max-width: 1140px;
  --header-height: 90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-hover); }

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

/* ── HEADER ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.lang-switch a {
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 3px 8px !important;
  color: var(--gold) !important;
  font-size: 10px;
}

.lang-switch a:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.lang-switch a::after { display: none; }

/* ── MENU ITEM FEATURED ── */
.menu-item--featured .menu-item-name {
  font-weight: 700;
  color: var(--dark);
}

.menu-item--featured .menu-item-price {
  color: var(--gold);
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  background: var(--dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-content .subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: .85;
}

.hero-content h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-logo {
  max-width: 220px;
  margin: 0 auto 24px;
  filter: brightness(1);
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
  max-width: 550px;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  transition: all .3s ease;
}

.btn:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ── SECTION STRUCTURE ── */

section { padding: 100px 0; }

.section-light { background: var(--light-bg); }

.section-dark {
  background: var(--dark);
  color: var(--white);
}

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

.section-header .section-subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: 'Kaushan Script', cursive;
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  letter-spacing: 1px;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.section-dark .section-header p { color: #bbb; }

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ── TYPOGRAPHY ── */

h1 { font-family: 'Kaushan Script', cursive; font-weight: 400; color: var(--dark); }
h2 { font-family: 'Lora', serif; font-weight: 400; font-style: italic; font-size: 36px; color: var(--dark); line-height: 1.4; }
h3 { font-family: 'Lora', serif; font-weight: 400; font-size: 28px; color: var(--dark); line-height: 1.4; }
h4 { font-family: 'Lora', serif; font-weight: 400; font-size: 22px; color: var(--dark); line-height: 1.5; }
h5 { font-family: 'Lora', serif; font-weight: 400; font-size: 18px; color: var(--dark); }
h6 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); }

/* ── GRID ── */

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── CARDS ── */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
  transition: box-shadow .3s, transform .3s;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--dark);
}

.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ── ABOUT SECTION ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-text .subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-text h2 {
  font-family: 'Kaushan Script', cursive;
  font-size: 42px;
  font-style: normal;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
}

/* ── MENU ── */

.menu-category {
  margin-bottom: 60px;
}

.menu-category-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 36px;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}

.menu-category-sub {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  color: var(--muted);
  text-align: center;
  margin-bottom: 36px;
  font-size: 15px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}

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

.menu-item-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dark);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  margin: 0 12px;
  min-width: 30px;
  position: relative;
  top: -4px;
}

.menu-item-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-desc {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}

/* ── VIDEO ── */

.video-section {
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── CTA BANNER ── */

.cta-banner {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('img_imported/brochette-kebab0.webp') center/cover no-repeat fixed;
  text-align: center;
  padding: 100px 24px;
  color: var(--white);
}

.cta-banner h2 {
  font-family: 'Kaushan Script', cursive;
  font-size: 48px;
  color: var(--white);
  font-style: normal;
  margin-bottom: 16px;
}

.cta-banner p {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 18px;
  opacity: .85;
  margin-bottom: 30px;
}

/* ── TESTIMONIAL / QUOTE ── */

.quote-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
}

.quote-block blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 20px;
}

.quote-block cite {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ── FOOTER ── */

.site-footer {
  background: var(--footer-bg);
  color: #aaa;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 80px 0 40px;
}

.footer-col h6 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
}

.footer-col ul { list-style: none; }

.footer-col a {
  color: #aaa;
  transition: color .3s;
}

.footer-col a:hover { color: var(--gold); }

.footer-logo {
  height: 42px;
  margin-bottom: 20px;
  filter: brightness(.9);
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a { color: var(--gold); }

/* ── PILL TAGS ── */

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.pill-list li {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: var(--light-bg);
}

/* ── PAGE HEADER (inner pages) ── */

.page-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  background: var(--light-bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: 'Kaushan Script', cursive;
  font-size: 52px;
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.page-hero .breadcrumb a { color: var(--gold); }

/* ── FAQ ── */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--dark);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 300;
  font-size: 22px;
  color: var(--gold);
}

.faq-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ── CONTACT / RESERVATION ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 20px;
}

.contact-info-item h6 {
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--muted);
}

/* ── INTERNAL LINKS ── */

.local-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-link {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  color: var(--dark);
  text-align: center;
  transition: all .3s;
}

.local-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── BACK TO TOP ── */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover { background: var(--gold-hover); }

/* ── SEO TEXT BLOCK ── */

.seo-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.seo-text h2 {
  font-family: 'Lora', serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.seo-text h3 {
  font-size: 22px;
  margin: 28px 0 12px;
}

.seo-text p {
  margin-bottom: 16px;
}

.seo-text ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.seo-text li {
  margin-bottom: 6px;
}

/* ── FOOD GALLERY ── */

.food-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.food-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}

.food-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.food-gallery-item:hover img {
  transform: scale(1.08);
}

.food-gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  padding: 40px 16px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}

.food-gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── MENU CATEGORY IMAGE ── */

.menu-category-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.menu-category-header.reverse {
  direction: rtl;
}

.menu-category-header.reverse > * {
  direction: ltr;
}

.menu-category-img {
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.menu-category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.menu-category-img:hover img {
  transform: scale(1.05);
}

.menu-category-info {
  text-align: center;
}

/* ── DISH SHOWCASE (single dish highlight) ── */

.dish-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.dish-showcase.reverse { direction: rtl; }
.dish-showcase.reverse > * { direction: ltr; }

.dish-img {
  overflow: hidden;
  border: 1px solid var(--border);
}

.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.dish-img:hover img { transform: scale(1.05); }

.dish-text h3 {
  font-family: 'Lora', serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.dish-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.dish-text .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
}

/* ── RESPONSIVE ── */

@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  .main-nav.open ul {
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
  }
  .main-nav.open a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }
  .main-nav.open a::after { display: none; }
  .mobile-toggle { display: flex; }

  .hero-content h1 { font-size: 44px; }
  .section-header h2 { font-size: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .local-links { grid-template-columns: 1fr 1fr; }
  .food-gallery { grid-template-columns: repeat(2, 1fr); }
  .menu-category-header { grid-template-columns: 1fr; }
  .menu-category-header.reverse { direction: ltr; }
  .dish-showcase { grid-template-columns: 1fr; }
  .dish-showcase.reverse { direction: ltr; }
}

@media (max-width: 600px) {
  :root { --header-height: 70px; }
  section { padding: 60px 0; }
  .hero-content h1 { font-size: 34px; }
  .hero-logo { max-width: 160px; }
  .section-header h2 { font-size: 30px; }
  .menu-category-title { font-size: 28px; }
  .page-hero h1 { font-size: 36px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .local-links { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 34px; }
  .card { padding: 28px; }
}
