@charset "utf-8";
/* ====== GLOBAL STYLES ====== */
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #111;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
	overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* --- Navigation Styles --- */
.nav-top {
  background-color: #f7f7f7; /* Background color of the entire navigation bar */
  padding: 10px 0; /* Vertical padding for the navigation bar */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: relative; /* Allows for z-index and positioning of children if needed */
  z-index: 1000; /* Ensures the navigation stays on top of other content */
}

.nav-list {
  display: flex; /* Enables Flexbox for horizontal layout of navigation items */
  justify-content: center; /* Horizontally centers navigation items by default */
  align-items: center; /* Vertically aligns navigation items in the middle */
  list-style: none; /* Removes default bullet points from the unordered list */
  padding: 0; /* Removes default padding from the unordered list */
  margin: 0; /* Removes default margin from the unordered list */
  flex-wrap: nowrap; /* Prevents navigation items from wrapping onto multiple lines */
  overflow-x: hidden; /* Hides any horizontal overflow within the navigation list */
}

.nav-item {
  /* This class can be used for general styling of individual list items,
     but in this setup, most styles are applied directly to the <a> tag. */
}

.nav-item a {
  text-decoration: none; /* Removes the default underline from links */
  color: #222; /* Default text color for navigation links */
  font-weight: 500; /* Medium font weight */
  white-space: nowrap; /* Prevents the text within a link from breaking into multiple lines */
  display: block; /* Makes the entire padding area of the link clickable */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  padding: 10px 20px; /* Default padding for navigation links */
  font-size: 1.1rem; /* Default font size for navigation links */
  border-radius: 8px; /* Rounded corners for the link background/hover effect */
}

.nav-item a:hover {
  background-color: #e0e0e0; /* Light gray background on hover */
  color: #c5a059; /* Accent color for text on hover */
}

.nav-item.active a {
  background-color: #c5a059; /* Highlight background for the active (current) page */
  color: #ffffff; /* White text for the active page */
}

/* --- Logo Specific Styles within Navigation --- */
.nav-logo-item {
  display: none; /* Hidden by default on small screens (below 400px) */
  margin-right: auto; /* Pushes other navigation items to the right in flex container */
  padding-left: 20px; /* Padding on the left side of the logo */
}

.nav-brand-logo {
  height: 40px; /* Fixed height for the logo image */
  width: auto; /* Maintains the aspect ratio of the logo */
  display: block; /* Ensures the image behaves as a block within its flex item */
}


/* --- Responsive Adjustments for Navigation (including logo visibility) --- */

/* For screens above 400px: Show the logo and adjust navigation layout */
@media (min-width: 375px) {
  .nav-logo-item {
    display: block; /* Make the logo item visible */
  }
  .nav-list {
    justify-content: space-between; /* Distribute logo and other nav items across the space */
  }
}

/* For screens up to 992px wide (e.g., tablets and smaller desktops) */
@media (max-width: 992px) {
  .nav-item a {
    padding: 8px 15px; /* Slightly reduced padding */
    font-size: 1rem; /* Slightly reduced font size */
  }
  .nav-brand-logo {
    height: 35px; /* Slightly smaller logo */
  }
}

/* For screens up to 768px wide (e.g., larger smartphones in landscape) */
@media (max-width: 768px) {
  .nav-item a {
    padding: 6px 12px; /* Further reduced padding */
    font-size: 0.9rem; /* Further reduced font size */
  }
  .nav-brand-logo {
    height: 30px; /* Even smaller logo */
  }
}

/* For screens up to 500px wide (e.g., most smartphones in portrait) */
@media (max-width: 500px) {
  .nav-item a {
    padding: 5px 10px; /* Even more reduced padding */
    font-size: 0.85rem; /* Even more reduced font size */
  }
  .nav-list {
    justify-content: space-evenly; /* Distributes items with equal space around them */
  }
  /* The logo will be hidden at this point (due to max-width: 400px media query),
     so no need to adjust its size here, as display: none takes precedence. */
}

/* New breakpoint for very small screens (below 320px) */
@media (max-width: 320px) {
  .nav-item a {
    padding: 3px 6px; /* Minimal padding */
    font-size: 0.7rem; /* Very small font size */
  }
  .nav-list {
    justify-content: space-around; /* Slightly different distribution for very small screens */
    overflow-x: hidden; /* Ensure no nav scrollbar */
  }
}

/* Aggressive breakpoint for extremely small screens (below 280px) */
@media (max-width: 280px) {
  .nav-item a {
    padding: 2px 4px; /* Super minimal padding */
    font-size: 0.65rem; /* Super tiny font size */
    letter-spacing: -0.02em; /* Tighten up spacing more */
  }
  .nav-list {
    justify-content: space-between; /* Try to spread out evenly */
    overflow-x: hidden; /* Absolutely no scroll on nav-list */
    flex-shrink: 0; /* Prevents items from shrinking beyond content */
  }
}

