/* ----------------------------
   Global Typography & Layout Defaults
----------------------------- */
body {
  font-family: 'Inter', sans-serif;
  color: #212529;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  color: #1c1c1c;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p, ul, ol {
  margin-bottom: 1rem;
  color: #333;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: #444;
}

img.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.featurette-heading {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Consistent spacing for featurette layout */
.row.featurette {
  margin-bottom: 3rem;
}

@media (max-width: 767.98px) {
  .featurette-heading {
    text-align: center;
  }

  .featurette .col-md-7 {
    text-align: center;
  }
}

/* ----------------------------
   Global Navigation Bar Styles
----------------------------- */

.navbar {
  background-color: #ffffff;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  font-family: 'Inter', sans-serif;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav .nav-link {
  padding: 0.75rem 1rem;
  color: #333;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #0066cc;
}

/* Dropdown styles */
.dropdown-menu {
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #0066cc;
}

.dropdown-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

/* Responsive logo adjustment */
@media (max-width: 576px) {
  .navbar-brand img {
    height: 48px;
  }
}

/* ----------------------------
   Hero Section (Masthead Style)
----------------------------- */

.hero.masthead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/physiotherqpie01.jpg") no-repeat center center;
  background-size: cover;
  min-height: 80vh;
  padding: 4rem 1rem;
  color: #fff;
}

.hero.masthead::before {
  content: "";
  position: absolute;
  background-color: #1c375e;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 0;
}

.hero.masthead .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero.masthead h1,
.hero.masthead .h1 {
  font-size: 2.5rem;
}

.hero.masthead .btn {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  font-weight: 500;
}

/* Larger screens */
@media (min-width: 768px) {
  .hero.masthead h1,
  .hero.masthead .h1 {
    font-size: 3.5rem;
  }
}