.barber-nav-section {
  --red: #c8102e;
  --blue: #003087;
  --black: #0a0a0a;
  --white: #fafafa;
  --grey: #6b6b6b;
  --light-grey: #f0f0f0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

.barber-nav-section .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.barber-nav-section .nav.scrolled {
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.barber-nav-section .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--black);
  text-decoration: none;
}

.barber-nav-section .nav-logo-image {
  width: auto;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.barber-nav-section .nav-logo .logo-black {
  color: var(--black);
}

.barber-nav-section .nav-logo .logo-red {
  color: var(--red);
}

.barber-nav-section .nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.barber-nav-section .nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.barber-nav-section .nav-links a:hover {
  color: var(--black);
}

.barber-nav-section .btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.barber-nav-section .btn-primary {
  background: var(--red);
  color: var(--white) !important;
}

.barber-nav-section .btn-primary:hover {
  background: #a80d26;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.barber-nav-section .mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.barber-nav-section .mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

.barber-nav-section .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.barber-nav-section .mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.barber-nav-section .mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.barber-nav-section .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.barber-nav-section .mobile-menu.active {
  right: 0;
}

.barber-nav-section .mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.barber-nav-section .mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.barber-nav-section .mobile-menu-content {
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.barber-nav-section .mobile-menu-content a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-grey);
  transition: color 0.3s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.barber-nav-section .mobile-menu-content a:hover {
  color: var(--red);
}

.barber-nav-section .mobile-menu-content .btn {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

.barber-footer-section {
  --red: #c8102e;
  --blue: #003087;
  --black: #0a0a0a;
  --white: #fafafa;
  --grey: #6b6b6b;
  --light-grey: #f0f0f0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

.barber-footer-section .footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.barber-footer-section .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.barber-footer-section .footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.barber-footer-section .footer-logo-image {
  width: auto;
  height: 62px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.barber-footer-section .footer-brand h3 .logo-black {
  color: var(--white);
}

.barber-footer-section .footer-brand h3 .logo-red {
  color: var(--red);
}

.barber-footer-section .footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.barber-footer-section .footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.barber-footer-section .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.barber-footer-section .footer-column li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.barber-footer-section .footer-column a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.barber-footer-section .footer-column a:hover {
  color: var(--red);
}

.barber-footer-section .footer-attribution-link {
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.barber-footer-section .footer-attribution-link:hover {
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: underline;
}

.barber-footer-section .footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.barber-footer-section .footer-bottom > div:first-child {
  flex: 1;
  text-align: left;
}

.barber-footer-section .footer-copyright-left {
  display: inline;
}

.barber-footer-section .footer-copyright-center {
  display: inline;
  margin-left: 1rem;
}

.barber-footer-section .social-links {
  display: flex;
  gap: 1rem;
}

.barber-footer-section .social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.barber-footer-section .social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 1024px) {
  .barber-footer-section .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .barber-nav-section .nav {
    padding: 0.75rem 1rem;
  }

  .barber-nav-section .nav.scrolled {
    padding: 0.5rem 1rem;
  }

  .barber-nav-section .nav-logo {
    font-size: 1.2rem;
    gap: 0.45rem;
  }

  .barber-nav-section .nav-logo-image {
    height: 34px;
  }

  .barber-nav-section .nav-links {
    display: none;
  }

  .barber-nav-section .mobile-menu-btn {
    display: flex;
  }

  .barber-footer-section .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .barber-footer-section .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .barber-footer-section .footer-brand h3 {
    font-size: 1.75rem;
  }

  .barber-footer-section .footer-logo-image {
    margin: 0 auto 1rem;
    height: 54px;
  }

  .barber-footer-section .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .barber-footer-section .footer-bottom > div:first-child {
    text-align: left;
  }

  .barber-footer-section .footer-copyright-center {
    margin-left: 0.5rem;
  }

  .barber-footer-section .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .barber-nav-section .nav {
    padding: 0.625rem 0.75rem;
  }

  .barber-nav-section .nav-logo {
    font-size: 1rem;
    letter-spacing: 1px;
    gap: 0.35rem;
  }

  .barber-nav-section .nav-logo-image {
    height: 28px;
  }

  .barber-footer-section .footer {
    padding: 2.5rem 1rem 1rem;
  }

  .barber-footer-section .footer-inner {
    gap: 1.5rem;
  }

  .barber-footer-section .footer-brand h3 {
    font-size: 1.5rem;
  }

  .barber-footer-section .footer-logo-image {
    height: 48px;
  }

  .barber-footer-section .footer-brand p {
    font-size: 0.9rem;
  }

  .barber-footer-section .footer-column h4 {
    font-size: 1rem;
  }

  .barber-footer-section .footer-column a,
  .barber-footer-section .footer-column li {
    font-size: 0.9rem;
  }

  .barber-footer-section .footer-bottom {
    font-size: 0.8rem;
  }

  .barber-footer-section .social-links a {
    width: 38px;
    height: 38px;
  }
}
