body{
    margin:0px;
    padding: 0px;
    background-color: yellow;
    background-image: url("img/bg_pattern.jpg");
    background-repeat: repeat;
    background-size: cover; /* make it cover the entire element */
}

* {
    box-sizing: border-box;     
    margin: 0;
    padding: 0;
}

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: red;
    position: relative;
    width:100%;
    border-bottom: 5px solid darkred;
}

.burger_logo{
   width: 60px;
   height: auto;
   z-index: 1000;
    
}
.cartIcon{
    width: 60px;
    height: auto;
    margin-top: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
    position: relative;
    top: -3px;

}
.burgermenu{
        width: 40px;
        height: auto;
        cursor: pointer;
        z-index: 1000;
        transition: transform 0.3s ease;

    }
.burgermenu:hover {
      transform: scale(1.1);
    }
.options {
    position: absolute;
    top: 100%;        
    left: 0;
    right:0;
    background-color: red;
    list-style: none;
    display: none;
    flex-direction: column;
    color: white;
    display: none; /* hide by default */
    z-index: 999;
    
}
.options a:link{
  color:yellow;
  text-decoration: none;
}
.options a:visited{
  color:yellow
}
 .options.active {
      display: flex;
    }

    .options li {
      border-bottom: 1px solid rgba(247, 244, 34, 0.995);
    }

   

    .options li h2 {
      color: yellow;
      padding: 15px 20px;
      margin: 0;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .options li h2:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
   .topic{
     margin: 10px auto; 
        width:50%;
        text-align: center;
        border-radius: 50px;
        background-color: yellow;  
   }
    /* Title image */
    .title {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin-top: 60px;
    }

    /* Tablet styles (768px+) */
    @media screen and (min-width: 768px) {
      .navbar {
        padding: 20px 30px;
      }

      .burger_logo {
        width: 80px;
      }

      .burgermenu {
        display: none; /* Hide hamburger menu on larger screens */
      }

      .options {
        position: static;
        display: flex !important;
        flex-direction: row;
        background-color: transparent;
        box-shadow: none;
        gap: 20px;
      }

      .options li {
        border-bottom: none;
      }

      .options li h2 {
        padding: 10px 15px;
        font-size: 16px;
        border-radius: 5px;
      }

      .options li h2:hover {
        background-color: rgba(255, 255, 255, 0.2);
      }

      .title {
        margin-top: 20px;
      }
      .topic{
        width: 20%;
        margin-top: 20px;
        margin-bottom: 20px;
      }
    }

    /* Desktop styles (1024px+) */
    @media screen and (min-width: 1024px) {
      .navbar {
        padding: 25px 40px;
      }

      .burger_logo {
        width: 100px;
      }

      .options {
        gap: 30px;
      }

      .options li h2 {
        font-size: 18px;
        padding: 12px 20px;
      }

      .title {
        margin-top: 30px;
      }
    }

    /* Large Desktop styles (1200px+) */
    @media screen and (min-width: 1200px) {
      .navbar {
        padding: 30px 50px;
      }

      .options {
        gap: 40px;
      }

      .options li h2 {
        font-size: 20px;
        padding: 15px 25px;
      }
    }

    











