:root {
  color-scheme: dark;
  color: #1a1a1a;
  background: #f7f3ef;
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  direction: rtl;
  background: radial-gradient(circle at top, #fdf0e3 0%, #f8ece3 40%, #efe1d7 100%);
}

.container {
  text-align: right;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 2rem 0 1rem;
  background: linear-gradient(135deg, #7f1d1d 0%, #b1311f 100%);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.header-inner {
  display: grid;
  gap: 1rem;
  align-items: flex-start;
}

.site-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: .95rem;
  background: rgba(255,255,255,.08);
}

.eyebrow {
  margin: 0 0 .5rem;
  font-size: .95rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .12em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.subtitle {
  margin: .8rem 0 0;
  max-width: 620px;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-image {
  width: 64px;
  height: 64px;
}

.hero-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  text-align: center;
  font-weight: 700;
}

.hero-banner {
  padding: 2rem 0 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.4) 65%);
}

.hero-inner {
  display: grid;
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: right;
}

.hero-photo {
  min-height: 280px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.05)), url('assets/restaurant-photo.svg') center/cover no-repeat;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .06);
}

.hero-label {
  margin: 0;
  font-size: .95rem;
  font-weight: 700;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero-banner h2 {
  margin: .5rem 0 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #2b0f0f;
}

.hero-text {
  margin: 0;
  max-width: 760px;
  color: #3a1919;
}

.info-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.8rem;
}

.info-card {
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f1e6dd;
  box-shadow: 0 16px 35px rgba(31, 41, 55, .06);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: .75rem;
  font-size: 1rem;
  color: #7f1d1d;
}

.info-card p {
  margin: 0;
  color: #31201d;
}

.intro-card,
.menu-section {
  margin: 2rem 0;
}

.intro-card {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 41, 55, .08);
}

.notes-card {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 41, 55, .07);
  margin-top: 1rem;
}

.notes-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #7f1d1d;
}

.notes-card p {
  margin: 0.75rem 0 0;
  color: #4d2922;
}

.intro-card h2,
.menu-section h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #3a0b0b;
}

.location {
  margin-top: 1rem;
  font-weight: 600;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e7d8ce;
  box-shadow: 0 12px 30px rgba(31, 41, 55, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(31, 41, 55, .12);
}

.menu-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #881b1b;
}

.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid #f1e6dd;
}

.menu-card li:last-child {
  border-bottom: none;
}

.menu-card span:first-child {
  font-weight: 600;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: #4a2927;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .header-inner {
    grid-template-columns: 1.3fr .7fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
