body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: #333;
    background-color: #090b11;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.navbar-brand {
    font-size: 1.8em;
    font-weight: 600;
    color: white;
}
.navbar-brand:hover {
    font-size: 1.8em;
    font-weight: 600;
    color: orangered;
}
.container {
    width: 1200px !important;
}
@media(max-width: 767px) {
    .container {
        width: 23rem !important;
   }
    .navbar-brand {
        font-size: 1.5em;
        font-weight: 600;
        color: white;
   }
    .nav-link {
        font-size: 1.3em;
   }
}
.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5) !important;
}
.navbar-nav .nav-link {
    color: white;
   /* Readable text color */
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: orangered !important;
   /* Highlight on hover */
}
.btn-book {
    background-color: orangered;
    color: white;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    transition: transform 0.3s;
}
.btn-book:hover {
    background-color: white;
    color: #333;
}
.btn-demo {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: solid 1px orangered;
    border-radius: 25px;
    padding: 2px 10px;
    font-weight: 600;
    transition: transform 0.3s;
}
.btn-demo:hover {
    background-color: white;
    color: #333;
}
.text-orange {
    color: orangered 
}
.justify {
    text-align: justify;
}
.blockquote-footer::before {
  content: none !important;
}
