
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  background-image: url("/assets/images/Our background.png");
  background-size: cover;              /* stretches to cover full screen */
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100%;
}



.width {  
  margin: auto;
  width: 80%;
  border: solid 1px;
  border-radius: 10px;
  width: center;
}

.mutant {
  position: fixed;
  top: auto;
  bottom: 0;
  opacity: 0.5;
}
.navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  top: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  z-index: 1000;
}


.navbar a, .dropdown .dropbtn {
  font-size: 16px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.5s ease;
  border-radius: 8px;
}


.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red; 
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 12px;
}

.dropdown-content a {
  float: none;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #575656;
}

.dropdown:hover .dropdown-content {
  display: block;
}

h1 {
  color: purple;
  border: rgb(73, 172, 64) solid 1px;
  border-radius: 5px;
  background-color: rgb(72, 172, 64);
  width: fit-content;
  margin: 80px auto 0 auto;
  
}

h2 {
  color: purple;
  border: rgb(72, 172, 64) solid 1px;
  border-radius: 5px;
  background-color: rgb(72, 172, 64);
  width: fit-content;
  margin: auto;
}

p {
  color: rgb(72, 172, 64);
  border: purple solid 1px;
  border-radius: 5px;
  background-color: purple;
  width: fit-content;
  margin: auto;
  font-size:x-large;
}

#cart-container {
  position: fixed;
  top: 150px;
  right: 10px;
  background: #282828;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 0 12px #f314ff;
  z-index: 9999;
  color: #f314ff;
}

.cart-link {
  background: #3fff43;
  color: black;
  padding: 6px 12px;
  border-radius: 6px;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
}

.cart-link:hover {
  background: #2ecc71;
}

h4 {
  color: white
}



.content {
  min-height:auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: normal;
}


@media (max-width: 768px) {
  
  body {
    background-image: url('/assets/images/mobileBCKG.png'); /* replace with correct path */
    background-repeat: repeat-y;
    background-size: cover; /* Or 'contain' if you want it more exact */
    background-position: center top;
    background-attachment: scroll;
    background-color: #154734; /* solid green fallback */
  }

#cart-container {
    position: fixed;
    top: auto;
    bottom: 5px;
    left: 0;
    right: 0;
    background: #282828;
      padding: 10px 15px;
      border-radius: 10px;
      box-shadow: 0 0 12px #f314ff;
      z-index: 9999;
      color: #f314ff;
    }

  .cart-link {
    margin-left: 20px;
  }
  
.navbar a, .dropdown .dropbtn {
    font-size: 14px;
    padding: 10px 12px;
  }

  .dropdown-content {
    min-width: 140px;
  }
  
  h1, h2 {
    font-size: 24px;
    padding: 10px;
    margin: 20px auto;
    width: 90%;
  }


  .width {
    width: 90%;
    font-size: 16px;
    

  }

  .mutant {
    position: fixed;
    top: 15%;
    left: 65%;
    width: 150px;
    height: 220px;
  }
  
}
