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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f0ea;
  color: #2b2118;
  line-height: 1.6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header */
header {
  background: #201713;
  color: #fdf8f3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-block img {
  height: 70px;
  width: auto;
  border-radius: 16px;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-subtitle {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Language Switch & Nav */
.top-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch a {
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0.7;
}

.lang-switch a.active,
.lang-switch a:hover {
  opacity: 1;
  background: rgba(255,255,255,0.12);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
  font-size: 0.9rem;
}

nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover,
nav a.active {
  background: #f4c16c;
  color: #2b2118;
}

/* Hero */
.hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #a0743b;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.tag-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #c39b6e;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-primary,
.btn-outline {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f2c47c, #c88a3d);
  color: #2b2118;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.btn-outline {
  background: transparent;
  color: #2b2118;
  border: 1px solid #c39b6e;
}

.hero-card {
  background: radial-gradient(circle at top, #3a2a20 0, #1a120f 55%, #120c09 100%);
  color: #fdf8f3;
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.hero-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f4c16c;
  margin-bottom: 0.5rem;
}

.hero-highlight {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}

.hero-list {
  list-style: none;
  font-size: 0.9rem;
}

.hero-list li {
  margin-bottom: 0.4rem;
}

/* Sections */
.section {
  padding: 2rem 0;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0743b;
  margin-bottom: 0.4rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section p.lead {
  font-size: 0.95rem;
  max-width: 36rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.card {
  background: #fdf8f3;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
}

/* Menu items */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.7rem;
  border-bottom: 1px dotted rgba(0,0,0,0.12);
  padding-bottom: 0.4rem;
}

.menu-item-name {
  font-weight: 600;
}

.menu-item-meta {
  font-size: 0.8rem;
  color: #6f5a46;
}

.menu-item-price {
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.8rem;
}

.contact-card {
  background: #fdf8f3;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-size: 0.9rem;
}

.contact-row {
  margin-bottom: 0.6rem;
}

.contact-label {
  font-weight: 600;
  display: block;
}

/* Footer */
footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1.2rem 0 1.6rem;
  font-size: 0.8rem;
  text-align: center;
  color: #6f5a46;
}

/* Arabic overrides */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .top-right {
  flex-direction: row-reverse;
}

html[dir="rtl"] nav ul {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  nav ul {
    flex-wrap: wrap;
  }
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 2rem;
  }
}
