/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styling */
body {
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  color: white;
  min-height: 100vh;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  width: 100%;
  background: transparent;
  padding: 0.8rem 0;
  box-shadow: none;
  z-index: 100;
  position: relative;
}

.navbar-container {
  max-width: 1200px;
  margin-top: 2vh;
  margin-left: 40vw;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 3vw;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  color: #eaf6fb;
  text-decoration: none;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links li a:hover,
.navbar-links li a.active {
  color: #37dff5;
  text-shadow: 0 2px 8px #37dff5;
}

/* Logo */
.logo {
  position: absolute;
  top: 4vh;
  left: 3vw;
  width: 5vw;
  min-width: 60px;
  max-width: 120px;
  height: auto;
  z-index: 40;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  height: 100vh;
  padding: 0 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  flex-wrap: wrap;
  margin-bottom: 8vh;
}

.hero-content {
  position: relative;
  z-index: 30;
  max-width: 40vw;
}

.hero-heading {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 600;
  line-height: 1.05;
  color: white;
  margin-top: 10vh;
}

.subheading {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 2rem);
  font-weight: 400;
  color: #ffffff;
  margin-top: 1vh;
}

/* Hoodie */
.hoodie {
  position: absolute;
  top: 3vw;
  left: 35vw;
  width: 55vw;
  height: auto;
  z-index: 20;
  animation: float 4s ease-in-out infinite;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2vh); }
  100% { transform: translateY(0); }
}

/* Glowing Ellipse */
.glow-ellipse {
  position: absolute;
  left: 50%;
  top: 30vh;
  transform: translateX(-50%);
  width: 50vw;
  height: 50vw;
  border-radius: 10%;
  background: linear-gradient(308deg, #105792 3.42%, #0863AE 33.95%, #006ECA 96.58%);
  filter: blur(20vw);
  z-index: 10;
  opacity: 0.5;
}

/* Tilted Marquee */
.tilted-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 50;
  pointer-events: none;
  transform: rotate(7deg); /* Tilt by 5 degrees */
  margin-bottom: 2rem;
  margin-top: 0;
}

.tilted-marquee-track {
  display: flex;
  width: max-content;
  animation: tiltedScrollText 40s linear infinite;
  align-items: center;
  border-top: 2px solid #37dff5;
  border-bottom: 2px solid #37dff5;
  padding: 0.5rem 0;
  background: transparent;
  box-shadow: none;
  will-change: transform;
}

.tilted-marquee-track span {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 700;
  white-space: nowrap;
  color: #37dff5;
  letter-spacing: 0.1em;
  padding-right: 2rem;
  text-shadow: 0 2px 16px #10101a, 0 1px 2px #000;
  opacity: 0.95;
  pointer-events: auto;
  display: inline-block;
}

@keyframes tiltedScrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Moving Text Line */
.moving-text-line {
  position: absolute;
  top: 12vh;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 15;
  opacity: 0.08;
}

.bottom-marquee {
  position: relative;
  top: auto;
  margin-top: 10vh;
  margin-bottom: 5vh;
}

.text-track {
  display: flex;
  width: max-content;
  animation: scrollText 70s linear infinite;
}

.text-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 700;
  white-space: nowrap;
  color: rgb(55, 223, 245);
  padding-right: 4rem;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Product Showcase */
.product-showcase-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.product-showcase {
  display: flex;
  height: 500px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.product-images-container {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.product-images {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
}

.product-images img {
  width: 400px;
  height: auto;
  min-width: 180px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-images img:hover {
  transform: scale(1.05);
}

.product-images::-webkit-scrollbar {
  display: none;
}

.product-info {
  flex: 1;
  background-color: #e6e6e6;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 3;
}

.product-info h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  color: #1a1a1a;
}

.nav-arrows {
  font-size: 36px;
  display: flex;
  gap: 24px;
  color: #1a1a1a;
}

.nav-arrows .arrow {
  cursor: pointer;
  transition: transform 0.2s;
}

.nav-arrows .arrow:hover {
  transform: scale(1.2);
}

/* Catalog Section */
.catalog {
  position: relative;
  z-index: 20;
  width: 100%;
}

.catalog-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 4vh;
  margin-left: 2vw;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
}

.product-card {
  background-color: #111;
  overflow: hidden;
  height: 60vh;
  box-shadow: 0 0 0 1px rgba(55, 223, 245, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(55, 223, 245, 0.4);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 3vh;
  padding: 3vh;
}

/* About Section */
.about {
  padding: 6vh 6vw;
  background: linear-gradient(120deg, #10101a 0%, #23234a 100%);
  color: #eaf6fb;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 600px;
  gap: 6vw;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(55,223,245,0.08);
  width: 100%;
}

.about-content {
  max-width: 650px;
  text-align: left;
}

.about-content h2 {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2vh;
  color: #37dff5;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #1a1a40, 0 1px 2px #000;
}

.about-content p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: #b3eaff;
  margin-top: 1.2rem;
  text-shadow: 0 1px 8px #23234a;
}

.about-image {
  flex: 0 0 380px;
  max-width: 380px;
  margin-left: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(55,223,245,0.15);
}

/* How to Order Section */
.how-to-order {
  padding: 10vh 5vw;
  background-color: #010101;
  color: #ddd;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  flex-wrap: nowrap;
  width: 100%;
}

.how-to-order .order-image {
  flex: 0 0 40%;
  max-width: 500px;
}

.how-to-order .order-image img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.25));
}

