/* Elzein Bakery — site styles */
:root {
  --cream: #FBF7EF;
  --paper: #FFFFFF;
  --ink: #241D15;
  --ink-soft: #5C5347;
  --gold: #B4881B;
  --gold-dark: #8F6A12;
  --gold-pale: #F3E7C9;
  --green: #4F5D2F;
  --line: #E8DFCE;
  --radius: 14px;
  --shadow: 0 2px 10px rgba(36, 29, 21, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
}

h1, h2, h3, .brand {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  line-height: 1.2;
  color: var(--ink);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); }
a:hover { color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 0.7rem; padding-bottom: 0.7rem; flex-wrap: wrap;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-name { font-size: 1.45rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.03em; }
.brand .brand-sub { font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  padding: 0.45rem 0.7rem; border-radius: 8px;
}
.site-nav a:hover { background: var(--gold-pale); }
.site-nav a[aria-current="page"] { color: var(--ink); background: var(--gold-pale); }
.site-nav .nav-call {
  background: var(--green); color: #fff; margin-left: 0.35rem;
}
.site-nav .nav-call:hover { background: #3E4A25; color: #fff; }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(180, 136, 27, 0.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(79, 93, 47, 0.12), transparent 40%),
    linear-gradient(175deg, #FFFDF7 0%, var(--cream) 70%);
  border-bottom: 1px solid var(--line);
  padding: 3.2rem 0 2.6rem;
  text-align: center;
}
.hero h1 { font-size: clamp(1.85rem, 4.5vw, 2.9rem); max-width: 21ch; margin: 0 auto 0.9rem; }
.hero .tagline-ar { font-size: 1.15rem; color: var(--gold-dark); margin-bottom: 0.4rem; }
.hero p.lede { max-width: 58ch; margin: 0 auto 1.5rem; color: var(--ink-soft); font-size: 1.125rem; }
.cta-row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 0.8rem 1.5rem; border-radius: 10px; font-size: 1.05rem;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: #3E4A25; color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border: 2px solid var(--gold); }
.btn-secondary:hover { background: var(--gold-pale); color: var(--ink); }

.badges {
  display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.6rem; list-style: none;
}
.badges li {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.95rem; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.badges li strong { color: var(--gold-dark); }

/* Sections */
section { padding: 2.8rem 0; }
section.alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.section-intro { color: var(--ink-soft); max-width: 62ch; margin-bottom: 1.6rem; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.3rem 1.2rem; box-shadow: var(--shadow);
}
section.alt .card { background: var(--cream); }
.card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.card .price { color: var(--gold-dark); font-weight: 800; font-size: 1.05rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin-top: 0.3rem; }

/* Menu lists */
.menu-section { margin-bottom: 2.2rem; }
.menu-section h2 { font-size: 1.55rem; border-bottom: 2px solid var(--gold); padding-bottom: 0.4rem; margin-bottom: 0.4rem; }
.menu-section .menu-note { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.9rem; }
.menu-list { list-style: none; }
.menu-list li {
  display: grid; grid-template-columns: 1fr auto; column-gap: 1rem; align-items: baseline;
  padding: 0.6rem 0; border-bottom: 1px dashed var(--line);
}
.menu-list .item-name { font-weight: 700; }
.menu-list .item-desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: 0.95rem; }
.menu-list .item-price { font-weight: 800; color: var(--gold-dark); white-space: nowrap; }

/* Info rows (hours / location) */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 0.45rem 0.2rem; border-bottom: 1px dashed var(--line); }
.hours-table th { font-weight: 600; color: var(--ink-soft); }
.hours-table td { font-weight: 700; text-align: right; }

/* FAQ */
.faq-item { margin-bottom: 1.4rem; max-width: 72ch; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.faq-item p { color: var(--ink-soft); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--gold-pale); }
.gallery img { width: 100%; height: 220px; object-fit: cover; }
.gallery figcaption { font-size: 0.88rem; color: var(--ink-soft); padding: 0.5rem 0.8rem; background: var(--paper); }

/* Ordering buttons */
.order-links { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.9rem; color: var(--ink-soft); padding-top: 1.2rem; }
.breadcrumbs ol { list-style: none; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; color: var(--gold); }

/* Page header for subpages */
.page-head { padding: 1.2rem 0 0.4rem; }
.page-head h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
.page-head .lede { color: var(--ink-soft); max-width: 64ch; font-size: 1.1rem; }

/* Map */
.map-frame { width: 100%; height: 340px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Footer */
.site-footer {
  background: var(--ink); color: #E9E2D5; margin-top: 2rem;
  padding: 2.4rem 0 5.5rem; font-size: 0.95rem;
}
.site-footer a { color: var(--gold-pale); }
.site-footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.site-footer h2 { color: #fff; font-size: 1.05rem; margin-bottom: 0.6rem; font-family: inherit; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer .legal { margin-top: 1.8rem; padding-top: 1rem; border-top: 1px solid rgba(233, 226, 213, 0.2); color: #B8AE9D; font-size: 0.85rem; }

/* Mobile call bar */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none; background: var(--green); text-align: center;
  padding: 0.85rem 1rem; box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}
.call-bar a { color: #fff; text-decoration: none; font-weight: 800; font-size: 1.05rem; }

@media (max-width: 720px) {
  .call-bar { display: block; }
  .site-header .wrap { justify-content: center; text-align: center; }
  .hero { padding: 2.4rem 0 2rem; }
}

@media print {
  .site-header, .call-bar, .site-footer, .cta-row { display: none; }
}
