
h1{
    color: rgb(77, 77, 244);
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
    font-size: 4 rem;
    font-weight: bold;

}
span{
    color:rgb(10, 10, 77);
}
#logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:rgb(240,240,208) ;
    font-weight: 1.5 rem;

}
img{
    height: 5%;
    width: 5%;
}
#header{
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: space-between;
    font-size:small;
}
#search-bar{
    width: 300px; /* Adjust width of the search bar */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem; 
}
a{
    color:rgb(4, 4, 40);
    font-size: medium;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
}
/* product styling */
.product-bar {
    background-color: #f4f4f4;
    padding: 10px;
    border: 1px solid #ddd;
   
  }
  #category{
    font-weight:bold;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  #category li {
    display: inline;
  }
  
  #category a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  #category a:hover {
    text-decoration: underline;
    color: #0073e6;
  }
  
  .product-bar ul {
    list-style: none;
    padding: 0;
  }
  
  .product-bar ul li {
    margin: 5px 0;
  }
  
  .product-bar ul li a {
    text-decoration: none;
    color: #333;
  }
  
  .product-bar ul li a:hover {
    color: #007bff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  #banner>img{
    width:100%;
    
  }
  /* HEADER */
  #header h4{
    color: #194370;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 24px;
    cursor: pointer;

  }
  #header {
    font-family: Arial, sans-serif;
    background-color:rgb(244, 244, 235) ;

  }
  /* header image */
  #header-image{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: rgb(244,244,244); */
   
  }
  #header-image img{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: #ccc;
    padding:50px;
    border-radius: 20%;
  }

  /* Style for product details */
  .details {
    margin: 5px 20px;
    font-size: 16px;
    color: #555;
    display: none; /* Initially hidden */
  }
.details ul li{
  list-style: none;
}
  /* Show details on hover */
  h4:hover + .details {
    display: block;
    
  }
  /* Main Gallery Styles */
main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: white;
  text-align: center;
  padding: 10px;
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
}

.card p {
  font-size: 14px;
  color: #555;
}
/* footer section  */
  footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    font-family: Arial, sans-serif;
  }

  .footer-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-section div {
    padding: 10px;
  }

  h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffcc00;
  }

  ul {
    list-style-type: none;
    padding: 0;
  }

  ul li {
    margin-bottom: 8px;
  }

  .app-links img {
    margin-right: 10px;
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
  }
