
body {
    background-color: black;
    color: #f5f5f5;
}


.hidden {
    display: none !important;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
}

.tutorial-highlight {
    position: relative;
    z-index: 9999 !important;
    box-shadow: 0 0 10px #0078d7;
}

.footer-spacing {
    height: 100px;
}

.footer {
    margin-top: auto;
    background-color: #f1f1f1;
    padding: 20px;
    position: sticky;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.image-blurred-edge {
    height: calc(719 * 100vw / 1079);
    max-height: 720px;
    background-image: url('../images/backgrounds/dgrr_background_1080.jpeg');
    background-size:cover;
    background-position: top;
    box-shadow: 0 0 30px 30px black inset;
}

.banner {
    display: block;
}

.banner-stretch {
    display: inline-block; 
    max-width: 400px;
}


.logo-container {
    max-width: 400px;
    width: calc(100vw / 2);
    margin-top: 20px;
    margin-left: 20px;
    background-color: rgba(245, 245, 245, 0.6);
    border-radius: 8px;
    background-size: 100% auto;
}

.logo {
    width: 100%;
}

.links-container {
    display: inline-block;
    overflow-wrap: break-word;
    min-width: 50px;
}

.flex-container {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}

.flex-item {
  padding: 5px;
  height: 150px;
  color: white;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
}

.waiver-bold-red {
    font-weight: bold;
    color: red;
}

.banner-main-image {
    max-width: 800px; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}

/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
}
.navbar-nav {
    flex-direction: row;
}
.nav-item {
    margin-left: 1rem;
}
.header-fixed-icons {
    margin-left: auto;
}
.header-icon-container {
    display: inline-block;
}
/* Menu Button Styles */
.menu-button {
    display: none;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-collapse {
        display: none !important;
    }
    .menu-button {
        display: block;
        margin-right: auto;
    }
    .navbar-nav {
        flex-direction: column;
    }
}
/* Ensure dropdown menus are positioned correctly */
.navbar-nav .dropdown-menu {
    position: absolute;
}

.padding-left-30 {
    padding-left: 30px;
}


/* Container for the location key */
.location-key-container {
    overflow: hidden;
}

/* Row that holds the location items */
.location-key-row {
    display: flex;
    flex-wrap: nowrap;             /* Prevent items from wrapping */
    justify-content: center;
    align-items: center;
}

/* Individual location items */
.location-item {
    display: flex;
    align-items: center;
    flex-shrink: 1;                /* Allow items to shrink */
    margin: 0 10px;                /* Horizontal margin between items */
}

/* Adjusting the icon size */
.location-icon {
    max-width: 30px;               /* Icon size reduced to half */
    height: auto;
}

/* Adjusting the font size */
.location-name {
    font-size: 12px;               /* Font size reduced to half */
    margin-left: 5px;              /* Space between icon and name */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .location-icon {
        max-width: 20px;
    }
    .location-name {
        font-size: 10px;
    }
}




/* marquee */
/* Marquee Styles */
.marquee {
    width: 100%;
    max-width: 1400px; /* Set maximum width */
    margin: 0 auto;     /* Center the marquee */
    height: 75px;       /* Set the marquee height */
    overflow: hidden;
    position: relative;
  }
  
  .marquee-content {
    display: flex;
    align-items: center;       /* Center images vertically if needed */
    flex-wrap: nowrap;         /* Prevent wrapping */
    will-change: transform;    /* Optimize for animations */
  }
  
  .marquee-content img {
    height: 75px; /* Image height matches marquee height */
    width: auto;  /* Width adjusts automatically */
    flex-shrink: 0;
  }
  
  .marquee-animate {
    animation: marquee-animation linear infinite;
  }
  
  @keyframes marquee-animation {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%); /* Adjust as needed for smooth scrolling */
    }
  }
  
  /* Pause on hover */
  .marquee-content:hover {
    animation-play-state: paused;
  }
  