/* ============================================
   FADED — Fade & Co. Barbershop
   Streetwear / Bold Theme
   ============================================ */

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

:root {
  --black: #111111;
  --yellow: #E8FF00;
  --white: #FFFFFF;
  --dark-gray: #1A1A1A;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-accent: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.uppercase {
  text-transform: uppercase;
}

.section-padding {
  padding: 80px 0;
}

.text-yellow {
  color: var(--yellow);
}

.bg-dark-gray {
  background: var(--dark-gray);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--white);
}

h1 { font-size: clamp(3rem, 10vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.accent-text {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--yellow);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: transparent;
  color: var(--yellow);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

/* --- Diagonal Stripe Accent --- */
.stripe-accent {
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(
    45deg,
    var(--yellow),
    var(--yellow) 8px,
    transparent 8px,
    transparent 16px
  );
}

.stripe-accent-thin {
  width: 60px;
  height: 4px;
  background: repeating-linear-gradient(
    45deg,
    var(--yellow),
    var(--yellow) 3px,
    transparent 3px,
    transparent 6px
  );
  margin-bottom: 16px;
}

/* --- Section Header --- */
.section-header {
  margin-bottom: 60px;
}

.section-header .section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--yellow);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  margin-bottom: 16px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: 6px;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  letter-spacing: 3px !important;
  border: 2px solid var(--yellow) !important;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: transparent !important;
  color: var(--yellow) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--yellow);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-gray);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s ease;
    border-left: 4px solid var(--yellow);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
  }

  .nav-overlay.open {
    display: block;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--yellow);
  opacity: 0.03;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--yellow);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--yellow);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--yellow);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SERVICES PREVIEW / FULL
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark-gray);
  border: 3px solid transparent;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--yellow);
  transition: height 0.3s ease;
}

.service-card:hover::before {
  height: 100%;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.service-price {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--yellow);
  font-weight: 700;
}

/* Package Card */
.package-card {
  background: var(--dark-gray);
  border: 4px solid var(--yellow);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.package-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.package-price {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--yellow);
  margin-bottom: 24px;
  display: block;
}

.package-list {
  list-style: none;
  margin-bottom: 32px;
}

.package-list li {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--dark-gray);
  border: 3px solid transparent;
  padding: 40px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.team-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.team-initial {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.team-bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.team-exp {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  display: block;
}

/* ============================================
   TESTIMONIALS / REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--dark-gray);
  border-left: 4px solid var(--yellow);
  padding: 32px;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateX(4px);
}

.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   FIND US / LOCATION
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border: 3px solid var(--yellow);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-block p,
.info-block a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--yellow);
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hours-list .day {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hours-list .closed {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 300px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-gray);
  border-top: 4px solid var(--yellow);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-est {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Stagger children --- */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   PAGE HEADER (non-home pages)
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin: 24px auto 0;
}

.page-header h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.page-header .page-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   GOOGLE REVIEW CTA
   ============================================ */
.google-cta {
  background: var(--dark-gray);
  border: 3px solid var(--yellow);
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

.google-cta h3 {
  margin-bottom: 12px;
}

.google-cta p {
  margin-bottom: 24px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   ACTIVE NAV STATE
   ============================================ */
.nav-links a.active {
  color: var(--yellow);
}

.nav-links a.active::after {
  width: 100%;
}
