/* Reset default list styles and remove anchor underlines */

.nav-list {
    list-style: none;
    padding: 20px 0;
    /* Increased padding for a thicker navigation bar */
    margin: 0;
    background-color: r#fafbfe;
    /* Transparent grey background */
    display: flex;
    /* Display menu items horizontally */
    justify-content: flex-start;
    /* Adjust menu items to the left */
    align-items: center;
    /* Center vertically */
    position: relative;
    /* Add relative positioning */
    padding-left: 120px;
    /* Add more left padding for extra space */
}

body {
    font-family: "ALK Sanet", sans-serif;
}

.nav-list::after {
    content: "";
    /* Create an empty pseudo-element for the line */
    display: block;
    /* Make it a block element */
    width: 100%;
    /* Full width */
    height: 1px;
    /* Line height/thickness */
    background-color: #ccc;
    /* Grey line color */
    position: absolute;
    /* Position at the bottom */
    left: 0;
    /* Align to the left */
    bottom: 0;
    /* Align to the bottom */
}

.nav-list>li {
    transition: all 2s ease-in-out;
    position: relative;
    margin-right: 40px !important;
    /* Reduced spacing between menu items */
}

.nav-list li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    border-radius: 5px;
    bottom: -8px;
    left: 0;
    right: 0;
    background-color: #a74200;
    margin: 0 auto;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-list li a:hover::before {
    visibility: visible;
    width: 90%;
}

.nav-list li a:hover {
    color: #a74200;
}

.nav-list>li a:hover {
    text-decoration: none !important;
}

.nav-list li a {
    position: relative;
    text-decoration: none;
    color: #eb6209;
    transition: all 2s ease-in-out;
    font-size: 18px;
    /* Increase text size */
    font-weight: bold;
    /* Make text bold */
    transition: color 0.3s;
    /* Smooth color transition on hover */
}


/* .nav-list a:hover {
    color: #a74200;    
    font-size: 19px;  
} */


/* Style the Language dropdown */

.language-dropdown {
    position: relative;
}

.language-options {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fafbfe;
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
    z-index: 1000;
    /* Increase the z-index value */
}

.language-dropdown:hover .language-options {
    display: block;
    /* Show the dropdown on hover */
}

.language-options li {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 5px;
    /* Add spacing between language options */
}

.language-options a {
    color: #333;
    /* Default text color */
    text-decoration: none;
    font-weight: bold;
    /* Make text bold */
    transition: color 0.3s;
    /* Smooth color transition on hover */
}

.language-options a:hover {
    color: #0074d9;
    /* Blue color on hover */
}


/* Style for the mobile menu icon */

.mobile-menu-icon {
    display: none;
    /* Hide the mobile menu icon by default */
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1200;
    /* Ensure it's above other content */
}


/* Style for the mobile menu icon */

.mobile-menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}


/* Style for the top line element (navbar separator) */

.top-line {
    background-color: rgba(128, 128, 128, 0.5);
    /* Grey background color */
    height: 1px;
    /* Line height/thickness */
    width: 100%;
    /* Full width */
    position: absolute;
    /* Position at the top */
    top: 0;
    /* Align to the top */
    left: 0;
    /* Align to the left */
    z-index: 1;
    /* Ensure it's above other content */
}


/* Style for the rest of the navbar content */

.mobile-navbar {
    position: fixed;
    top: 0;
    left: -250px;
    /* Hide off the screen to the left */
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    overflow-y: auto;
    padding-top: 60px;
    transition: left 0.3s;
    /* Add a transition effect for smooth animation */
}


/* Style for the vertical navbar links */

.mobile-navbar ul {
    list-style: none;
    padding: 0;
}

.mobile-navbar ul li {
    padding: 15px;
    text-align: center;
}

.mobile-navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: color 0.3s;
}

.mobile-navbar ul li a:hover {
    color: #0074d9;
}

@media (max-width: 768px) {
    /* Hide the regular navigation bar */
    .nav-list {
        display: none;
    }
    /* Display the mobile menu icon */
    .mobile-menu-icon {
        display: block;
    }
}


/* Center the logo vertically and horizontally */

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Adjust the logo size while preserving its aspect ratio */

.logo-warwera {
    max-width: 100px;
    /* Adjust the maximum width as needed */
    height: auto;
    /* Automatically adjust height to maintain aspect ratio */
}


/* Add margin to the right of the logo image */

.logo-warwera {
    margin-right: 20px;
    /* Adjust the margin as needed */
}


/* Style for the vertical language options */

.vertical-language-options {
    position: relative;
}

.vertical-language-options ul {
    list-style: none;
    padding: 0;
}

.vertical-language-options li {
    text-align: center;
}

.vertical-language-options a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: color 0.3s;
}

.vertical-language-options a:hover {
    color: #0074d9;
}


/* Style for the language label in the vertical menu */

.language-label {
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
}


/* Style for the logo container on the main page */

.main-logo-container {
    text-align: center;
    padding: 20px 0;
    /* Adjust padding as needed */
}


/* Initially hide the logo */

.hidden {
    display: none;
}


/* Show the logo on small screens (e.g., screens with a max width of 768px) */

@media (max-width: 768px) {
    .main-logo-container {
        display: block;
        /* Show the logo */
    }
}


/* Existing styles for mobile navbar */

.language-selector-mobile {
    display: flex;
    align-items: center;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
}

.language-list-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 5px;
    display: flex;
    /* Display the list items in a row */
    position: absolute;
    top: 100%;
    right: 50%;
    /* Center the list horizontally */
    transform: translateX(50%);
    z-index: 1;
}

.language-list-mobile li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    /* Display items in a row */
    align-items: center;
}

.language-list-mobile li img {
    width: 32px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
}

.language-list-mobile li:hover {
    background-color: #555;
}

.language-selector {
    position: absolute;
    right: 14px;
    display: flex;
    align-items: center;
}

.language-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    /* Position below the header */
    right: 0px;
    /* Adjust the right distance */
    /* background-color: #333; */
    /* border: 1px; */
    /* border-radius: 5px; */
    display: none;
    z-index: 1;
}

.language-list li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    /* Make the items inside the li flex items */
    align-items: right;
    /* Center the items vertically */
}

.language-list li img {
    margin-left: 5px;
    /* Add margin to the left of the image */
}

.language-list li:hover {
    /* background-color: #555; */
    color: #eb6209;
    /* Blue color on hover */
    font-size: 16px;
}

.language-selector img {
    width: 32px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
}