body {
  font-family: Arial, sans-serif;
}

.top-bar {
  background-color: #c51c2a;
}


a {
  text-decoration: none !important;
  transition: color 0.3s ease;
}

a:hover {
  color: #c51c2a !important;
}


header {
  background-color: #ffffff; 
  color: #c51c2a ; 
  
}
header .text-muted {
  color: #c51c2a  !important; 
}

header a {
  color: white; 
  font-weight: bold;
}

header a:hover {
  color: #c51c2a; 
}

header .dropdown-menu a {
  color: black; 
  font-weight: normal; 
}

.side-drawer {
  position: fixed;
  top: 0;
  left: -250px;
  height: 100%;
  width: 250px;
  background: #fff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: left 0.3s ease;
  padding: 20px;
}

.side-drawer.open {
  left: 0;
}

.side-drawer a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: #000;
}

.side-drawer a:hover {
  color: #c51c2a;
}

.dropdown-menu a {
  font-size: 0.9rem;
  padding: 5px 15px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1049;
  display: none;
}

.backdrop.show {
  display: block;
}

.bottom-nav {
  display: none;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  color: #000;
  font-size: 1rem;
}

.bottom-nav a.active {
  color: #c51c2a;
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  nav {
    display: none;
  }

  .bottom-nav {
    display: flex;
  }

  .side-drawer {
    display: block;
  }
}

@media (min-width: 992px) {
  .bottom-nav {
    display: none;
  }

  nav a {
    margin-right: 20px;
  }

  nav .dropdown-menu {
    padding: 10px 20px;
  }
}


.logo {
  max-height: 40px; 
  height: auto; 
  width: auto;
  margin-right: 1rem;
}


@media (max-width: 768px) {
  .logo {
    max-height: 20px; 
    margin-right: 0.5rem; 
  }
}
