/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #000000 !important;
}
.hero,
.home,
.page-wrapper {
  background: transparent !important;
}

/* NAVBAR */
.navbar {
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 32px;
}

.brand {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.brand span {
  color: #ff9f43;
}

.nav-right a {
  margin-left: 24px;
  text-decoration: none;
  color: white;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-right a:hover {
  color: #ff9f43;
}

/* HERO */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #ff9f43;
}

.hero p {
  font-size: 16px;
  opacity: 0.85;
}

/* FOOTER */
.footer {
  width: 100%;
  padding: 18px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  color: #ffffff;
}

.footer strong {
  color: #ff9f43;
}

/* ================= PAGE CONTENT ================= */
.page-content {
  padding: 80px 60px;
}

.page-title {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 40px;
}

/* ================= CATEGORIES GRID ================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.category-card {
  border: 1px solid rgba(255, 165, 0, 0.3);
  padding: 60px 20px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.category-card:hover {
  background: rgba(255, 165, 0, 0.15);
  transform: translateY(-6px);
  border-color: orange;
}

/* ================================
   CATEGORY PAGES (SNEAKERS MASTER)
================================ */

/* Page wrapper */
.page-container {
  padding: 120px 6% 80px;
}

/* Hero section */
.category-hero {
  max-width: 600px;
  margin-bottom: 50px;
}

.category-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.category-hero p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

/* Product card */
.product-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 153, 51, 0.25);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 153, 51, 0.15);
}

.product-card img {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 0.9rem;
  color: #bdbdbd;
}

/* Mobile spacing */
@media (max-width: 600px) {
  .page-container {
    padding: 100px 5% 70px;
  }
}

/* CONTACT PAGE */
.contact-page {
  padding: 120px 60px 80px;
  color: #fff;
}

.page-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-subtitle {
  max-width: 600px;
  opacity: 0.85;
  margin-bottom: 50px;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.contact-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,165,0,0.3);
  border-radius: 14px;
  padding: 30px;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #ffa500;
}

.contact-card p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-card .btn {
  display: inline-block;
  padding: 10px 18px;
  background: #ffa500;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Map Section */
.map-section h2 {
  margin-bottom: 15px;
}

.map-placeholder {
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT PAGE ================= */

.page-container {
  padding: 80px 8%;
  color: #fff;
}

.page-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #ccc;
  max-width: 600px;
  margin-bottom: 50px;
}

/* Contact Cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 14px;
  padding: 25px;
  transition: 0.3s ease;
}

.contact-card h3 {
  color: #ffa64d;
  margin-bottom: 10px;
}

.contact-card p {
  color: #ddd;
  line-height: 1.6;
}

/* Buttons */
.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff8c1a, #ffb347);
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* Map Box */
.map-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(255, 165, 0, 0.4);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .page-container {
    padding: 60px 6%;
  }

  .page-title {
    font-size: 34px;
  }
}

/* ===============================
   CONTACT PAGE – PREMIUM CARDS
================================ */

.contact-section {
  padding: 80px 8%;
}

.section-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  margin-bottom: 50px;
  max-width: 600px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,165,0,0.35);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255,165,0,0.15);
}

.contact-card h3 {
  color: #ffa94d;
  margin-bottom: 12px;
}

.contact-card p {
  color: #eee;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff8c1a, #ffb347);
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.contact-btn:hover {
  opacity: 0.9;
}

.contact-card.wide {
  grid-column: span 2;
}

/* Mobile safety */
@media (max-width: 768px) {
  .contact-card.wide {
    grid-column: span 1;
  }
}

/* CONTACT PAGE */
.contact-section {
  padding: 100px 60px 120px;
}

.contact-section h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-subtext {
  color: #ccc;
  margin-bottom: 50px;
  max-width: 600px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
}

.contact-card {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: orange;
}

.contact-card h3 {
  margin-bottom: 12px;
  color: orange;
}

.contact-card p {
  color: #ddd;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  background: orange;
  color: black;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
}

.contact-btn:hover {
  background: #ffb347;
}
/* ===== INTRO SCREEN ===== */
#intro {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* When visible */
.intro-show {
  opacity: 1;
  transform: scale(1);
}

/* Fade out intro */
.intro-hide {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

/* Fade animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
  to { opacity: 0; }
}

/* Hide main content initially */
#main-content {
  opacity: 0;
}

/* CATEGORY INTRO */
#cat-intro {
  position: fixed;
  inset: 0;
  z-index: 9000;     /* BELOW navbar if navbar is higher */
  background: black;
}

