:root {
  --bg: #fff8f2;
  --bg-soft: #ffe9d6;
  --text: #1f1f1f;
  --muted: #6b6b6b;
  --primary: #f47a20;
  --primary-deep: #d95f09;
  --card: #ffffff;
  --border: #ffd4b2;
  --radius: 18px;
  --shadow: 0 14px 30px rgba(244, 122, 32, 0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Tajawal", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff1e3 0%, #fff8f2 45%, #fffdfb 100%);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
label,
input,
textarea,
select {
  color: var(--text);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 242, 0.9);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 75px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.brand-text {
  white-space: nowrap;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(244, 122, 32, 0.15);
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  padding: 0.4rem 0.1rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--primary);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: white;
  border-radius: 10px;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  align-items: stretch;
}

.hero .container {
  width: 100%;
  max-width: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #ffd3ac;
  background: linear-gradient(120deg, rgba(255, 219, 185, 0.88), rgba(255, 191, 132, 0.86)),
    url("/static/img/hero-bg.jpg") center/cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  color: var(--text);
  width: 100%;
  max-width: none;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 248, 242, 0.88), rgba(255, 234, 214, 0.82)),
    url("/static/img/hero-card.jpg") center/cover;
  box-shadow: 0 18px 40px rgba(73, 32, 0, 0.18);
  backdrop-filter: blur(6px);
  animation: rise 0.8s ease-out;
}

.hero-inner {
  width: min(1120px, 92%);
  margin-inline: auto;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(2rem, 5vw, 4.5rem);
}

.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  color: #552100;
  background: rgba(255, 255, 255, 0.65);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  text-align: start;
  box-shadow: 0 8px 18px rgba(73, 32, 0, 0.08);
}

.hero-location-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
}

.hero p {
  color: #2b2b2b;
  font-size: 1.1rem;
  max-width: 750px;
  line-height: 1.7;
}

.hero h1 {
  color: #1b1b1b;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow);
}

.btn-ghost {
  color: #4a1d00;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 57, 2, 0.45);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, #fff 0%, #fff5eb 100%);
}

.kicker {
  color: var(--primary-deep);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  margin: 0 0 1rem;
}

.two-col {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 1fr;
}

.center-y {
  align-items: center;
}

.panel {
  background: var(--card);
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.clean-list {
  margin: 0;
  padding-right: 1.2rem;
  line-height: 2;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  min-height: 100px;
  display: grid;
  align-content: center;
  text-align: center;
  font-weight: 700;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-preview-box p {
  margin: 0.7rem 0;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed var(--border);
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form label {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
  flex-wrap: wrap;
}

.form label input,
.form label select,
.form label textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
}

.required-mark {
  color: #d11f1f;
  font-weight: 800;
  margin-inline-start: 0.25rem;
  display: inline;
}

input, textarea, select {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #ffc08f;
  border-color: var(--primary);
}

.alert {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
}

.alert.success {
  background: #ecfdf3;
  color: #0d7a43;
}

.alert.error {
  background: #fff1f0;
  color: #b3271e;
}

.menu-page .menu-hero {
  background: linear-gradient(135deg, #fff4ea, #ffe6ce);
  color: var(--text);
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--border);
}

.menu-item-copy {
  display: grid;
  gap: 0.2rem;
}

.menu-item-name {
  font-weight: 700;
}

.menu-item-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.site-footer {
  background: linear-gradient(180deg, #101010 0%, #1b1b1b 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.8rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 95px;
  height: 65px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a {
  color: #ffffff;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.84);
}

.footer-link,
.contact-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
}

.footer-link {
  color: #ffb36a;
  font-weight: 700;
}

.footer-link:hover {
  color: #ffd7af;
}

.contact-directions {
  color: #4a1d00;
  background: rgba(244, 122, 32, 0.12);
  border: 1px solid rgba(244, 122, 32, 0.35);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1000px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .menu-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    min-height: 90vh;
    border-radius: 0;
  }

  .hero-location {
    font-size: 0.92rem;
    padding: 0.5rem 0.8rem;
  }

  .hero-inner {
    min-height: 90vh;
    width: min(92%, 1120px);
    padding-block: clamp(1.5rem, 6vw, 3rem);
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 60px;
    height: 40px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 80px;
    height: 55px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 4%;
    width: min(280px, 92vw);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .section {
    padding: 4rem 0;
  }
}
