/* Base styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Manrope', sans-serif;
    background-color: transparent;
  }
  
  .topnav {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    align-items: center;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    z-index: 10;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 120%;
    left: -60px;
    background-color: transparent;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.8);
    padding: 10px 0;
    border-radius: 6px;
    min-width: 150px;
    z-index: 1000;
  }

  .navlinks {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
    left: -80px
  }

  .shop-content {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-image: url('../assets/shopbackground.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .coming-soon {
    font-size: 3rem;
    color: #FFF0C8;
    text-shadow: 0 0 15px #ffae42, 0 0 40px #ffae42;
    animation: flicker 1.1s infinite alternate;
  }

  @keyframes flicker {
    0% { opacity: 1; text-shadow: 0 0 10px #ffae42, 0 0 30px #ffae42; }
    50% { opacity: 0.85; text-shadow: 0 0 20px #ffae42, 0 0 50px #ffae42; }
    100% { opacity: 1; text-shadow: 0 0 15px #ffae42, 0 0 40px #ffae42; }
  }
  
.hamburger {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 11;
}

@media (max-width: 768px) {
  body, html {
    overflow-x: hidden;
  }
  
  .shop-content {
    width: 100vw;
    max-width: 100vw;   
  }

  .hamburger {
    display: block;
  }

  .navlinks {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    left: 0px;
    padding: 20px 40px;
    gap: 20px;
  }

  .navlinks.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    box-shadow: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .topnav {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: -webkit-fill-available;
    z-index: 10;
  }
}
