/* Body */
/* Navbar has it's own font family refference  for nav links */
body {
  font-family: "Kanit", sans-serif;
  color: #495057;
  background: #f7f7f7;
}

/* Website page wrapper before body */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1vw;
  /* border: 1px solid red; */
}

/* ------------------------------------------------------------------------------------ */
/* Both Top Contact Bar and Navbar stick to top */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: linear-gradient(180deg, #ffffff, #f3f3f3), rgba(0, 0, 0, 0.03);
  background-blend-mode: overlay;
  border-radius: 8px;
}

/* ------------------------------------------------------------------------------------ */
/* Top Contact Bar */
.top-contact-bar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0;
  /* border: 1px solid brown; */
}

.contact-inner {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 1rem;
}

/* Tablet */
@media (max-width: 768px) {
  .contact-inner {
    font-size: 0.85rem;
    gap: 1.5rem;
  }
}

/* Phone */
@media (max-width: 480px) {
  .top-contact-bar {
    justify-content: center;
  }

  .contact-inner {
    flex-direction: column; /* stack phone + email */
    gap: 0.3rem;
    text-align: center;
  }
}
/* ------------------------------------------------------------------------------------ */
/* Main navbar container*/
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* border: 1px solid green; */
}

/* Logo sizing */
.navbar-brand img {
  width: 300px;
  height: auto;
}

/* Navbar Left 50% */
.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
  margin: 1rem;
  /* border: 1px solid magenta; */
}

/* Navbar Right 50% */
.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 2rem; /* spacing between Services and Contact */
  align-items: center;
  font-family: "Kanit", sans-serif;
  color: red;
  margin: 1rem;
  /* border: 1px solid blue; */
}

/* NavBar links */
.nav-link-item {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #495057;
}

.nav-link-item:hover {
  color: #f94144;
}

/* Tablet */
@media (max-width: 768px) {
  .navbar-brand img {
    width: 150px;
  }
  .nav-right {
    gap: 1.5rem;
  }
  .nav-link-item {
    font-size: 0.95rem;
  }
}

/* Phone */
@media (max-width: 480px) {
  .navbar-brand img {
    width: 100px;
  }
  .nav-right {
    gap: 1.5rem;
  }
  .nav-link-item {
    font-size: 2rem;
  }
}

/* ------------------------------------------------------------------------------------ */
/* Footer */
/* FOOTER BAR */
.footer-bar {
  width: 100%;
  padding: 0.5rem 0;
  /* border: 1px solid yellowgreen; */
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem; /* space between text and link */
  font-size: 0.9rem;
  font-weight: 700;
  /* color: #333; */
}

.footer-link {
  color: #f94144;
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 768px) {
  .footer-inner {
    font-size: 0.85rem;
    gap: 1rem;
  }
}

/* Phone */
@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column; /* stack vertically */
    gap: 0.4rem;
    text-align: center;
  }
}
