@import url('https://fonts.googleapis.com/css2?family=Grand+Hotel&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.active {
    color: #4FAEF0;
}

/* navbar mobile */
.left-0 {
    left: 0;
}

.left-100 {
    left: -100%;
}

/* hero section */
.hero {
    background-image: url('/assets/heroCover.jpg');
}

.hero::before {
    content: '';
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero>* {
    z-index: 5;
}

.cardContainer::-webkit-scrollbar {
    display: none;
    overflow-x: visible !important;
}

/* Sidebar */

::-webkit-scrollbar {
    position: fixed;
    width: 8px;
    background-color: transparent;
  }
  
  ::-webkit-scrollbar-track {
    background-color: transparent;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #4FAEF0;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #2984C3
  }


/* navbar rules */
@media (min-width: 640px) {
    #navbarDesktop {
        display: flex;
    }

    #navbarMobile,
    #mobileMenu {
        display: none;
    }
}

@media (max-width: 639px) {
    #navbarDesktop {
        display: none;
    }

    #navbarMobile {
        display: flex;
    }
}