/* Reset */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  display: flex;
  justify-content: space-between;     /* this + flex-grow on center creates equal spacing */
  align-items: center;

  padding: 1rem 5%;                 /* vertical padding = space above/below items */
  padding-top: 1rem;                /* controls distance from very top edge */
  padding-bottom: 1.2rem;



  box-sizing: border-box;
}

.logo-img {
  height: 50px;                       /* adjust to your logo */
  width: auto;
  display: block;
}

/* Hamburger */
.hamburger {
  display: none;              /* hidden on desktop */
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  gap: 2.5rem;                        /* space between links themselves */

  flex-grow: 1;                       /* ← key: this makes it take all available space */
  justify-content: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: #ffcc00;
}

.nav-icons {
  display: flex;
  gap: 1.4rem;
  flex-shrink: 0;
}

.icon-link {
  color: rgb(0, 0, 0);
  font-size: 1.35rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  text-decoration: none;
}

.icon-link:hover {
  background: rgba(255,255,255,0.25);
  color: #ffcc00;
  transform: scale(1.12);
}

/* ── Video & Content ────────────────────────────────────────── */
.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.bg-video {
  position: absolute;
  inset: 50% 0 0 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 5;
}

.hero-content {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  text-shadow: 0 3px 12px rgba(0,0,0,0.8);
  padding: 0 5%;
}

.hero-content h1 {
  font-size: clamp(2rem, 9vw, 4rem);
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: 3px;
}

.hero-content p {
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  margin: 0 0 2rem;
}

.cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: #000;
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  border: 2px solid white;
  transition: 0.35s;
}

.cta:hover {
  background: white;
  color: black;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {

  .hamburger {
    display: block;
  }

  .nav-right {
    position: fixed;
    inset: 0 0 0 35%;           /* slide from right */
    top: 0;
    width: 65%;
    height: 100vh;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 90;
  }

  .nav-right.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 2.5rem;
    font-size: 1.4rem;
  }

  .nav-icons {
    flex-direction: row;
    gap: 3rem;
    margin-top: 2rem;
  }

  .icon-link {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  /* Optional: darken overlay a bit more on mobile */
  .overlay {
    background: rgba(0,0,0,0.55);
  }
}

/* Very small phones – adjust text */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(3rem, 10vw, 4rem);
  }
  .cta {
    padding: 0.5rem 2rem;
    font-size: 1rem;
  }
}






/* ── New Arrivals Section ───────────────────────────────────── */
.new-arrivals {
  background: #ffffff;
  padding: 80px 0 100px;
  color: #111;
}

.new-arrivals .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.new-arrivals h2 {
  text-align: center;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  margin: 0 0 3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);   /* 4 columns on desktop */
  gap: 2.5rem 2rem;                        /* row-gap / column-gap */
  justify-items: center;
}

.product-card {
  width: 100%;
  max-width: 320px;                        /* prevents cards from getting too wide */
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.4rem;
  background: #f8f8f8;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
  object-fit: cover;
  aspect-ratio: 5 / 6.5;                   /* consistent portrait ratio for merch */
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: #000;
  letter-spacing: 0.5px;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: #555;
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);   /* 3 on medium tablets */
    gap: 2rem 1.8rem;
  }
}

@media (max-width: 800px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);   /* 2 per row on phones/tablets */
    gap: 2.2rem 1.5rem;
  }

  .new-arrivals {
    padding: 60px 0 80px;
  }

  .new-arrivals h2 {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    gap: 2rem 1rem;
  }

  .product-card {
    max-width: 100%;
  }

  .product-name {
    font-size: 1.15rem;
  }

  .product-price {
    font-size: 1.05rem;
  }
}

/* ── Parallax Section ───────────────────────────────────────── */


/* ── Winter Collection Parallax Section ───────────────────── */
.parallax-section {
  position: relative;
  height: 90vh; /* reduced height for desktop */
}

/* Background image */
.parallax-bg {
    /* The image used */
  background-image: url("bn6.png");

  /* Set a specific height */
  min-height: 400px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Overlay for readability */
.parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Content */
.parallax-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 6%;
}

