/* CSS Styles for Top Navigation Bar */

/* Import Montserrat font with specific weight */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* Apply styles to all elements within the document */
* {
    box-sizing: border-box;
    margin: 0;
    padding:0;
}

/* Styles for navigation links and dropdown button */
.nav_links li a, .dropbtn{
    font-family: "Montserrat", sans-serif;
    font-weight: 550;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 5%;
    box-sizing: border-box;
    margin: 0;
    background-color: #24252A;
    width: 100%;
}

.website_name {
    display: flex;
    float: left;
    align-items: center;
}

/* Styles for the logo image */
.website_name img {
    padding: 5px;
    width: 200px;
    height:auto;
}
.website_name h3 {
    padding: 0px 10px;
    margin-left: 5px;
    font-family: "Montserrat", sans-serif;
    /* font-family: 'Patrick Hand', cursive;  */
    color:white;
}

/* Styles for navigation links list */
.nav_links {
    list-style: none;
}

.nav_links li {
    
    display: inline-block;
    padding: 15px 0;
    margin-left: 10px;
    margin-right: 10px;

    position: relative;
}

/* Styles for navigation links */
.nav_links li a {
    transition: all 0.3s ease 0s;
    text-transform: uppercase;
    text-align: center;
}

/* Styles for navigation links hover effect */
.nav_links li a:hover {
    color: #0088a9;
}


/* Styles for navigation links underline animation */
.nav_links li a::before {
    content:'';
    display: block;
    height: 5px;
    width: 0%;
    background-color: #e75100;
    position:absolute;
    top: -6px;
    transition: all ease-in-out 250ms;   
}

/* Styles for navigation links hover underline animation */
.nav_links li a:hover::before {
    width:100%
}

/* Styles for active navigation link */
.nav_links li a.active {
    color:  #e07001;
}

.dropdown .dropbtn {
    padding: 9px 30px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.dropdown:hover .dropbtn {
    background-color: rgba(0,136,169,0.6);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
    order: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content button{
    border: none;
    float: none;
    width: 100%;
    /* color: black; */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

/* Styles for dropdown content button hover effect */
.dropdown-content button:hover {
    background-color: #ddd;
}