/* Absolute smallest breakpoint for screens below 240px (e.g., 220px) */
@media (max-width: 240px) {
  .nav-item a {
    padding: 1px 2px; /* Barely any padding */
    font-size: 0.6rem; /* The smallest possible font size */
    letter-spacing: -0.03em; /* Tighten up spacing more */
  }
  .nav-list {
    justify-content: space-between; /* Maximally distribute */
    overflow-x: hidden; /* Critical to prevent nav scroll */
  }
}

/* Global body overflow prevention for extra small screens if not already present */
@media (max-width: 600px) {
  body {
    overflow-x: hidden; /* Prevents horizontal scroll on the entire body for small screens */
  }
} 
/* --- Wordmark (Text Logo) for 3KB Reserve --- */
.nav-wordmark-item {
  display: none; /* Hide by default */
  margin-right: auto;
  padding-left: 20px;
}

.nav-wordmark-link {
	font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c5a059;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: block;
  line-height: 1;
}

/* Show wordmark only above 450px */
@media (min-width: 600px) {
  .nav-wordmark-item {
    display: block;
  }

  .nav-list {
    justify-content: space-between;
  }
}




/* ====== FOOTER ====== */
.footer {
  background-color: #222;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.container a{
	text-decoration: none;
	color:gold;
}
.footer-nav a {
  color: #999;
  font-size: 14px;
  transition: color 0.3s ease;
	text-decoration: none;
}

.footer-nav a:hover {
  color: #d4af37;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: white;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #d4af37;
}
/* 4. Sticky Floating Call Button */
.sticky-call-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffbf00;
  color: #000;
  padding: .75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1100;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.sticky-call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
/* ====== HERO SECTION ====== */
.hero-section {
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), #111), url('../IMAGES/lease/lease-hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  max-width: 700px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #d4af37;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ccc;
}
.hero-button {
  display: inline-block;
  background-color: #d4af37;
  color: #fff;
  padding: 12px 24px;
  margin-top: 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: #b7952b;
}



.hero-service-catalog-btn:hover {
  background-color: #d4af37; /* lighter gold on hover */
	color: #000;}




/* ====== BOOKING SECTION ====== */
.booking-section {
  padding: 60px 20px;
  background-color: #111;
  text-align: center;
}

.booking-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #d4af37;
}

/* ====== TABS ====== */
.provider-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-link {
  padding: 10px 20px;
  background-color: #222;
  border: 1px solid #333;
  border-radius: 30px;
  color: #f5f5f5;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-link:hover,
.tab-link.active {
  background-color: #d4af37;
  color: #111;
  border-color: #d4af37;
}

.tab-content {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tab-content.active {
  display: flex;
}

/* ====== PROVIDER CARDS ====== */
.pro-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pro-card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.pro-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.pro-card h4 {
  color: #f5f5f5;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.pro-card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.btn-primary {
  background-color: #d4af37;
  color: #111;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b9912f;
}

/* ====== BOOKING DISCLAIMER ====== */
.booking-disclaimer {
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 0.85rem;
  color: #888;
}

/* ====== FOOTER ====== */
.footer {
  background-color: #222;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.container a{
	text-decoration: none;
	color:gold;
}
.footer-nav a {
  color: #999;
  font-size: 14px;
  transition: color 0.3s ease;
	text-decoration: none;
}

.footer-nav a:hover {
  color: #d4af37;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: white;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #d4af37;
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  

  .tab-content {
    flex-direction: column;
    align-items: center;
  }

  .pro-card {
    margin: 15px 0;
  }
}
/* ====== ANY BARBER BOOKING FORM ====== */
.barber-booking-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.barber-booking-form label {
  font-weight: bold;
  font-size: 0.95rem;
  color: #d4af37;
}

.barber-booking-form input[type="text"],
.barber-booking-form input[type="email"],
.barber-booking-form select {
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #111;
  color: #f5f5f5;
  font-size: 1rem;
  width: 100%;
}

.barber-booking-form select:disabled {
  opacity: 0.5;
}

.barber-booking-form .flatpickr-input {
  cursor: pointer;
}

.barber-booking-form .btn-primary {
  background-color: #d4af37;
  color: #111;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.barber-booking-form .btn-primary:hover {
  background-color: #b9912f;
}

.terms-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.terms-check input[type="checkbox"] {
  transform: scale(1.2);
}

.terms-check a {
  color: #d4af37;
  text-decoration: underline;
}

.booking-disclaimer {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 15px;
}

/* ====== MOBILE FRIENDLY ====== */
@media (max-width: 600px) {
  .barber-booking-form {
    padding: 20px;
  }

  .barber-booking-form label {
    font-size: 0.85rem;
  }

  .barber-booking-form input,
  .barber-booking-form select {
    font-size: 0.95rem;
  }
}/* ====== HAIRCUT STYLES LINK SECTION ====== */
.haircut-styles-link-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.haircut-styles-container {
  max-width: 800px;
  margin: 0 auto;
}

.haircut-styles-container h2 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 20px;
}

.haircut-styles-container p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.6;
}



