@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.6;
	
}

/* --- 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: auto;   /* Hides any horizontal overflow within the navigation list */
	-webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.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 14px; /* Reduced from 20px */
  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;
  }
}
@media (max-width: 480px) {
  .nav-list {
    overflow-x: auto;          /* Allow scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scrollbar-width: none;     /* Hide scrollbar on Firefox */
  }

  .nav-list::-webkit-scrollbar {
    display: none;             /* Hide scrollbar on Chrome/Safari */
  }

  .nav-item {
    flex: 0 0 auto;            /* Prevent shrinking/wrapping */
  }
}
@media (max-width: 480px) {
  .nav-list {
    justify-content: flex-start; /* Align everything to the left */
  }

  .nav-logo-item {
    margin-right: 0;       /* Remove space that pushes nav items away */
    padding-left: 8px;     /* Slight left padding to keep logo visible */
  }

  .nav-wordmark-item {
    display: none !important; /* Hide if necessary to save space */
  }
}

/* ——— Buttons ——— */
.btn-primary {
  background: #d4af37;           /* was var(--primary-color) */
  color: #000;
  box-shadow: 0 0 8px #b9912f;   /* was var(--accent-color) */
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover,
.btn-primary:focus {
  transform: scale(1.05);
  box-shadow: 0 0 12px #d4af37;
}

.btn-secondary {
  background: #b9912f;           /* was var(--accent-color) */
  color: #000;
  box-shadow: 0 0 8px #d4af37;   /* swapped */
}

/* ——— Sections ——— */
.intro {
  background: #1a1a1a;
  text-align: center;
  padding: 60px 20px;
}
.intro h1 {
  font-size: 2.5rem;
  color: #d4af37;                /* was var(--primary-color) */
  margin-bottom: 16px;
  text-shadow: 0 0 12px #d4af37;
}

/* — etc. — just continue replacing every var(...) with its hex. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a, button {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

button:focus, a:focus {
  outline: 2px solid var(--primary-color);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #d4af37;
  color: #000;
  padding: 8px 16px;
  transition: top 0.3s ease;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}

.intro {
  background: #1a1a1a;
  text-align: center;
  padding: 60px 20px;
  animation: shimmer 5s infinite;
}
.intro h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  text-shadow: 0 0 12px var(--primary-color);
}
.intro p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.difference-section {
  padding: 60px 0;
  text-align: center;
}
.difference-section h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 40px;
  text-shadow: 0 0 8px var(--primary-color);
}
.difference-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diff-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.diff-box img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 16px;
}
.diff-box h3 {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-bottom: 12px;
}
.diff-box p {
  color: #ccc;
  margin-bottom: 16px;
}
.diff-box .btn-primary {
  align-self: flex-end;
}

@media (min-width: 1000px) {
  .difference-wrap {
    flex-direction: row;
  }
  .diff-box {
    width: 48%;
  }
}

.cut-category {
  background: #111;
  padding: 60px 0;
}
.cut-category h2 {
  text-align: center;
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 8px;
  text-shadow: 0 0 8px var(--primary-color);
}
.cut-category .subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 32px;
}
.cut-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.cut-card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  width: 280px;
  display: flex;
  flex-direction: column;
}
.cut-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cut-card h4 {
  margin: 16px;
  color: #d4af37;
}
.cut-card p {
  flex-grow: 1;
  margin: 0 16px 12px;
  color: #ccc;
}
.price {
  margin: 0 16px 16px;
  font-weight: bold;
  color: #b9912f;
}
.btn-book {
  background: #d4af37;
  color: #000;
  text-align: center;
  margin: 0 16px 16px;
  padding: 10px;
  border-radius: 4px;
  font-weight: bold;
  box-shadow: 0 0 8px var(--accent-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-book:hover, .btn-book:focus {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--primary-color);
}

.testimonials {
  padding: 60px 0;
  background: #1a1a1a;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 40px;
  text-shadow: 0 0 8px var(--primary-color);
}
.test-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.test-card {
  background: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-style: italic;
}
@media (min-width: 1000px) {
  .test-wrap {
    flex-direction: row;
  }
  .test-card {
    width: 30%;
  }
}

.cta {
  padding: 60px 0;
  text-align: center;
}
.cta h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 24px;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  margin: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: bold;
  text-shadow: 0 0 6px #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 8px var(--accent-color);
}
.btn-secondary {
  background: #b9912f;
  color: #000;
  box-shadow: 0 0 8px var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--accent-color);
}
.btn-secondary:hover, .btn-secondary:focus {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--primary-color);
}

.footer {
  background: #222;
  color: #777;
  text-align: center;
  padding: 40px 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.footer-contact a, .footer-contact address {
  color: #ccc;
  font-size: 0.9rem;
}
.footer-contact i {
  margin-right: 6px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #999;
  transition: color 0.3s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #d4af37;
}
.social {
  margin-bottom: 20px;
}
.social a {
  margin: 0 10px;
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s;
}
.social a:hover, .social a:focus {
  color: #d4af37;
}
.footer p {
  font-size: 0.8rem;
  color: #555;
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  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;
}
.floating-cta .cta-icon {
  font-size: 1.5rem;       /* adjust to taste */
  line-height: 1;
}
@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.8; }
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
/* 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;
}

/* 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;
  }
}