/* ── FONTS & RESET ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Casser';
  src: url('fonts/Casser.ttf') format('truetype');
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: #fbf4e2;
  background-image: url('assets/background_pattern.jpg');
  background-size: contain;
  background-repeat: repeat;
  background-attachment: scroll;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

#root { min-height: 100vh; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #fbf4e2; }
::-webkit-scrollbar-thumb { background: #ddd0b0; border-radius: 2px; }

/* ── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,244,226,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd0b0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}

.nav--visible { transform: translateY(0); }

.nav__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #6d2a36;
  color: #fffdf7;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(109,41,54,0.22);
  transition: background 0.2s;
}

.nav__btn:hover { background: #581f2a; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  padding: 48px 24px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 480px;
  margin: 0 auto;
}

.hero__logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero__tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 20px;
  color: #6b4a52;
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 340px;
}

.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #074128;
  text-decoration: none;
  margin-bottom: 32px;
}

.hero__call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #6d2a36;
  color: #fffdf7;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(109,41,54,0.28);
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero__call-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(109,41,54,0.36);
}

.btn-text { text-align: left; }

.hero__call-label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 2px;
}

.hero__call-number {
  font-family: 'Pacifico', cursive;
  font-size: 22px;
  line-height: 1;
}

.hero__menu-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6d2a36;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid #6d2a36;
  transition: background 0.2s;
}

.hero__menu-btn:hover { background: rgba(109,41,54,0.07); }

/* ── FOOD PHOTO ─────────────────────────────────────────────────── */
#eten {
  display: block;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

#eten img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 640px) { #eten { height: 420px; } }

/* ── HALAL BANNER ───────────────────────────────────────────────── */
.halal-banner {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 0;
}

.halal-banner__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.halal-banner__text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: #6b4a52;
  line-height: 1.6;
}

@media (max-width: 400px) {
  .halal-banner { flex-direction: column; text-align: center; }
}

/* ── SECTION DIVIDER ────────────────────────────────────────────── */
.section-divider { margin: 0 0 16px; }

.section-divider__title {
  font-family: 'Casser', serif;
  font-size: 26px;
  font-weight: normal;
  text-transform: uppercase;
  color: #6d2a36;
  margin-bottom: 8px;
}

.section-divider__line {
  height: 1px;
  background: #ddd0b0;
}

/* ── MENU ───────────────────────────────────────────────────────── */
.menu { padding: 20px 0 0; }

.menu__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-section { margin-bottom: 40px; }

.menu-sizes {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding: 0 10px;
  margin-bottom: 4px;
}

.menu-sizes__label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b4a52;
  width: 50px;
  text-align: right;
}

/* ── MENU ITEM ──────────────────────────────────────────────────── */
.menu-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  gap: 10px;
}

.menu-item--even { background: rgba(221,208,176,0.18); }

.menu-item__info {
  flex: 1;
  min-width: 0;
}

.menu-item__name {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #2a1a1e;
  line-height: 1.4;
}

.menu-item__sub {
  display: block;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 12px;
  color: #6b4a52;
}

.menu-item__prices {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  align-items: center;
}

.menu-item__price {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #6d2a36;
  min-width: 50px;
  text-align: right;
}

/* ── MENU & CATERING BLOCK ──────────────────────────────────────── */
.catering-block { margin-bottom: 40px; }

.catering-menus {
  border: 1.5px solid #6d2a36;
  padding: 20px 16px;
  margin-bottom: 20px;
}

.catering-menu-item { margin-bottom: 24px; }
.catering-menu-item:last-child { margin-bottom: 0; }

.catering-menu-name {
  font-family: 'Casser', serif;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #6d2a36;
  margin-bottom: 4px;
}

.catering-menu-desc {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: #2a1a1e;
  line-height: 1.5;
  margin-bottom: 6px;
}

.catering-menu-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.catering-menu-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #6d2a36;
}

.catering-menu-persons {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b4a52;
}

.catering-box {
  background: #6d2a36;
  padding: 20px 16px;
}

.catering-box__title {
  font-family: 'Casser', serif;
  font-size: 26px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fbf4e2;
  margin-bottom: 10px;
}

.catering-box__headline {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fbf4e2;
  margin-bottom: 8px;
  line-height: 1.4;
}

.catering-box__desc {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: rgba(251,244,226,0.85);
  line-height: 1.6;
}

/* ── CALL BANNER ────────────────────────────────────────────────── */
.call-banner {
  background: #074128;
  padding: 48px 24px;
  text-align: center;
  margin-top: 16px;
}

.call-banner__inner {
  max-width: 400px;
  margin: 0 auto;
}

.call-banner__label {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,244,226,0.6);
  margin-bottom: 12px;
}

.call-banner__title {
  font-family: 'Casser', serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fbf4e2;
  margin-bottom: 8px;
  line-height: 1.2;
}

.call-banner__text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(251,244,226,0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}

.call-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fbf4e2;
  color: #6d2a36;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.call-banner__btn:hover { transform: scale(1.03); }

.call-banner__btn-label {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b4a52;
  margin-bottom: 2px;
}

.call-banner__btn-number {
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  color: #6d2a36;
  line-height: 1;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: #2a1a1e;
  padding: 40px 24px 32px;
  text-align: center;
}

.footer__inner {
  max-width: 400px;
  margin: 0 auto;
}

.footer__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ddd0b0;
  margin-bottom: 20px;
}

.footer__divider {
  height: 1px;
  background: rgba(221,208,176,0.2);
  margin-bottom: 20px;
}

.footer__divider--spaced { margin: 16px 0; }

.footer__contact {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: rgba(251,244,226,0.6);
  line-height: 1.8;
}

.footer__contact a {
  color: rgba(251,244,226,0.6);
  text-decoration: none;
}

.footer__phone {
  color: #ddd0b0;
  text-decoration: none;
}

.footer__hours { text-align: left; }

.footer__hours-title {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ddd0b0;
  margin-bottom: 10px;
}

.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Lora', serif;
  font-size: 13px;
  color: rgba(251,244,226,0.6);
  line-height: 1.9;
}

.footer__hours-row--closed { color: rgba(251,244,226,0.35); }

.footer__hours-time {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #ddd0b0;
}

.footer__hours-time--closed { color: rgba(251,244,226,0.35); }

.footer__copyright {
  margin-top: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  color: rgba(251,244,226,0.3);
  letter-spacing: 0.08em;
}
