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;
        margin-bottom: 50px;  
        
        
        
    }
    .about{
        background-color: yellow;
        opacity: .9;
    
        
    }
.desc{
    line-height: 2;
}
.Gallery{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
 
}
.slide-container {
  margin: auto;
  width:70%;
  margin-bottom: 50px;
  margin-top: 50px;
}
.slide {
  display: none;   /* hide all images by default */
  width: 100%;     /* images fill the container width */  
  border-radius: 15px ;
  border: red solid;
  background-color: red;
}
.arrow1{
  margin-left:10px;
  background-color: rgba(0,0,0,0.9);
  border-radius: 5px;
  padding: 5px;
}
.arrow2{
  margin-right:10px;
  background-color: rgba(0,0,0,0.9);
  border-radius: 5px;
  padding: 5px;
}
.prev, .next {
  background: rgba(0,0,0,0.5); /* dark transparent circle */
  color: white;
  border-radius: 50%;
  cursor: pointer;
}
.next { right: 20px; }  /* move next button to right side */
.prev { left: 50px; }   /* move prev button to left side */






    /* 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);
      }

      .arrow1{
        margin-left: 30px;
      }
      .arrow2{
        margin-right:30px;
      
      }
      .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;
      }
      .arrow1{
        margin-left: 50px;
      }
      .arrow2{
        margin-right: 50px;
      }
     
    }

    /* 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;
      }
      .arrow1{
        margin-left: 70px;
      }
      .arrow2{
        margin-right:70px;
      
      }
    }

    











