﻿/* style.css */

/* Header styling */
.custom-header {
  background-color: #003366 !important;
}

.header-logo {
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

/* Footer styling */
.custom-footer {
  background-color: #003366;
  color: white;
}

/* Navbar */
.navbar-brand {
  font-size: 1.9rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-size: 1.2rem;
}

/* Footer text */
.footer-text {
  font-size: 1rem;
}

.footer-columns img {
  width: 50px;
  margin-right: 10px;
}

.footer-columns h5 {
  color: white;
  font-size: 1.2rem;
}

.footer-columns a {
  color: white;
  text-decoration: none;
}

.footer-columns a:hover {
  text-decoration: underline;
}

.footer-logo {
  width: 40px;
  border-radius: 50%;
}

/* Carousel */
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
}

/* Active Department Button */
#department-buttons .btn.active {
  background-color: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

/* ---------------------------------
   Responsive Design for Mobile
---------------------------------- */

@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .footer-columns {
    text-align: center;
  }

  .footer-columns img {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .carousel-caption {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .carousel-item img {
    max-height: 50vh;
  }

  .header-logo {
    width: 35px;
  }

  .navbar-brand {
    font-size: 1.4rem;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-columns h5 {
    font-size: 1rem;
  }

  .footer-columns a {
    font-size: 0.95rem;
  }
}
/* Header styling */
/* Ensure navbar stretches fully and removes spacing */
.custom-header {
  background-color: #003366;
  width: 100%;
}
/* Remove padding/margin from page that might interfere */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav.custom-header {
  outline: 12px solid red;
}