.how-to-order .order-steps {
  flex: 1;
  max-width: 600px;
}

.how-to-order .section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  color: #00d9ff;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.step-number {
  background: #00d9ff;
  color: black;
  font-weight: bold;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  flex-shrink: 0;
}

.step-description {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: #aaa;
}

/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4vw;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 350px;
  text-align: left;
  color: #eaf6fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section .section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact-description {
  font-size: 1.2rem;
  color: #b3eaff;
  margin-bottom: 2.5rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  text-align: left;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-socials a {
  color: #37dff5;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

.contact-socials a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 400px;
  max-width: 500px;
  background: rgba(20, 20, 40, 0.25);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(55,223,245,0.10);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button,
.submit-button {
  width: 100%;
  padding: 1rem;
  background: #0ff;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover,
.submit-button:hover {
  background: #00e6e6;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 3vw;
    padding: 4vw 2vw;
  }
  .contact-form {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .contact-info {
    margin-bottom: 2rem;
  }
  .contact-section .section-title {
    font-size: 2rem;
  }
  .contact-description {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background-color: #000;
  padding: 4vh 5vw;
  border-top: 1px solid #222;
  text-align: center;
  color: #888;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer .socials {
  display: flex;
  gap: 1.5rem;
}

.footer .socials a {
  text-decoration: none;
  color: #888;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer .socials a:hover {
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 1200px) {
  .hero-content {
    max-width: 60vw;
  }
  .about {
    flex-direction: column;
    align-items: flex-start;
    padding: 5vh 3vw;
    min-height: 0;
    gap: 2vw;
    border-radius: 12px;
  }
  .about-image {
    margin-left: 0;
    margin-top: 2vh;
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-end;
    padding: 0 5vw;
  }
  .navbar-links {
    gap: 1.5rem;
  }
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5vh 5vw;
    min-height: 60vh;
    height: auto;
  }
  .hero-content {
    max-width: 90vw;
  }
  .hoodie {
    position: relative;
    width: 80vw;
    left: auto;
    margin-top: 5vh;
  }
  .glow-ellipse {
    top: 40vh;
    width: 80vw;
    height: 80vw;
    filter: blur(25vw);
  }
  .logo {
    width: 12vw;
    top: 2vh;
    left: 2vw;
    min-width: 50px;
  }
  .cta-form {
    flex-direction: column;
  }
  .product-card {
    height: 45vh;
  }
  .about-content {
    max-width: 100%;
    text-align: left;
  }
  .about-content h2 {
    font-size: 2rem;
  }
  .about-content p {
    font-size: 1rem;
  }
  .about-image {
    margin-left: 0;
    margin-top: 2vh;
    max-width: 100%;
  }
  .how-to-order {
    flex-direction: column;
    text-align: center;
    padding: 6vh 2vw;
  }
  .how-to-order .order-image,
  .how-to-order .order-steps {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step-description {
    text-align: center;
  }
}

/* Extra small screens */
@media (max-width: 600px) {
  .hero-heading {
    font-size: 2.2rem;
    margin-top: 2vh;
  }
  .product-images img {
    width: 90vw;
    min-width: 120px;
  }
  .about {
    padding: 3vh 2vw;
  }
  .how-to-order {
    padding: 4vh 2vw;
  }
  .catalog-title {
    margin-left: 0;
    font-size: 1.5rem;
  }
  .footer {
    padding: 2vh 2vw;
  }
}



.hero-gallery {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-gallery-images {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0; left: 0;
}

.hero-gallery-img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}

.hero-gallery-img.active {
  opacity: 1;
  z-index: 2;
}

.hero-gallery-nav {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-gallery-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s;
  border: 2px solid #37dff5;
}

.hero-gallery-dot.active {
  opacity: 1;
  background: #37dff5;
}
