  header{
    width: 100%;
    height: 85px;

    border-bottom: 0.5px #e8e8e8 solid;
    display: flex;
   justify-content: space-between;
   position: relative;
}
header #logo{
    max-width: 100%;
    height: auto;
    max-height: 55px;
    margin:15px 0px 5px 20px;
    float: left;
    position:absolute;
   
}
header nav{
    margin: 20px 10px 5px 20px;
    display: block;
    float: right;
}
header nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding-right: 10px;
    font-weight: 400;
}
header nav ul li{
   padding-left: 4px;
    padding-top: 8px;
   
}
header nav ul #liLogin{
  padding-top: 7px;
  padding-right: 4px;
  display: flex;
}
header nav ul #liLogin #login{
    
    height: 27px;

     
  text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

  
   
}
header nav ul #liLogin #login a{
    color:white;
}
header nav ul li a{
    color: black;
    text-decoration: none;
}
 header  #btnSearch{
      padding: 5px 13px 5px 13px;
      border-radius: 15px;
      border: 0.2px solid lightgray;
      background-color:rgb(253, 247, 236);
        
      box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.333);
      font-weight: 250;
      font-size: small;
      cursor: pointer;
      height: 30px;
      margin:17px 30px 0px 0px;
   
      
    }
.dropdown{
    display: none;
    float: right;
    margin: 10px 10px 5px 0px;
    position: relative;
    cursor: pointer;

}

@media (max-width: 768px) {


 header{
  height: 75px;
}
 
    .dropdown{
        display: block;
        font-size: larger;
        margin: 13px 10px 5px 0px;
    }
    .fa-bars-staggered{
        font-size: larger;
        color: #00bf63;
        margin: 10px 5px 5px 0px;
    }
    header #logo {
        margin-top: 18px;
        max-height: 40px; /* Adjust max height for smaller screens */
    }
}

  body{
        font-family: 'Segoe UI', sans-serif;
}
    h1, h2 {
      font-weight: 700;
    }
    .emotion-card, .brand-card {
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .emotion-card:hover, .brand-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.15);
    }
    .brand-logo {
      max-height: 80px;
      object-fit: contain;
      transition: opacity 0.3s;
    }
    .brand-logo:hover {
      opacity: 0.8;
    }
      .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
 color: #434343;
  }
