html,
body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.hero-section {
  background: linear-gradient(rgba(0, 150, 150, 0.8), rgba(0, 150, 150, 0.8));
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

/* ========================= */
/* HEADER LOGO SECTION */
/* ========================= */

/* override bootstrap flex */

.navbar-brand {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}

/* logo */

.site-logo {
  width: 150px;
  height: auto;
  margin-bottom: 4px;
}

/* clinic name */

.site-title {
  line-height: 1.2;
}

.site-title .fw-bold {
  font-size: 18px;
}

.site-title .tagline {
  font-size: 12px;
  color: #666;
}

.tagline {
  font-size: 12px;
  color: #555;
}

/* ========================= */
/* NAVBAR LINKS */
/* ========================= */

/* Navbar layout fix */

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* move menu closer */

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  padding: 8px 16px;
  margin: 0 3px;
  border-radius: 20px;
  font-weight: 500;
  color: #333;
  display: inline-block;
  box-sizing: border-box;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.navbar-nav .nav-link:hover {
  background: #2c8f8f;
  color: #fff;
}

.active-menu {
  background: #2c8f8f;
  color: #fff !important;
  border-radius: 20px;
}

/* Prevent size change when active */

.navbar-nav .nav-link,
.active-menu {
  padding: 8px 16px;
}

/* ========================= */
/* FORM INPUTS */
/* ========================= */

.form-input {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ddd;
}

.form-input:focus {
  border-color: #2c8f8f;
  box-shadow: 0 0 6px rgba(44, 143, 143, 0.4);
}