#cat-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   HOME HERO SECTION
========================= */

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8%;
  gap: 40px;
}

.hero-left {
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #ff8c2b;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-title span {
  color: #ff8c2b;
}

.hero-subtitle {
  font-size: 16px;
  color: #cfcfcf;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #ff8c2b;
  color: #ff8c2b;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #ff8c2b;
  color: #000;
  transform: translateY(-2px);
}

/* RIGHT VIDEO */
.hero-right video {
  width: 520px;
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 900px) {
  .home-hero {
    flex-direction: column;
    text-align: center;
    padding: 140px 6% 80px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-right video {
    width: 100%;
    max-width: 360px;
    margin-top: 40px;
  }
}

/* HOME PAGE MAIN TITLE FIX */

.hero-title {
  font-size: 64px;
  font-weight: 700;
}

.hero-title .fashion {
  color: #ffffff; /* WHITE */
}

.hero-title .world {
  color: #ff8c2b; /* ORANGE */
}

/* MAKE ALL TEXT READABLE ON BLACK */

.hero-subtitle,
.hero-description,
.step-text,
p {
  color: #d6d6d6; /* light gray, very readable */
}

.explore-btn {
  color: #ff8c2b;
  border: 1px solid #ff8c2b;
  background: transparent;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #ff8c2b;
  color: #000;
}

/* ===== FORCE HOME HERO TEXT COLORS ===== */

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

/* Fashion = WHITE */
.hero-title .fashion {
  color: #ffffff !important;
}

/* World = ORANGE */
.hero-title .world {
  color: #ff8c2b !important;
}

/* Step text */
.step-text {
  color: #ff8c2b !important;
  letter-spacing: 2px;
}

/* Subtitle & description */
.hero-subtitle,
.hero-description {
  color: #e0e0e0 !important;
}

/* ABOUT PAGE */
.about-hero {
  padding: 100px 10%;
  animation: fadeUp 1s ease;
}

.about-hero h1 {
  font-size: 3rem;
  color: #fff;
}

.about-hero span {
  color: #f5a24c;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 10%;
  align-items: center;
}

.story-text h2 {
  color: #f5a24c;
  margin-bottom: 15px;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 80px 10%;
}

.stat-card {
  background: #111;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card h3 {
  color: #f5a24c;
  font-size: 2rem;
}

.about-vision {
  text-align: center;
  padding: 100px 15%;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= CONTACT PAGE ================= */

.contact-page {
  max-width: 1200px;
  margin: 120px auto 80px;
  padding: 0 24px;
  color: #ffffff;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

.page-subtitle {
  color: #b5b5b5;
  margin-bottom: 50px;
  max-width: 600px;
}

/* Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.15);
}

.contact-card h3 {
  color: #ffa64d;
  margin-bottom: 12px;
}

.contact-card p {
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.contact-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid #ffa64d;
  color: #ffa64d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #ffa64d;
  color: #000000;
}

/* Map card spacing fix */
.contact-map iframe {
  margin-top: 10px;
}

/* FORCE MOBILE NAV FIX */
@media screen and (max-width: 768px) {

  .nav-right {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1001;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 1000;
    padding: 20px;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  }
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* HAMBURGER LINES */
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* =========================================
   REMOVE CATEGORY INTRO ON MOBILE (OPTION B+)
   ========================================= */

@media (max-width: 768px) {
  #cat-intro {
    display: none !important;
  }
}



/* =========================
   GLOBAL BACK BUTTON
========================= */

.back-btn {
  position: fixed;
  top: 90px;              /* below navbar */
  left: 16px;
  z-index: 9999;

  background: rgba(0,0,0,0.7);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;

  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;

  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.back-btn:hover {
  background: #ff8c2b;
  color: #000;
  border-color: #ff8c2b;
}

/* Mobile polish */
@media (max-width: 768px) {
  .back-btn {
    top: 70px;
    font-size: 13px;
    padding: 7px 12px;
  }
}
