@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary-color: #003c6e;
  --accent-color: #ff6b35;
  --light-bg: #f2f2f2;
  --text-dark: #333;
  --text-muted: #6c757d;
  /*--font-family: 'Arial', sans-serif;*/
  --font-family: 'Roboto Condensed', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: var(--font-family);
  background-color: var(--light-bg);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.page-wrapper,
.main-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #e4f2f9;
}

/* Header / Navbar */
.navbar {
  background-color: #ffffff;
  /*padding: .5rem 2rem;*/
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.navbar h1, .navbar a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
}

.navbar .nav-button {
    font-size: 16px;
    background-color: #fb6a27;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
}

.navbar .nav-button:hover {
  background-color: #069edb;
}

.hamburger {
  display: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* Breadcrumb */
.breadcrumb-container {
  padding: 0.5rem 1rem;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.breadcrumb-item a {
  color: #069edb;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #069edb;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--accent-color);
  content: var(--bs-breadcrumb-divider, ">");
}

.back-button {
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #e05a2b;
}

/* Footer */
.site-footer-bottom {
  background-color: #ffffff;
  color: #989898;
  text-align: center;
  padding: 10px 0;
  font-size: 0.8em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  min-height: 38px;
}

.site-footer-bottom p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.footer-center {
  text-align: center;
  flex: 1;
  font-size: 0.95em;
}

.footer-right {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.footer-right img {
  height: 35px;
}

.page-title {
  text-align: center;
  color: #0077be;
  margin: 1.2rem 0;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
  text-decoration: underline;
  text-decoration-color: #ff6b35;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
  line-height: inherit;
}

.page-subtitle {
  text-align: center;
  /*color: #61b9e8;*/
  color: #0077be;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .nav-button {
    width: 100%;
    padding: 10px;
    text-align: left;
    border-top: 1px solid #ccc;
  }
  .navbar h1 {
    font-size: 1.5rem;
  }

  .breadcrumb-container {
    flex-wrap: wrap;
  }

  .breadcrumb-container a{
    min-width: 25px;
    min-height: 25px;
  }

  .back-button{
    width: 25px;
    height: 25px;
    padding:2px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .page-subtitle {
    font-size: 1.25rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    position: static;
    margin-top: 10px;
  }

  .map-tooltip{
    display: none;
  }
}