/* Reset + Font */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  padding-top: 190px; /* keeps content below header */
}

/* Header */
.main-header {
  position: fixed;
  pointer-events: auto;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column; /* stack logo + nav */
  align-items: center;
  padding: 20px 0;
  padding-bottom: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.main-header.hide {
  transform: translateY(-100%);
  pointer-events: none;
}


.nav-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  position: relative;
  width: 100%;
  padding: 0 40px; 
  box-sizing: border-box;
  gap: 40px; 
}

.nav-links {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  font-weight: 700;
  color: #000;
  font-size: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6f61;
}
.dropbtn {
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #ff6f61;
}


/* Shrink effect */

.shrink .nav-links a {
  font-size: 18px;
}

.dropbtn {
  background: none;
  border: none;
  font-weight: 700;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  padding: 10px;
  margin-top: -50px;
  transition: color 0.3s ease;
}



.dropbtn:hover {
  color: #ff6f61;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 9999;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown-content.show {
  display: block;
}

/* Hero */
.hero {
  height: 100vh;
  background: url('images/0224.mp4') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* Collection */
.collection {
  padding: 4rem 2rem;
  text-align: center;
}

.collection h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Clothing Hero */
.clothing-hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('images/your-clothing-hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.clothing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.clothing-hero p {
  font-size: 1.2rem;
  max-width: 600px;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #000;
    color: #ffffff;
    margin-top: 2rem;
  }
  .site-footer {
  width: 100%;
  margin-top: 80px;      /* pushes it below everything */
  padding: 25px 10px;
  text-align: center;
  background: #000;
  color: #ffffff;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
  
 
  /* Dropdown pinned to far left */

  .main-header,
.main-header a,
.main-header button,
.dropdown-content a {
  font-family: 'Orbitron', sans-serif;
}


  
  /* Logo */
  .main-header .logo {
    display: block;
    margin: 0 auto;
  height: 90px;
  margin-bottom: -3px;
    transition: height 0.3s ease;
  }
  /* Shrink effect */
  .shrink .logo {
    height: 60px;
  }
  /* Responsive Navigation */

  /* Smaller screens for logo shrink */
  @media (max-width: 480px) {
    .main-header .logo {
      height: 60px;
    }
  
    .nav-links a {
      font-size: 16px;
    }
  
    .dropbtn {
      font-size: 16px;
    }
  }
  
  /* Optional: prevent dropdown from being cut off on small screens */
  @media (max-width: 480px) {
    .dropdown-content {
      min-width: 140px;
    }
  }
  /* =========================
   DROPDOWN SAFETY FIX (MOBILE)
   DOES NOT AFFECT DESKTOP
========================= */
@media (max-width: 768px) {
  .dropdown-content {
    max-height: 60vh;
    overflow-y: auto;
  }
}
/* =========================
   FIX: DROPDOWN SHRINK SYNC
   Restores dropdown scaling on scroll
   DOES NOT change layout
========================= */

.shrink .dropbtn {
  font-size: 18px;
  padding: 8px;
}

/* Mobile stays proportional */
@media (max-width: 768px) {
  .shrink .dropbtn {
    font-size: 16px;
    padding: 6px;
  }
}

@media (min-width: 769px) {
  .nav-container .dropdown {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 27px;
  }
}



  /* =======================
   MOBILE FIX (GLOBAL)
======================= */
@media (max-width: 768px) {

  body {
    padding-top: 180px;
  }

  .main-header {
    padding: 8px 0;
  }

  .main-header .logo {
    height: 60px;
  }

  .nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
  }

  .nav-container .dropdown {
    position: relative;
    padding: 0;
    margin: 0;
    top: auto;
    transform: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
    flex-wrap: nowrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-links a {
    font-size: 15px;
    white-space: nowrap;
    text-align: center;
  }

}


  /* SHOWCASE */
  .showcase {
    padding: 40px 15px;
  }

  /* IMAGES STACKED */
  .card-gallery img,
  .photo-grid img {
    max-width: 100%;
  }

  /* VIDEOS STACKED */
  video,
  .video-card {
    max-width: 100%;
  }

  /* MUSIC VIDEOS */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* BOOKING */
  .booking {
    padding: 20px;
    margin: 40px 15px;
  }
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

