/* ============================================
   ONE FOR ALL BARBERSHOP — B&W THEME
   Modern monochrome. Only color accent: barber pole.
============================================ */

:root {
  --ink: #0a0a0a;
  --bone: #fafafa;
  --paper: #f0f0f0;
  --soft: #2a2a2a;
  --mid: #6a6a6a;
  --line: #1a1a1a;
  /* barber pole keeps its color — the only chromatic accent */
  --pole-red: #d62828;
  --pole-blue: #1e6fd9;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: none;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-decoration: none;
}

/* Barber pole — photo, transparent background, only chromatic accent */
.nav-pole {
  width: 44px;
  height: 110px;
  background-image: url('images/barber-pole.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin: -30px 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: all 0.3s;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--bone);
  color: var(--ink);
}

/* Hamburger button */
.nav-hamburger {
  background: transparent;
  border: 1.5px solid var(--ink);
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 110;
}

.nav-hamburger:hover { background: var(--ink); }
.nav-hamburger:hover .nav-hamburger-line { background: var(--bone); }

.nav-hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
  transform-origin: center;
}

.nav-hamburger.open { background: var(--ink); }
.nav-hamburger.open .nav-hamburger-line { background: var(--bone); }
.nav-hamburger.open .nav-hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .nav-hamburger-line:nth-child(2) { opacity: 0; }
.nav-hamburger.open .nav-hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============== MARQUEE STRIP ============== */
.marquee-strip {
  position: relative;
  margin-top: 88px; /* pushes below the fixed nav */
  left: 0;
  right: 0;
  z-index: 99;
  height: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(250, 250, 250, 0.9);
  border-bottom: none;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-scroll 36s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-item img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  flex-shrink: 0;
}

.marquee-dot { display: none; }

@media (max-width: 768px) {
  .marquee-strip { margin-top: 72px; height: 70px; }
  .marquee-item img { height: 54px; }
  .marquee-item { padding: 0 28px; }
}
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(440px, 90vw);
  background: var(--ink);
  color: var(--bone);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 120px 60px 60px;
  overflow-y: auto;
}

.menu-panel.open {
  transform: translateX(0);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
}

.menu-panel-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.4);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-panel-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(250, 250, 250, 0.4);
}

.menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.menu-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: 0.02em;
  color: var(--bone);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
  transition: padding 0.35s ease;
  position: relative;
}

.menu-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--bone);
  transition: width 0.4s ease;
}
.menu-links a:hover::before, .menu-links a.active::before { width: 100%; }
.menu-links a:hover { padding-left: 16px; }

.menu-links a .arrow {
  font-size: 24px;
  opacity: 0.4;
  transition: all 0.3s;
}
.menu-links a:hover .arrow {
  opacity: 1;
  transform: translateX(8px);
}

.menu-info {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 250, 250, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-info-block .label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.4);
}

.menu-info-block .value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.menu-info-block a { color: inherit; text-decoration: none; transition: opacity 0.3s; }
.menu-info-block a:hover { opacity: 0.7; }

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-cta { padding: 10px 16px; font-size: 11px; }
  .menu-panel { padding: 100px 32px 40px; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 48px 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--bone) 0%, var(--bone) 33%,
    #ffffff 33%, #ffffff 66%,
    var(--bone) 66%, var(--bone) 100%
  );
}

.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 20px;
}

.footer-col h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.75);
  text-decoration: none;
  display: block;
}

.footer-col a:hover { color: var(--bone); text-decoration: underline; }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(250, 250, 250, 0.15);
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
}

@media (max-width: 768px) {
  .footer { padding: 60px 24px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ============== UTILITIES ============== */
.barber-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pole-red) 0 12px,
    #ffffff 12px 24px,
    var(--pole-blue) 24px 36px,
    #ffffff 36px 48px
  );
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1.5px;
  background: var(--ink);
}
