/* main header styles */
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #b0a7d4;
    padding: .5em;
}

/* main body styles */
body{
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 18px;
    font-family: "Roboto Slab", Arial, Tahoma, serif;
}

/* img styles */
img{
    max-width: 81px;
    display: block;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  color: #333;
  background-color: transparent;
  transition: all 0.3s ease;
}
/*
.active{
    color: #201cc4;
    font-weight: bold;

}

.logo{
    transition: transform 0.5s ease;
    transform-origin: left;
}

.logo:hover{
    transform: scale(1.1);
}

.active_home {
  width: 80px;
  overflow: hidden;
}

.active_home img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
*/


/* Hover effect */
.nav-link:hover {
  /* background-color: #e0e0e0; */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Clicked (active) effect */
.nav-link:active,
.nav-link:focus {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

/* Current page indicator */
.nav-link.active {
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.navbar {
  display: flex;
  height: 60px;
  background-color: #f5f5f5;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
}

.nav-link {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Hover effect: each link gets its own box */
.nav-link:hover {
  background-color: #ab9ac9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Active or clicked */
.nav-link:active,
.nav-link:focus,
.nav-link.active {
  background-color: #9629ff;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}




/* other navbar links */
nav li{
  display: inline;  
  padding: .5em;
  text-align: left;
}

nav li a{
    text-decoration: none;
    font-weight: bold;
    color: white;
    font-size: 1.5em;
}