/* ═══════════════════════════════════════════════
   Coffee London — Shared Stylesheet
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:       #3d2b1f;
  --navy-dark:  #2d1b0e;
  --navy-mid:   #5c3d2e;
  --gold:       #C8972B;
  --gold-light: #e8b84b;
  --gold-pale:  #f5e8cc;
  --cream:      #faf7f2;
  --warm-white: #ffffff;
  --text:       #2d1b0e;
  --text-muted: #7a6654;
  --border:     #e8e0d5;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5 { letter-spacing: -0.01em; }
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }
img { max-width: 100%; }
a { transition: color 0.2s; }

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 0.9rem 0;
  z-index: 1050;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(45,27,14,0.12);
  padding: 0.5rem 0;
}
#navbar.scrolled .nav-link { color: var(--navy-dark) !important; }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active-page { color: var(--gold) !important; }
#navbar.scrolled .navbar-logo { filter: none !important; }
/* Inner pages always dark */
#navbar.always-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%) !important;
  box-shadow: 0 4px 24px rgba(45,27,14,0.22) !important;
  padding: 0.6rem 0;
}

.navbar-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1); /* white on dark bg */
  transition: height 0.3s;
}
#navbar.scrolled .navbar-logo { height: 42px; }
#navbar.always-dark .navbar-logo { height: 42px; }

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem !important;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-link:hover::after,
.nav-link.active-page::after { transform: scaleX(1); }
.nav-link:hover,
.nav-link.active-page { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: 50px !important;
  padding: 0.4rem 1.3rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(200,151,43,0.35) !important;
}
.nav-cta::after { display: none !important; }

.navbar-toggler { border-color: rgba(255,255,255,0.35); padding: 0.3rem 0.6rem; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ════════════════════════════════════════════════
   INNER PAGE HERO
   ════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1600&q=75') center/cover no-repeat;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,27,14,0.88) 0%, rgba(61,43,31,0.78) 60%, rgba(92,61,46,0.65) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.7rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.7rem);
  color: #fff;
  margin-bottom: 0.8rem;
}
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb-custom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom i { font-size: 0.55rem; }

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn-gold {
  background: linear-gradient(135deg, #d4a033 0%, var(--gold) 50%, #b8821f 100%);
  color: var(--navy-dark);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(200,151,43,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 150%; }
.btn-gold:hover {
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,151,43,0.48), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-navy {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 50%, var(--navy-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(45,27,14,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-navy:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,27,14,0.38), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ════════════════════════════════════════════════
   SECTION COMMON
   ════════════════════════════════════════════════ */
section { padding: 5.5rem 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-title em { color: var(--gold); font-style: italic; }
.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #b8821f);
  border-radius: 2px;
  margin: 1.1rem 0 1.6rem;
  box-shadow: 0 2px 8px rgba(200,151,43,0.4);
}
.divider.center { margin-left: auto; margin-right: auto; }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

/* ════════════════════════════════════════════════
   CARDS
   ════════════════════════════════════════════════ */
.cl-card {
  background: linear-gradient(160deg, #ffffff 0%, #fefcf8 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45,27,14,0.06), 0 8px 28px rgba(45,27,14,0.08);
  border: 1px solid rgba(232,224,213,0.7);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.cl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(45,27,14,0.08), 0 18px 48px rgba(45,27,14,0.14);
}
.cl-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.cl-card-body { padding: 1.5rem; }
.cl-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.cl-card-body h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}
.cl-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════════════
   FEATURES STRIP
   ════════════════════════════════════════════════ */
.features-strip {
  background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.feature-item { text-align: center; padding: 1.5rem; }
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #fdf3d8, var(--gold-pale));
  border: 1px solid rgba(200,151,43,0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(200,151,43,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
}
.feature-icon i { color: var(--gold); font-size: 1.4rem; text-shadow: 0 1px 4px rgba(200,151,43,0.3); }
.feature-item h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy-dark);
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}
.feature-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ════════════════════════════════════════════════
   ORDER ONLINE / DELIVERY
   ════════════════════════════════════════════════ */
.delivery-card {
  background: linear-gradient(160deg, #ffffff 0%, #fefcf9 100%);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(45,27,14,0.06), 0 6px 22px rgba(45,27,14,0.06);
}
.delivery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(45,27,14,0.1), 0 24px 60px rgba(45,27,14,0.14);
  border-color: transparent;
}
.delivery-logo-wrap {
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.9rem;
}
.delivery-eta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.delivery-card h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy-dark);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.delivery-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.78;
  flex: 1;
  margin-bottom: 1.8rem;
}
.btn-delivery {
  display: inline-block;
  padding: 0.72rem 1.9rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
/* Uber Eats */
.ubereats .delivery-logo-wrap { background: #000; color: #06C167; }
.ubereats .btn-delivery { background: #000; color: #fff; }
.ubereats .btn-delivery:hover { background: #222; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
/* Deliveroo */
.deliveroo .delivery-logo-wrap { background: #00CCBC; color: #fff; }
.deliveroo .btn-delivery { background: #00CCBC; color: #fff; }
.deliveroo .btn-delivery:hover { background: #00b3a4; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,204,188,0.3); }
/* Just Eat */
.justeat .delivery-logo-wrap { background: #FF8000; color: #fff; }
.justeat .btn-delivery { background: #FF8000; color: #fff; }
.justeat .btn-delivery:hover { background: #e67300; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,128,0,0.3); }

/* ════════════════════════════════════════════════
   CALL STRIP
   ════════════════════════════════════════════════ */
.call-strip {
  background: linear-gradient(135deg, var(--gold) 0%, #a97520 100%);
  padding: 3.2rem 0;
}
.call-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy-dark);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.call-strip p { color: rgba(45,27,14,0.72); font-size: 0.98rem; margin: 0; }
.btn-navy-solid {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(45,27,14,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-navy-solid:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45,27,14,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* ════════════════════════════════════════════════
   HALAL BADGE
   ════════════════════════════════════════════════ */
.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #fdf3d8, var(--gold-pale));
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(200,151,43,0.2), inset 0 1px 0 rgba(255,255,255,0.7);
}
.halal-badge i { color: var(--gold); text-shadow: 0 1px 4px rgba(200,151,43,0.35); }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, #f5f0e8 0%, #ede5d8 100%);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  filter: none;
  margin-bottom: 1rem;
}
footer .tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.78;
  max-width: 280px;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.footer-divider { border-color: var(--border); margin: 2.5rem 0 1.5rem; }
.footer-bottom {
  color: #aaa;
  font-size: 0.76rem;
  text-align: center;
}

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════ */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-cream  { background: var(--cream) !important; }
.bg-navy   { background: var(--navy-dark) !important; }
.bg-white-soft { background: #fff !important; }
