:root {
    --small-text: 14px;
    --large-text: 21px;
    --border-radius: 15px;
    --title-size: 47.12px;
    --header-size: 29.12px;
    --white: #ffffff;
    --light-blue: #7dd8ff;
    --dark-blue: #0093ed;
    --orange: #fe6d00;
    --black: #282a2b;
}



header {
    display: flex;
    margin: 0 144px 0 144px;
    justify-content: space-between;
    height: 100px;
}

#mobile-nav {
    display: none;
}

nav {
    display: flex;
    background-color: var(--dark-blue); 
    border-radius: var(--border-radius);
    color: var(--white);
    align-items: center;
    height: 70%;
    align-self: center;
    

}

nav a {
    text-decoration: none;
    color: white;
    font-size: var(--large-text);
    font-weight: bold;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


.dropbtn {
    background-color: var(--dark-blue);
    color: white;
    font-size: var(--large-text);
    font-weight: bold;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: background-color 0.3s;
}

.dropbtn:hover {
    background-color: var(--light-blue);
    background-color: rgba(255, 255, 255, 0.2);
}


.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 10px;
}

.dropdown-content a {
float: none;
color: black;
text-decoration: none;
display: block;
text-align: left;
border-radius: 10px;
}

.dropdown-content a:hover {
    background-color: var(--light-blue);

}

.dropdown:hover .dropdown-content {
    display: block;
  }
  
.profile-icon {
    height: 50%;
    width: 50px;
    background-color: #ccc;
    border-radius: 50%;
    align-self: center;
    display: flex;
    justify-content: center;
}

.profile-icon a {
    align-self: center;
    color: var(--dark-blue);
}


/* 
* Footer
*/

footer {
    display: flex;
    justify-content: space-between;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 20px ;
    bottom: 0;
    align-items: center;
    font-size: var(--large-text);
}

footer img  {
    width: 20%;

    object-fit: cover;
    border-radius: var(--border-radius);
}

.footer-links {
    display: flex;
    flex-direction: column;
    
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
}

footer h2 {
    font-size: var(--large-text);
}


@media (max-width:1080px ) {

    header {
        margin: 0 50px 0 50px;
    }
    

#mobile-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 80px;
    background-color: var(--dark-blue);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

#mobile-nav a {
    flex: 1;
    text-align: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    padding: 10px;
}

#mobile-nav .dropdown {
    flex: 1;
    text-align: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    padding: 10px;
    position: relative;
}

#mobile-nav .dropdown button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    padding: 10px;
}

#mobile-nav .dropdown-content {
    display: none;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    padding: 10px;
    border-radius: var(--border-radius);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#mobile-nav .dropdown:hover .dropdown-content {
    display: block;
}

#mobile-nav .dropdown-content a {
    display: block;
    padding: 8px 0;
    color: var(--white);
    text-decoration: none;
}

#mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}



#desktop-nav {
    display: none;
}


footer {
    display: none;
}


}