@font-face {
    font-family: "Epilogue-Black";
    src: url("../assets/fonts/Epilogue-Regular.woff2") format("woff2"),
        url("../assets/fonts/Epilogue-Regular.woff") format("woff");
    /* Optional descriptors */
    font-weight: normal;
    font-style: normal;
}
   /* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--light);
  z-index: 1000;
  border-bottom: 1px solid #ddd;
      padding: 16px 0;
	  box-shadow: 0 2px 40px 12px rgba(0,0,0,.1);
    }

    .brand-name {
      font-size: 22px;
      font-weight: 600;
      color: var(--text-black);
      margin-left: 10px;
      white-space: nowrap;
    }

    /* Buttons */
    .btn-outline-custom {
      border: 1.5px solid #7a7a7a;
      color: #000;
      padding: 10px 22px;
      border-radius: 10px;
      font-weight: 500;
    }

    .btn-outline-custom:hover {
      background-color: #000;
	  color: #fff;
    }

    .btn-solid-custom {
      background-color: #000;
      color: #fff;
      padding: 10px 22px;
      border-radius: 10px;
      font-weight: 500;
    }

    .btn-solid-custom:hover {
	border: 1.5px solid #7a7a7a;
      background-color: #fff;
	  color: #000;
    }

    /* Navbar layout */
    .navbar > .container {
      justify-content: space-between;
      flex-wrap: nowrap;
      gap: 12px;
    }

    /* Mobile menu (collapsed) */
    @media (max-width: 991px) {
      /* Allow collapse to drop below brand/toggler */
      .navbar > .container {
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
      }

      /* Keep brand + toggler on one row */
      .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: calc(95% - 72px);
        padding-top: 0;
        padding-bottom: 0;
      }

      .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
        align-self: center;
        margin-top: 0;
        margin-bottom: 0;
      }

      .navbar {
        padding-top: 0;
        padding-bottom: 0;
      }

      .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        margin-top: 12px;
        padding: 12px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      }

      .nav-actions {
        margin-top: 0;
        gap: 4px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }

      .nav-actions .btn {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        text-align: left;
      }

      /* Mobile should look like menu items (not buttons) */
      .nav-actions .btn-outline-custom,
      .nav-actions .btn-solid-custom {
        background: transparent;
        color: #111;
        border: 0;
      }

      .nav-actions .btn-outline-custom:hover,
      .nav-actions .btn-solid-custom:hover {
        background: rgba(0, 0, 0, 0.06);
        color: #111;
      }

      .nav-actions .btn:focus-visible {
        outline: 2px solid rgba(0, 0, 0, 0.35);
        outline-offset: 2px;
      }

      /* Remove desktop-only spacing utility in mobile menu */
      .nav-actions .ms-lg-3 {
        margin-left: 0 !important;
      }
    }
  .services-section {
    padding-top: 30px;
  }

  .hero-section {
    padding-top: 30px;
  }

  .content-section {
    padding-top: 30px;
  }
/* ================= OUTLETS ================= */
.outlet-buttons{
  display:flex;
  gap:20px;
  justify-content: flex-end;
}

.outlet-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
/* Card overlay (address + links on image) */
.outlet-card-overlay {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  font-family: "Epilogue-Regular", sans-serif;
  padding-bottom: 60px;
}

.outlet-card-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

.outlet-card-overlay p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: 0.95;
}

.outlet-card-overlay .outlet-buttons {
    justify-content: center;
    margin-top: auto;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 48px);
}

.outlet-card-overlay .btn-dark {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  flex-basis: 50%;
  justify-content: center;
}
.btn-dark{
  background:#222;
  color:#fff;
  padding:6px 20px;
  border-radius:8px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.btn-dark:hover{
  background:#000;
}
/* ================= FOOTER BASE ================= */
.footer {
  background: #f5f5f5;
  padding-top: 3rem;
  font-size: 0.9rem;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-top {
  display: grid;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

/* ================= COMPANY ================= */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo img{height: 100%;}
.logo-icon {
  width: 36px;
  height: 36px;
  background: #e21d2f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-company h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ================= LINKS ================= */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #e21d2f;
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-icons a {
  width: 38px;
  height: 38px;
}

/* ================= DIVIDER ================= */
.footer-divider {
  height: 1px;
  background: #ddd;
  margin: 2rem 0 1.5rem;
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #777;
}

.powered {
  text-align: left;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .powered {
    text-align: right;
  }
  .services-section {
    padding: 30px 0;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}