/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #f9d342;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* =========================
   HEADER / NAVIGATION
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #111;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, padding 0.3s;
}

header.scrolled {
  padding: 10px 40px;
  background: #000;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #f9d342;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #f9d342;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: white;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 100vh; /* fullscreen */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(-45deg, #000, #111, #000, #111);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  color: #f9d342;
  padding: 0 20px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1.5s forwards 0.5s;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1.5s forwards 1.2s;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  color: #000;
  background: #f9d342;
  opacity: 0;
  animation: fadeIn 1.5s forwards 2s;
}

.hero-btn:hover {
  background: white;
  color: black;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   PROMO SECTION
========================= */
.promo {
  background: #111;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #f9d342;
  border-bottom: 1px solid #f9d342;
}

.promo h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.promo p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* =========================
   NEW DROPS / PRODUCT CAROUSEL
========================= */
.products {
  padding: 60px 20px;
  text-align: center;
}

.products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* Carousel wrapper */
.product-carousel-wrapper {
  position: relative;
}

/* Scrollable carousel */
.product-carousel {
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}

.product-carousel::-webkit-scrollbar {
  height: 8px;
}

.product-carousel::-webkit-scrollbar-thumb {
  background: #f9d342;
  border-radius: 4px;
}

.product-carousel::-webkit-scrollbar-track {
  background: #111;
}

/* Horizontal grid */
.product-carousel .product-grid {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap; /* prevent wrapping */
}

/* Individual product cards */
.product-card {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(249, 211, 66, 0.4);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.price {
  font-weight: bold;
  margin: 10px 0;
  color: #f9d342;
}

.product-card .btn {
  display: inline-block;
  margin-top: 10px;
  background: #f9d342;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.product-card .btn:hover {
  background: white;
  color: black;
}

/* Shop All button */
.shop-all-wrapper .btn {
  background: #f9d342;
  color: #000;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.shop-all-wrapper .btn:hover {
  background: white;
  color: black;
}

/* =========================
   CAROUSEL ARROWS
========================= */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f9d342;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
}

.carousel-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

/* =========================
   HERO SCROLL INDICATOR
========================= */
.scroll-down {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.scroll-down span {
  display: block;
  width: 4px;
  height: 10px;
  background: #f9d342;
  border-radius: 2px;
  animation: scrollAnim 1.5s infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.3; }
}

/* =========================
   HOME ABOUT TEASER
========================= */
.home-about {
  text-align: center;
  padding: 60px 20px;
}

.home-about a {
  color: #f9d342;
  text-decoration: underline;
}

/* =========================
   ABOUT PAGE
========================= */
.about {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

/* =========================
   CONTACT PAGE
========================= */
.contact {
  max-width: 600px;
  margin: 60px auto;
  padding: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #f9d342;
}

.contact button {
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .product-card { width: 45%; }
}

@media (max-width: 480px) {
  .product-card { width: 90%; }
  .carousel-arrow { width: 35px; height: 35px; font-size: 1.5rem; }
}

/* =========================
   SHOP / PRODUCT GRID
========================= */
.products .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-items: center;
  padding: 20px 0;
}

/* Individual product cards */
.product-card {
  background: #111;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%; /* allow grid to control width */
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(249, 211, 66, 0.4);
}

/* Product button */
.product-card .btn {
  display: inline-block;
  margin-top: 10px;
  background: #f9d342;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.product-card .btn:hover {
  background: white;
  color: black;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products .product-grid { gap: 20px; }
}

@media (max-width: 480px) {
  .products .product-grid { gap: 15px; }
}