.parallax-content h2 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-shadow: 0 4px 18px rgba(0,0,0,0.85);
}

.parallax-content .cta {
  margin-top: 1rem;
}

/* Desktop layout: smaller + move right */
@media (min-width: 1024px) {
  .parallax-section {
    height: 90vh;
  }

  .parallax-content {
    align-items: flex-end;
    text-align: right;
    padding-right: 8%;
    padding-left: 0;
  }

  .parallax-content h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin-bottom: 1.4rem;
  }

  .parallax-content .cta {
    font-size: 1rem;
    padding: 0.8rem 2.2rem;
  }
}

/* Mobile image swap */
@media (max-width: 768px) {
  .parallax-bg {
      /* The image used */
  background-image: url("banner.jpg");

  /* Set a specific height */
  min-height: 700px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }

  .parallax-section {
    height: 100vh;
  }
}

/* ── Newsletter Pop-up ─────────────────────────── */
.newsletter-popup {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.newsletter-popup.active {
  opacity: 1;
  pointer-events: auto;
}

/* Pop-up card */
.popup-content {
  display: flex;
  max-width: 900px;
  width: 90%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: slideIn 0.5s ease forwards;
}

/* Left: Video */
.popup-video {
  flex: 1;
  min-width: 300px;
  max-height: 100%;
}

.popup-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right: Text + Form */
.popup-text {
  flex: 1;
  padding: 2rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.popup-text p {
  margin-bottom: 1.5rem;
  color: #555;
}

.popup-text form {
  display: flex;
  gap: 0.8rem;
}

.popup-text form input[type="email"] {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.popup-text form button.cta {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Entrance animation */
@keyframes slideIn {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    max-width: 95%;
  }

  .popup-video {
    width: 100%;
    height: 40px;
  }

  .popup-text {
    padding: 1rem;
  }

  .popup-text form {
    flex-direction: column;
  }

  .popup-text form button.cta {
    width: 100%;
  }
}

/* ── Newsletter Section ─────────────────────────── */
.newsletter-section {
  background: #f5f5f5;
  padding: 80px 5%;
}

.newsletter-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Left: Form */
.newsletter-form {
  flex: 1;
  min-width: 320px;
}

.newsletter-form h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.newsletter-form p {
  margin-bottom: 2rem;
  color: #555;
}

/* Form layout */
.newsletter-form form .form-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.newsletter-form form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.newsletter-form form button.cta {
  padding: 0.8rem 2rem;
  font-size: 1rem;
}

/* Right: Image */
.newsletter-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.newsletter-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form form .form-group {
    flex-direction: column;
  }

  .newsletter-image img {
    max-width: 90%;
    margin-top: 2rem;
  }
}

/* Input focus animation */
.newsletter-form form input {
  transition: all 0.3s ease;
}

.newsletter-form form input:focus {
  outline: none;
  border-color: #ffcc00; /* highlight color */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
  transform: translateY(-2px);
}

/* CTA button hover animation */
.newsletter-form form button.cta {
  transition: all 0.35s ease;
}

.newsletter-form form button.cta:hover {
  background: #ffcc00; /* highlight background on hover */
  color: #000;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Optional: smooth focus on mobile */
@media (max-width: 900px) {
  .newsletter-form form input:focus {
    transform: none;
    box-shadow: 0 4px 12px rgba(255,204,0,0.3);
  }
}

/* ── Footer ─────────────────────────── */
.site-footer {
  background: #000;
  color: #fff;
  padding: 60px 5% 20px;
  font-family: inherit;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  align-items: flex-start;
}

/* Left: Logo + Slogan */
.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-left .footer-logo img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-slogan {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Right: Social Media */
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-right h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials .social-link {
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.25s ease;
}

.footer-socials .social-link:hover {
  color: #ffcc00;
  transform: scale(1.1);
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #222;
  padding-top: 20px;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    margin-top: 2rem;
  }

  .footer-socials {
    justify-content: center;
  }
}


