/*  Nav bar styles  */

.gradient-1     {
background-color: #0A2463
}
* {
    margin: 0px;
    padding: 0px;
    font-family: roboto, 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

.nav-bar-con {
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}

#logo {
    height: 70px;
    width: 70px;
}

.site-name {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 40%;
}

.site-name a {
    text-decoration: none;
    color:  white;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 60px;
    font-family:"Lobster", sans-serif;
}

.nav-bar-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 50%;
}

.nav-bar-items a {
    text-decoration: none;
    color:white;
    font-size: 1rem;
}

.nav-bar-con a:hover {
    color: #FFD166;
    transition: 1s;
}


.lang-btn {
    border: solid white 1px;
    margin-right: 30px;
    background-color: #0A2463;
}

.lang-btn:hover {
    color: #0a2463;
    background-color: #FFD166;
    transition: 1s;
}


/* Hamburger menu icon */
.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Dropdown menu styles - UPDATED */
.dropdown-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh; /* Changed from height: 35% */
    background-color: #0A2463;
    color: white;
    z-index: 100;
    padding: 80px 20px 40px; /* Increased top padding */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed from center */
    gap: 25px; /* Increased gap */
    overflow-y: auto; /* Allow scrolling if needed */
}

.dropdown-menu a {
    display: block;
    margin: 15px 10px; /* Increased margin */
    font-size: 1.3rem; /* Slightly larger font */
    color: white;
    text-decoration: none;
    padding: 12px 20px; /* Added padding */
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border: 2px solid transparent;
}

.dropdown-menu a:hover {
    color: #FFD166;
    background-color: rgba(255, 209, 102, 0.1);
    border-color: #FFD166;
    transform: translateY(-2px);
    transition: 0.3s;
}

.close-btn {
    position: absolute;
    top: 25px; /* Increased from 20px */
    right: 25px; /* Increased from 20px */
    font-size: 2.2rem; /* Slightly larger */
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #FFD166;
    color: #0A2463;
    transform: rotate(90deg);
}

/* Show the hamburger menu and hide navigation items on small screens */
@media screen and (max-width: 1000px) {
    .nav-bar-items {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
}



.Hero-con {
    background-size:cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    width: 100%;
    padding-top: 50px;
}

.Hero-title {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 4rem;
    padding-left: 35px;
    padding-top: 80px;
    padding-bottom: 30px;
}

.Hero-p {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
}

span {
    color: #0A2463;
    font-size: 3rem;
    font-weight: 600;
    font-family:"Lobster", sans-serif;
}

@media screen and (max-width:425px) {
    .site-name {
        padding-right: 20px;
    }
    .hamburger-menu {
        padding-right: 20px;
    }
}

/* booking link styles */

.nav-bar-items a:last-child {
    border: 1.5px solid white;
    border-radius: 7px;
    padding:0.50rem 0.75rem;
    background-color: #FFD166;
    color: #0A2463;
    font-weight: 600;
}

.nav-bar-items a:last-child:hover {
    background-color: white;
    color: #0A2463;
    transition: 1s;
}



/* Extra small devices fix */
@media screen and (max-height: 500px) {
    .dropdown-menu {
        padding: 60px 15px 30px;
        gap: 15px;
        justify-content: flex-start;
    }
    
    .dropdown-menu a {
        font-size: 1.1rem;
        margin: 8px 5px;
        padding: 8px 15px;
    }
    
    .close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 320px) {
    .dropdown-menu a {
        font-size: 1rem;
        max-width: 250px;
    }
}