:root {
  --primary-dark: #18130f;
  --primary-light: #fae0c8;
  --secondary-yellow: #f5b903;
  --secondary-orange: #e46c0b;
}

html,
body {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

body {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.navbar-brand {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.school-name {
  color: var(--secondary-yellow);
  font-weight: 100;
  font-size: 1rem;
  letter-spacing: -1px;
  line-height: 1.2;
}

/* Adjustments for medium screens */
@media (max-width: 992px) {
  .school-name {
    font-size: 0.9rem;
    white-space: normal;
    /* allow wrap */
    line-height: 1.3;
  }
}

/* For mobile screens */
@media (max-width: 576px) {
  .navbar-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .school-name {
    font-size: 0.85rem;
    line-height: 1.2;
  }
}

/* Navbar */
nav.navbar {
  background: rgba(24, 19, 15, 0.8);
  backdrop-filter: blur(10px);
  transition: background 0.4s ease;
}

.nav-container {
  padding-left: 0;
  display: flex;
}

nav .nav-link {
  /* color: var(--primary-light) !important; */
  font-weight: 400;
  /* margin: 0 8px; */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-yellow) !important;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 70px;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #hero .carousel-caption {
    bottom: 25%;
  }

  #hero .carousel-caption h2 {
    font-size: 1.8rem;
  }

  #hero .carousel-caption p {
    font-size: 1rem;
  }
}