@font-face {
  font-family: "InterRegular";
  src: local("InterRegular"),
    url("../fonts/Inter-Regular.ttf") format("ttf");
  font-display: swap;
}
@font-face {
  font-family: "NeueMontrealBold";
  src: local("NeueMontrealBold"),
    url("../fonts/NeueMontreal-Bold.otf") format("otf");
  font-display: swap;
}
@font-face {
  font-family: "MontserratRegular";
  src: local("MontserratRegular"),
    url("../fonts/Montserrat-Regular.ttf") format("ttf");
  font-display: swap;
}
@font-face {
  font-family: "NeueMontrealMedium";
  src: local("NeueMontrealMedium"),
    url("../fonts/NeueMontreal-Medium.otf") format("otf");
  font-display: swap;
}
@font-face {
  font-family: "NeueMontrealRegular";
  src: local("NeueMontrealRegular"),
    url("../fonts/NeueMontreal-Regular.otf") format("otf");
  font-display: swap;
}
body {
  padding-top: 210px;
  font-family: "NeueMontrealRegular","Segoe UI", sans-serif;
}
.phone-number{
  font-family: "MontserratRegular","Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.top-bar {
    text-align: center;
    display: none;
  }

  @media (min-width: 992px) {
    .top-bar {
      display: block;
      z-index: 1031;
      text-align: right;
      padding-right: 1rem;
    }
  }
.hero-section {
  width: 100%;
  height: 70vh; /* Full viewport height */
  overflow: hidden;
  position: relative;
}

.service-container{
  padding: 20px 0;
  background-color: #f8f8f8;
}
.service-container-else{
  padding: 20px 0;
  background-color: #ffffff;
}

.reference-img {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.object-fit-cover {
  object-fit: cover;
}
.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.mySlides {
  width: 100%;
  height: 100%;
  object-fit: cover; /* scale image to cover header */
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.8s ease;
}

.mySlides.active {
  left: 0;
  opacity: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border-radius: 10px;
    user-select: none;
    z-index: 10;
    width: 50px;
    height: 50px;
    align-items: center;
    text-align: center;
    padding: 8px;

    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.4); /* darker on hover */
  transform: translateY(-50%) scale(1.1); /* optional subtle scale */
}

.slider-arrow.left { left: 20px; }
.slider-arrow.right { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background-color: #fff;
}

.footer-bg {
  background-color: #e6a27d; 
  color: #1d120e;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-bg a {
  color: #1d120e;
  text-decoration: none;
}

.footer-bg a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  flex: 1 1 300px;
  margin: 10px;
}

.footer-left h4, .footer-right h4 {
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.footer-left p, .footer-right li {
  font-size: 14px;
  line-height: 1.8;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right li::before {
  content: "» ";
  color: #ffffff;
}

a .fa {
    text-decoration: none; /* safe to keep */
}

a:hover .fa {
    text-decoration: none; /* ensures icon stays clean */
    opacity: 0.7;
}
/* social */
.fa {
    padding: 10px;
    font-size: 20px;
    width: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    width: 40px;
}

.fa:hover {
    text-decoration: none;
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}
.fa-instagram {
  background: #ea4c89;
  color: white;
}
.fa-google {
  background: #dd4b39;
  color: white;
}

/* ===== NAVBAR DEFAULT (TOP STATE) ===== */
.custom-navbar {
  background: url("../images/navbar-bg.jpg") center/cover no-repeat;
  padding: 60px 0;
  transition: all 0.35s ease;
  z-index: 1030;
}

/* overlay for readability (optional but nice) */
.custom-navbar::before {
  content: "";
  
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.0);
  transition: all 0.35s ease;
  z-index: -1;
}

/* logo default size */
.nav-logo {
  height: 90px;
  width: auto;
  transition: all 0.35s ease;
}

/* ===== SCROLLED STATE ===== */
.custom-navbar.scrolled {
  background: #ffffff !important;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.custom-navbar.scrolled::before {
  background: rgba(255,255,255,1);
}

/* smaller logo when scrolled */
.custom-navbar.scrolled .nav-logo {
  height: 55px;
}

/* smooth link color */
.custom-navbar .nav-link {
  font-weight: 500;
}