@font-face {
  font-family: 'MODERNSPACE';
  src: url('/static/uploads/fonts/modernspace.otf') format('opentype');  
}

body {
  font-family: 'MODERNSPACE', sans-serif; 
  font-weight: bold;
}

.header-text{
    font-size: 64px;
    text-align: center;
    font-family: 'MODERNSPACE', sans-serif;
    font-weight: bold;
}

/* HEADER */
#mobile-header {
    background-color: white;
    padding: 16px;
}

.content {
  padding-top: 98px;
}

.offcanvas.half-screen {
  max-width: 85%; /* Adjust this value as needed */
  width: 85%;     /* Adjust this value to match max-width */
  opacity: 1;
}

.no-style {
  text-decoration: none !important; /* Remove underlines */
  color: inherit !important; /* Inherit text color */
  cursor: pointer !important; /* Change cursor to pointer on hover */
  font-weight: 500 !important
}

#menu-toggle{
  position: fixed;
  bottom: 36px;
  right: 30px;
  font-size: 32px;
  text-align: center;
  width: 64px;
  height: 64px;
  z-index: 99;
  background-color: white;
  opacity: 0.5;
}

.btn-primary {
  background-color: black !important;
  border-color: transparent;
  font-weight: 500 !important;
}

.fw-lighter {
  font-family: 'MODERNSPACE', sans-serif;  
  font-weight: 500 !important;
}

.fw-light {
  font-family: 'MODERNSPACE', sans-serif;
  font-weight: 500 !important;
}

/* CSS for controlling visibility based on screen width */
@media (max-width: 767px) {
  /* Hide the desktop carousel on smaller screens */
  #desktop-nav {
    display: none;
  }
}

@media (min-width: 768px) {
  /* Hide the mobile carousel on larger screens */
  #desktop-nav {
    display: block;
  }
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.item-list {
  position: absolute;
  right: 38px;
  bottom: 10px;
  background-color: transparent; 
  text-align: start;
  z-index: 100;
  padding: 10px;
  transition: height 0.5s ease-in, opacity 0.5s ease-in; /* Transition height and opacity */
  overflow: hidden; /* Hide overflowing content */
  opacity: 0;
}

.container:hover .item-list {
  height: auto; /* Expand to auto height on hover */
  opacity: 1; /* Make it fully visible on hover */
  cursor: pointer;
}

