/* ─────────────────────────────────────
GLOBAL STYLING - CSS
────────────────────────────────────── */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Onest", sans-serif;
  background: #e9f3f4;
  color: #1a1a1a;
}

/* color pallette */
:root {
  --primary: #024f63;
  --secondary: #189a8d;
  --submit: #e27c7c;
  --text: #1a1a1a;
  --white: #ffffff;
}

/* navbar */
.custom-navbar {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(224, 242, 242, 0.88);
  border-radius: 40px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  padding: 9px 22px;
  width: 92%;
  max-width: 1350px;
}

.logo-wrapper {
  width: 95px;
  height: 50px;
  border-radius: 40px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 10px;
}

.logo-img {
  width: 60px;
}

.logo-text {
  font-size: clamp(1.7rem, 2.2vw, 2.7rem);
  font-weight: 700;
  color: var(--text);
  margin-right: 26px;
  white-space: nowrap;
}

.nav-link {
  color: var(--text) !important;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 20px;
  transition: 0.25s ease;
}

.nav-link:hover {
  color: #007b83 !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 992px) {
  .navbar-collapse {
    background: rgba(224, 242, 242, 0.96);
    border-radius: 22px;
    padding: 18px;
    margin-top: 12px;
  }

  .nav-link {
    margin: 12px 0;
    text-align: center;
  }
}

/* footer */
footer {
  background: rgba(224, 242, 242, 0.9);
  border-radius: 40px 40px 0 0;
  padding: 32px 0 26px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  text-align: center;
  color: var(--text);
}
