/* ============================================
   DRED AFRICAN BARBER SHOP — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── Design Tokens ─────────────────────────── */
:root {
  --clr-bg:         #f5f2ee;
  --clr-bg-alt:     #ede9e3;
  --clr-dark:       #1a1714;
  --clr-dark-2:     #2a2520;
  --clr-dark-3:     #3b342d;
  --clr-accent:     #c47c2b;
  --clr-accent-lt:  #d9953e;
  --clr-accent-pale:#f2e0c5;
  --clr-text:       #3b342d;
  --clr-text-muted: #7a6f65;
  --clr-white:      #ffffff;
  --clr-border:     #ddd5c8;

  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-serif:    'DM Serif Display', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semi:     600;
  --fw-bold:     700;
  --fw-black:    900;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 8px rgba(26,23,20,.08);
  --shadow-md:   0 6px 24px rgba(26,23,20,.12);
  --shadow-lg:   0 16px 48px rgba(26,23,20,.18);

  --transition:  0.3s ease;
  --transition-slow: 0.6s ease;

  --max-w:       1200px;
  --nav-h:       72px;
}


/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility Classes ────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--dark { background: var(--clr-dark); color: var(--clr-white); }
.section--alt  { background: var(--clr-bg-alt); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--clr-dark);
  margin-bottom: 18px;
}
.section--dark .section-title { color: var(--clr-white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: rgba(255,255,255,.65); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: var(--fw-semi);
  font-size: .9rem;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(196,124,43,.35);
}
.btn--primary:hover {
  background: var(--clr-accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,124,43,.4);
}

.btn--outline {
  border: 1.5px solid var(--clr-accent);
  color: var(--clr-accent);
  background: transparent;
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--ghost-white {
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--clr-white);
  background: transparent;
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}

/* ── Star Rating ────────────────────────────── */
.stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--clr-accent);
  font-size: .85rem;
}
.stars span { color: var(--clr-text-muted); font-size: .8rem; margin-left: 4px; }

/* ── Badge ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-accent-pale);
  color: var(--clr-accent);
  font-size: .75rem;
  font-weight: var(--fw-semi);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}

/* ── Divider ────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider--center { margin: 16px auto 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26,23,20,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon {
  width: 32px; height: 32px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--clr-white);
}
.nav__logo-text {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 1.35rem;
  color: var(--clr-white);
  letter-spacing: .02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .875rem;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--clr-white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--clr-white); }
.nav__links a.active::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}


.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  opacity: .85;
  transition: var(--transition);
}
.nav__mobile a:hover { opacity: 1; color: var(--clr-accent); }
.nav__mobile .btn { font-family: var(--ff-body); font-size: 1rem; }
.nav__mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.nav__mobile-close:hover { color: var(--clr-white); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-logo-icon {
  width: 32px; height: 32px;
  background: var(--clr-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--clr-white);
}
.footer__brand-logo-text {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  color: var(--clr-white);
}

.footer__tagline {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__social-link:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: rgba(196,124,43,.1);
}

.footer__col-title {
  font-family: var(--ff-body);
  font-size: .8rem;
  font-weight: var(--fw-semi);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--clr-accent); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  margin-bottom: 14px;
}
.footer__contact-item .icon {
  color: var(--clr-accent);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 14px;
}

.footer__hours-list { display: flex; flex-direction: column; gap: 8px; }
.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer__hours-row .day { color: rgba(255,255,255,.75); }
.footer__hours-row .time.closed { color: #e06b6b; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: rgba(255,255,255,.35); transition: var(--transition); }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.anim-fade-up  { opacity: 0; }
.anim-fade-in  { opacity: 0; }
.anim-scale-in { opacity: 0; }
.animated { animation-fill-mode: both; animation-duration: .7s; animation-timing-function: cubic-bezier(.22,.61,.36,1); }
.anim-fade-up.animated  { animation-name: fadeUp; }
.anim-fade-in.animated  { animation-name: fadeIn; }
.anim-scale-in.animated { animation-name: scaleIn; }

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

/* ============================================
   RESPONSIVE — GLOBAL
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links,
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}
/* ============================================
   PAGE HERO (Shared across subpages)
   ============================================ */
.page-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background: var(--clr-dark);
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 72px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(196,124,43,.14) 0%, transparent 65%),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,.018) 0px,
      rgba(255,255,255,.018) 1px,
      transparent 1px,
      transparent 28px
    );
}

.page-hero__image {
  position: absolute;
  inset: 0;
}
.page-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .22;
  filter: grayscale(40%);
}
.page-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,20,.5) 0%,
    rgba(26,23,20,.85) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.page-hero__breadcrumb a:hover { color: var(--clr-accent); }
.page-hero__breadcrumb .sep { font-size: .65rem; }
.page-hero__breadcrumb .current { color: rgba(255,255,255,.7); }

.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: var(--fw-black);
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__title em {
  font-style: italic;
  color: var(--clr-accent);
}

.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero { min-height: 400px; padding-bottom: 48px; }
}
