@font-face {
  font-family: 'Yekan';
  src: url('assets/fonts/BYekan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #1f9d55;
  --green-dark: #14733d;
  --red: #c8272c;
  --black: #0d0d0d;
  --black-soft: #161616;
  --cream: #f7f4ee;
  --grey: #9a9a9a;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-fa: 'Yekan', Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: #2a2a2a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-head); }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover { background: #a31f23; border-color: #a31f23; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--green);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-outline:hover { background: var(--green); }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('assets/hero-food.jpg') center 30% / cover no-repeat;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-img { height: 48px; width: auto; border-radius: 4px; }
.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: #eee;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--green); }
.header-call { white-space: nowrap; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('assets/hero-food.jpg') center / cover no-repeat, var(--black);
  color: #fff;
  padding-top: 90px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(31,157,85,0.25), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(200,39,44,0.2), transparent 45%),
    linear-gradient(180deg, rgba(8,8,8,0.78) 0%, rgba(8,8,8,0.85) 55%, rgba(8,8,8,0.95) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #d8d8d8;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.scroll-down {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Section generic */
section { padding: 100px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-lead {
  max-width: 620px;
  color: #555;
  margin: 16px auto 0;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about { background: #fff; }
.about-inner { max-width: 800px; text-align: center; margin: 0 auto; }
.about h2 { font-size: 2.2rem; margin-bottom: 22px; }
.about p { color: #555; margin-bottom: 16px; }
.about-highlights {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.highlight { text-align: center; }
.highlight-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--green-dark);
  font-weight: 700;
}
.highlight-label {
  display: block;
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Menu */
.menu { background: var(--black); color: #fff; }
.menu h2 { font-size: 2.4rem; margin-bottom: 8px; color: #fff; }
.menu .section-lead { color: #b8b8b8; }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 44px 0 40px;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #ddd;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.tab-btn:hover { border-color: var(--green); color: #fff; }
.tab-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
}
.menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 16px;
}
.menu-item.highlight-item {
  background: rgba(31,157,85,0.08);
  border: 1px solid rgba(31,157,85,0.3);
  border-bottom: 1px solid rgba(31,157,85,0.3);
  border-radius: 8px;
  padding: 16px;
}
.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.menu-item .fa {
  font-family: var(--font-fa);
  font-size: 0.95rem;
  color: var(--green);
  font-weight: 400;
  margin-left: 8px;
  direction: rtl;
  unicode-bidi: isolate;
}
.menu-item .price {
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
  font-family: var(--font-head);
}
.menu-item p {
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Booking */
.booking { background: var(--cream); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.booking-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.booking-info p { color: #555; margin-bottom: 18px; }
.booking-phone { margin-bottom: 30px; }
.booking-hours {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.booking-hours h4 { margin-bottom: 8px; font-size: 1rem; color: var(--green-dark); }
.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 0.92rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: #333; font-weight: 500; }

.booking-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--green-dark);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: var(--black-soft);
  color: #ccc;
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { height: 42px; margin-bottom: 14px; border-radius: 4px; display: block; }
.footer-col h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col p { margin-bottom: 10px; font-size: 0.92rem; color: #b3b3b3; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive */
@media (max-width: 900px) {
  .booking-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a { padding: 16px 0; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .header-call { display: none; }
  .nav-toggle { display: flex; }
  .form-row { flex-direction: column; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin-left: auto; margin-right: auto; }
  .about-highlights { gap: 30px; }
  section { padding: 70px 0; }
}
