:root {
  --sidebar-width: 15%;
   --sidebar-width-mob: 45%;
  --sidebar-collapsed-width: 4%;
  --header-height: 80px;
  --footer-height: 60px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  font-family: sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid #ccc;
  display: flex;
  z-index:999;
}

.header-left {
  width: 80%;
  padding: 10px 20px;
}

.header-left h1 {
  margin-bottom: 5px;
  /*color: #0896ff;*/
  color: tomato;
}

.header-left h2 {
  font-size: 0.9em;
  color: #989B9C;
}

.header-right {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right img {
  max-height: 60px;
}

.main-container {
  display: flex;
  margin-top: var(--header-height);
  margin-bottom: var(--footer-height);
  height: calc(100% - var(--header-height) - var(--footer-height));
}

.sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  background: #f4f4f4;
  overflow: hidden;
  position: relative;
  transition: width 0.3s ease;
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed-width);
  background:black;
}

.toggle-btn {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.sidebar.collapsed .toggle-btn {
   background: teal;
}

.menu ul {
  list-style: none;
}

.menu ul li {
  list-style: none;
  margin-left: -3px;
}

.menu ul li ul {
  list-style: none;
  margin-left: 8px;
  padding-left:5px;
}

/* for li in main content */
.content li {
    margin-left: 18px;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.icon {
  color: red;
  margin-right: 8px;
  font-size: large;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.submenu.expanded {
  max-height: 500px;
}


.content {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto 30px;
}

.carousel-images {
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  position: relative;
  opacity: 1;
}

.slide img {
  display: block;
  width: 100%;
}

.carousel-caption {
  background: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 8px;
  cursor: pointer;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.placeholder-text p {
  margin-bottom: 1em;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--footer-height);
  background: #222;
  color: #fff;
  text-align: center;
  padding-top: 10px;
}

.footer-links a {
  margin: 0 15px;
  color: #989B9C;
  text-decoration: none;
}

.footer-credit {
  margin-top: 5px;
  font-size: 0.9em;
  color: #156F87;
}

img.inline_pic, .inline_pic {
  width: 80%;
  margin-left:10%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.love-ya-like-a-sister-regular {
  font-family: "Love Ya Like A Sister", cursive;
  font-weight: 400;
  font-style: normal;
}

.carousel-caption h3 {
  font-family: "Love Ya Like A Sister", cursive;
  font-weight: bold;
  font-style: normal;
}

.content h1 {
  font-size: 80px;
}

.content h1, .content h2, .content h3 {
   font-family: "Love Ya Like A Sister", cursive;
    text-shadow: black 2px 3px;
   color: teal;
}


/* no decorating links unnecessarily */
a, a:visited {
  text-decoration: none !important;
  color: teal;
}

/* for video displays */

.video-container video {
  border: 4px solid #333;
  border-radius: 8px;
  max-width: 90%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


/* for map display */

.map_holder {
  border: 4px solid #333;
  border-radius: 8px;
  max-width: 80%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



/* for mobile devices */
@media (max-width: 768px) {
  /* Styles for mobile devices */
  
  .header-left h1 {
  font-size: 1.2em;
}

.header-left h2 {
  font-size: 0.8em;
  color: #989B9C;
}
  
 .sidebar {
  width: var(--sidebar-width-mob);
   font-size: small;
}
  
  .footer-links a {
font-size: x-small;
}
  
  .footer-credit {
  font-size: small;
}

}


