*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    scroll-behavior: smooth;
}
.loading-screen {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/Banners/HomePage-Banner2.webp') no-repeat center center/cover;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
  }
  /* Logo Image */
  .loading-screen img {
    width: 200px; /* Adjust size */
    height: auto;
  }
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 2rem;
    background-color: rgb(255, 255, 255);
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.navbar{
    height: 50px;
    width: 100%;
    max-width: 1500px;
    margin-top:0px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li{
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: 400;
}


.nav-links a:hover{
    color: #D5A021;
}

.logo img{
    height: 100px;
    margin-top: 10px;
}

.navbar .nav-links{
    display: flex;
    gap: 4rem;
}

.navbar .toggle_btn{
    color: black;
    font-size: 21px;
    cursor: pointer;
    display: none;
}

.BookNow-btn{
    text-decoration: none;
    font-size:18px;
    font-weight: 400;
    background-color: #20856B;
    color: white;
    padding:10px 40px;
    border: solid 1px;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s; 
}

.BookNow-btn:hover{
    border: solid 1px;
    border-color: #20856B;
    background-color: white;
    color: black;
    
}

.BookNow-btn:active{
    scale: 0.95;
}
.dropdown-menu{
    position: absolute;
    right: 2rem;
    top: 50px;
    display: none;
    width: 300px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 5px;
    overflow: hidden;
    height: 0;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-menu.open{
    height: 250px;
}
.dropdown-menu li{
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .BookNow-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    border-color: #20856B;
    color: white;
    font-size: 14px;
    border-radius: 4px;
}

@media(max-width: 1440px){
    .nav-links a{
        font-size: 18px;
    }
    .navbar .nav-links{
        gap: 3rem;
    }
    .BookNow-btn{
        font-size:16px;
        padding:8px 35px;
    }
    
}

@media(max-width: 1024px){
    .navbar{
        height: 45px;
        width: 100%;
        max-width: 1500px;
        margin-top:0px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header { 
        padding: 0px 2rem;
        height: 45px;
    }
    .logo img{
        height: 75px;
        margin-top: 10px;
    }
    .nav-links a{
        font-size: 14px;
    }
    .navbar .nav-links{
        gap: 1.5rem;
    }
    .BookNow-btn{
        font-size:13px;
        padding:6px 26px;
    }
    
}

@media(max-width: 768px){
    .navbar{
        height: 38px;
        width: 100%;
        max-width: 1500px;
        margin-top:0px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header { 
        padding: 0px 2rem;
        height: 40px;
    }
    .logo img{
        height: 60px;
        margin-top: 10px;
    }
    .navbar .nav-links, .navbar .BookNow-btn{
        display: none;
    }
    .navbar .toggle_btn{
        display: block;
    }
    .dropdown-menu{
        display: block;
    }
    .dropdown-menu a{
        text-decoration: none;
        color: black;
        font-size: 15px;
        font-weight: 400;
    }
    .dropdown-menu a:hover{
        color: #D5A021;
    }
    .buttondropdown a:hover{
        color: black;
    }

}

@media(max-width: 500px){
    .navbar{
        height: 33px;
        width: 100%;
        max-width: 1500px;
        margin-top:0px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header { 
        padding: 0px 2rem;
        height: 35px;
    }
    .logo img{
        height: 50px;
        margin-top: 10px;
    }
    .dropdown-menu{
        left: 2rem;
        width: unset;
    }
    .toggle_btn i{
        font-size: 15px;
    }
}