.view-haircuts-btn:hover {
  background-color: #b9912f;
}

/* ====== MOBILE ====== */
@media (max-width: 600px) {
  .haircut-styles-container h2 {
    font-size: 1.5rem;
  }

  .haircut-styles-container p {
    font-size: 0.95rem;
  }
}
.hero-anybarber-btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #d4af37;
  color: #111;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero-anybarber-btn:hover {
  background-color: #b9912f;
}

.flashing-text {
  animation: flashPulse 1.2s infinite alternate;
}

@keyframes flashPulse {
  from { opacity: 1; }
  to   { opacity: 0.5; }
}
.hero-service-catalog-btn,
.view-haircuts-btn {
  display: inline-block;
  background-color: #d4af37;
  color: #000;
  padding: 14px 28px;
  margin-top: 15px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  max-width: 100%;
}

/* Hover Effect */
.hero-service-catalog-btn:hover,
.view-haircuts-btn:hover {
  background-color: #b88d2c; /* Slightly darker gold */
  color: #fff;
}

/* Optional: Mobile Responsive Adjustment */
@media (max-width: 600px) {
  .hero-service-catalog-btn,
  .view-haircuts-btn {
 font-size: 15px;
    padding: 12px 22px;
    width: 100%;
    box-sizing: border-box; /* ✅ this is the fix */
  }
}

.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #d4af37;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
	text-decoration: none;
}
.floating-cta .cta-icon {
  font-size: 1.5rem;       /* adjust to taste */
  line-height: 1;
}
.pulse {
  animation: pulse 1s ease;
}
@keyframes pulse {
  0% { transform: scale(1); background-color: #c5a059; }
  50% { transform: scale(1.05); background-color: #d9b871; }
  100% { transform: scale(1); background-color: #c5a059; }
}
select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
/* Hamburger ☰ */
.branded-top-banner {
  background-color: #000;
  color: #fff;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #c5a059;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.branded-content {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.branded-icon {
  width: 50px;
  height: 50px;
}

.branded-text h1 {
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: 1px;
}

.branded-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
}

.branded-cta {
  background-color: #c5a059;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.branded-cta:hover {
  background-color: #e1b970;
}

@media (max-width: 500px) {
  .branded-top-banner {
    padding: 0.5rem 1rem;
  }

  .branded-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    text-align: center;
  }

  .branded-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    margin: 0.25rem 0.5rem 0 0;
  }

  .branded-text {
    padding-top: 0.5rem;
  }

  .branded-text h1 {
    font-size: 1.3rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
  }

  .branded-text p {
    font-size: 0.9rem;
  color: #ccc;
  margin: 0;
  }

  .branded-cta {
    align-self: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}
.banner-logo {
  width: 40px;
  height: 40px;
}
.branded-cta-button {
  background-color: #c5a059;
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.branded-cta-button:hover {
  background-color: #e1b970;
}
.branded-banner-message {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c5a059;
  position: relative;
}
/* Top Banner: Headline + Logo */
.leasing-banner {
  background-color: #0a0a0a;
background-image: url("../IMAGES/homepage/black-fiber.webp"); /* optional texture overlay */
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px solid #c5a059;
	background-size: cover;
}

.leasing-headline {
  font-weight: 700;
  margin: 0;
  flex-grow: 1;
  font-size: clamp(0.7rem, 4.5vw, 1.3rem); /* Smaller + tighter */
  letter-spacing: 0.3px;
  line-height: 1.2;
  word-break: break-word;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}


.leasing-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 732px) {
  .leasing-banner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .leasing-headline {
    font-size: clamp(0.5rem, 3vw, 0.85rem);
    margin: 0;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .leasing-logo {
    width: 24px;
    height: 24px;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }
}


/* Second Banner: Description + Button */
.audience-banner {
  background-color: #f9f3e9;
  padding: 0.75rem 1rem 1.25rem;
  text-align: center;
}

.audience-subtext {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.leasing-button {
  display: inline-block;
  background-color: #c5a059;
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.leasing-button:hover {
  background-color: #e1b970;
}
@media (max-width: 420px) {
  .leasing-banner {
    padding: 0.5rem 0.75rem;
  }
  .leasing-logo {
    width: 22px;
    height: 22px;
  }
}