/* ============================================================
   Aamas Kitchen — style.css
   Cleaned contrast-safe version
   ============================================================ */

:root {
  --brand: #9f1d1d;
  --brand-hover: #7f1717;
  --brand-2: #ffedd5;
  --ink: #1d1d1f;
}

body {
  color: var(--ink);
}

.navbar { --bs-navbar-padding-y: .75rem; }
.navbar-brand { letter-spacing: .5px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 2000;
  background: #000;
  color: #fff;
  padding: .75rem 1rem;
  border-radius: .5rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

.btn-brand {
  background-color: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 6px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.btn-brand:hover,
.btn-brand:focus,
.btn-brand:focus-visible {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
  color: #fff;
}

.text-brand { color: var(--brand); }
.bg-tint { background: var(--brand-2); }
.text-maroon { color: #7b1f1f; }

.hero-section {
  position: relative;
}
.hero-static-img {
  height: 65vh;
  object-fit: cover;
  object-position: center 40%;
  width: 100%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1;
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  padding: 1rem;
}
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.56);
  padding: 1.5rem;
  border-radius: 1rem;
  display: inline-block;
  max-width: 900px;
}
.hero-title,
.hero-text,
.hero-text span,
.hero-caption span[lang] {
  color: #ffffff !important;
  background: transparent !important;
  text-shadow: 0 3px 6px rgba(0,0,0,.95);
}
.hero-caption .btn-light {
  background-color: #ffffff;
  color: #1d1d1f;
  border-color: #ffffff;
}
.hero-caption .btn-light:hover,
.hero-caption .btn-light:focus,
.hero-caption .btn-light:focus-visible {
  background-color: #f3f4f6;
  color: #111827;
  border-color: #f3f4f6;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  background: #fff;
  color: #333;
  border: 1px solid rgba(0,0,0,.06);
}

.menu-card img { aspect-ratio: 4/3; object-fit: cover; }

.section-title { font-weight: 800; letter-spacing: .2px; }
.divider {
  height: 4px;
  width: 80px;
  background: var(--brand);
  border-radius: 99px;
  margin: .5rem auto 0;
}

.feature i { font-size: 1.4rem; color: var(--brand); }

.shadow-soft {
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  transition: transform 0.3s ease;
}
.shadow-soft:hover { transform: translateY(-4px); }

.footer a { color: inherit; text-decoration: none; }
.hours li { display: flex; justify-content: space-between; }
.map-embed { min-height: 320px; border: 0; }

.bg-pat {
  background-image:
    radial-gradient(ellipse at top left, rgba(177,30,40,.07), transparent 42%),
    radial-gradient(ellipse at bottom right, rgba(177,30,40,.06), transparent 45%);
}

.partner-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
}

.list-group-item {
  background-color: transparent;
  border: none;
  padding: 12px 0;
  font-weight: 500;
  font-size: 1.05rem;
}

.featurette-divider { margin: 5rem 0; }

hr {
  color: #b11e28;
  border: 0;
  border-top: 1px solid #1d1d1f;
  opacity: .25;
}

.text-muted,
.navbar-brand small,
.blockquote-footer {
  color: #374151 !important;
}

.blockquote,
blockquote {
  color: #1f2937;
}

:focus-visible {
  outline: 3px solid #1B4F8A;
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
  outline: 3px solid #1B4F8A;
  outline-offset: 3px;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-static-img {
    height: 50vh;
  }

  .hero-content {
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .hero-title {
    font-size: 2rem;        /* control large zoom text */
    line-height: 1.2;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-content .btn {
    width: 100%;
    max-width: 260px;
  }
}

.contact-phone {
  color: #0a4a8c !important;
  text-decoration: underline;
  font-weight: 600;
}

.contact-phone:hover,
.contact-phone:focus {
  color: #07345f !important;
}