/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* Top Bar */
.top-bar {
  background: #111;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #222;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.marquee p {
  color: white;
  font-size: 12px;
  line-height: 30px;
  display: inline-block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.nav-links li a:hover {
  color: grey;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    height: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .nav-links.open {
    height: 200px; /* expands menu */
  }

  .hamburger {
    display: flex;
  }
}



/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 2000; /* Make sure it's on top */
  }

  .nav-links.open {
    max-height: 300px; /* enough to show all links */
  }

  .hamburger {
    display: flex;
  }
}

/* Hero */
.hero {
  height: 80vh;
  background: url("../user_img/bg_black.webp") no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.overlay {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
}

.overlay h1 {
  font-size: 70px;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  margin: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}


.shop-title {
  text-align: center;
  margin: 50px 0 30px;
  padding: 20px;
  position: relative;
}

.shop-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.shop-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: black; /* accent color */
  margin: 10px auto 0;
  border-radius: 3px;
}

.shop-title p {
  font-size: 16px;
  color: #666;
  margin-top: 8px;
}

/* Products Section */
.products {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 90px 50px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.product {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  scroll-snap-align: start;
}

.product img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.product h3 {
  font-size: 14px;
  margin: 15px 0 5px;
}

.product p {
  font-size: 14px;
  color: #444;
}

/* Banner Section with 2 images */
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  padding: 20px 0;
}

.banner img {
  width: 50%;
  height: auto;
  border-radius: 8px;
}

/* Bottom Marquee */
.bottom-marquee {
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  margin: 50px;
}

.bottom-marquee .marquee {
  display: inline-block;
  animation: marquee 12s linear infinite;
}

.bottom-marquee p {
  color: black;
  font-weight: bold;
  font-size: 100px;
  line-height: 100%;
  display: inline-block;
}

/* Banner */
.banner1 {
  width: 100%;
  margin-top: 40px;
}

.banner1 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Review Logos Section */
.review-logos {
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 40px 20px;
  flex-wrap: wrap;
  text-align: center;
}

.review-logos .logo-item {
  flex: 1 1 200px;
  margin: 15px;
}

.review-logos h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
}

.review-logos p {
  font-size: 14px;
  color: #000;
  max-width: 250px;
  margin: 0 auto;
}

/* Footer Dark Grey Card */
.footer-card {
  background: #111;
  color: #fff;
  padding: 40px 20px;
  margin-top: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Social Icons */
.footer-column.social {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

.footer-column.social a {
  color: #fff;
}

.footer-column.social a:hover {
  color: #aaa;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* ✅ Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
  }

  .products {
    gap: 30px;
    padding: 50px 20px;
  }

  .bottom-marquee p {
    font-size: 50px;
    line-height: 60px;
  }

  .banner {
    flex-direction: column;
  }

  .banner img {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    font-size: 16px;
  }

  .nav-links {
    display: none; /* optional: hide menu */
  }

  .nav-right {
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    height: 60vh;
  }

  .overlay h1 {
    font-size: 28px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .products {
    gap: 20px;
    padding: 30px 10px;
  }

  .product {
    width: 150px;
  }

  .product h3,
  .product p {
    font-size: 12px;
  }

  .bottom-marquee {
    margin: 20px 0;
  }

  .bottom-marquee p {
    font-size: 22px;
    line-height: 28px;
  }

  .review-logos {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column.social {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }

  .overlay h1 {
    font-size: 22px;
  }

  .btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .product {
    width: 120px;
  }

  .bottom-marquee p {
    font-size: 18px;
  }
}
