/* === Mobile Styling (max-width: 768px) === */

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #f8f8f8;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #111;
    height: 60px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    max-width: 150px;
}

.header-icon {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

#openMenu {
    display: block;
}

#closeMenu {
    display: none;
}

.mobile-cart-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    color: white;
    text-decoration: none;
    z-index: 101;
}


.mobile-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 260px;
    height: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(6px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu ul li {
    margin: 50px 0;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.mobile-menu ul li a:hover {
    text-decoration: underline;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #ff3c7f;
    margin-bottom: 20px;
    text-align:center;
}

h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    color: #fba300;
}

p {
    margin-bottom: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #121212;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 60px;
}


@media screen and (max-width: 768px) {
    .header-buttons,
    nav {
        display: none !important;
    }
  .image-background img {
  display: none;
  
}

  #hero-bg {
    background-image: url('/nc_assets/img/background/HolyShots-Mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    margin-top: 100px;
    height: 600px;
    opacity: 0;
    animation: fadeInBg 3s ease-out forwards;
  }

  @keyframes fadeInBg {
    to {
      opacity: 1;
    }
  }
  
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .social-media img {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

}

