@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jua&display=swap');

html, body{
    background-color:#FFF0D1;
    box-sizing: border-box;
    font-family: "Quicksand";
    font-style: normal;
    margin: 0px;
    overflow-x:hidden;
    width:100%;
}

.fullwidth{
    width:100vw;
}

/* CSS for the navigation bar --------------------------------------------------------------------------- */

.base-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #664343;
    z-index: 99;
    opacity: 100; 
    visibility:visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.nav-bar {
    display: flex;
    justify-content: center; /* Centers items horizontally */
    align-items: center; /* Centers items vertically */
    width: 100%;
    font-family: Jua;
    padding: 10px 0;
}

.nav-logo{
    position: absolute;
    top:-10%;
    left:5%;
}

.nav-bar ul > li {
    list-style: none;
}

.nav-bar ul {
    display: flex;
}

.nav-bar a {
    text-decoration: none;
}

.nav-bar .nav-links {
    gap: 10em;
}

.nav-bar .nav-links li > a {
    color: #FFF0D1;
    font-size: 25.8px;
    font-weight: 400;
}

.nav-bar .soc-links li > a{
    font-size: 40px;
    color: #fff0d1;
}

/* CSS for scrollbar --------------------------------------------------------------------------- */

    /* Scrollbar width */
::-webkit-scrollbar {
    width: 20px; /* Adjust width */
}

    /* Scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #795757; /* Light beige background */
}

    /* Scrollbar thumb (the moving part) */
::-webkit-scrollbar-thumb {
    background: #FFF0D1; /* Brown color */
}

    /* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FFF8EB; /* Darker brown */
}

/* CSS for the footer --------------------------------------------------------------------------- */

.taskbar {
    z-index:99;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #3B3030;
    display: flex;
    align-items: center;
    padding: 0 10px;
    padding-top:5px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);  
}

.taskbar-icons {
    display: flex;
    flex-grow: 1;
}

.taskbar-icons img {
    width: 32px;
    height: 32px;
    margin: 0 5px;
    cursor: pointer;
}

.system-tray {
    display: flex;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding-right:20px;
}

.system-tray img {
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

.time {
    margin-left: 10px;
    font-family: Jua;
}

/* CSS for tooltips --------------------------------------------------------------------------- */

    /* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
  }
  
    /* Tooltip text */
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #664343;
color: #fff0d1;
text-align: center;
padding: 5px 5px;
border-radius: 6px;

    /* Position the tooltip text */
position: absolute;
z-index: 1;
width: 120px;
bottom: 130%;
left: 50%;
margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

    /* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
}

/* CSS for website responsiveness ---------------------------------------------------------------------------*/

/* Should only be used for the footer and the navbar for this css file */

    /* (600px and below) */
@media only screen and (max-width: 600px) {
    
}

    /* (601px - 768px) */
@media only screen and (max-width: 768px) {
    
}

    /* (769px - 992px) */
@media only screen and (max-width: 992px) {
    
}

    /* (993px - 1200px) */
@media only screen and (max-width: 1200px) {
    
}