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

.main-header {
  position: fixed;
  pointer-events: auto;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  padding-bottom: 26px;
  
  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;
}

.main-header .logo {
height: 90px;   /* ← change this to ANY size you want */
margin-bottom: -3px;
transition: height 0.3s ease;
}
 .main-header,
  .main-header a,
  .main-header button,
  .dropdown-content a {
    font-family: 'Orbitron', sans-serif;
  }
/* Nav container */
  .nav-container {
      display: flex;
      align-items: center;
      justify-content: center; /* centers nav-links horizontally */
      position: relative;
      width: 100%;
      padding: 0 40px; /* consistent spacing from edges */
      box-sizing: border-box;
      gap: 40px; /* space between dropdown and nav links */
    }

/* Nav links */
.nav-links {
  display: flex;
  gap: 40px;          /* ← match Clothing */
  padding: 10px 0;
  justify-content: center;
  flex: 1;
}



/* Nav links hover/active */
  
  .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;
}

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


/* Dropdown button styling – match nav links */
.dropbtn {
background: none;
border: none;
font-weight: 700;
font-size: 18px;
color: #000;
cursor: pointer;
padding: 10px;
transition: color 0.3s ease;
 margin-top: -46px;
}
/* Hover effect */
.dropbtn:hover {
  color: #ff6f61;
}

/* Shrink effect for dropdown button */
.shrink .dropbtn {
  font-size: 18px; /* same shrink as nav links */
}


.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;
}

/* Shrink effect - matches Clothing page */

.shrink .logo {
  height: 60px;
}

.shrink .nav-links a {
  font-size: 18px; /* reduces text size when shrunk */
}
   /* 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;
      }
    }
/* =======================
   HERO
======================= */
.media-hero {
  text-align: center;
  padding: 220px 20px 100px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

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

.media-hero p {
  font-size: 1.2rem;
  color: #ddd;
}

/* =======================
  
SHOWCASE
======================= */
.showcase {
  padding: 60px 20px;
  text-align: center;
}

.showcase h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
}
/* =======================
   CLOTHING GRID (RESTORE)
======================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.product-card {
  width: 100%;
  max-width: 320px;
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* =======================
   MAIN GALLERY FIX
======================= */

/* Stack EVERYTHING vertically */
.gallery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* PHOTO STACK */
.card-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
    /* IMAGES STACKED */
    .card-gallery img,
    .photo-grid img {
      max-width: 100%;
    }
  
.card-gallery img {
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

/* VIDEO STACK */
.card-video-horizontal {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-video-horizontal:hover {
  transform: scale(1.06);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

/* =======================
   MUSIC VIDEOS
======================= */

.video-grid {
  display: flex;
  flex-direction: column;   /* STACKS them vertically */
  align-items: center;
  gap: 40px;
}


.video-card:hover img {
  transform: scale(1.1);
}

.video-card:hover .overlay {
  opacity: 1;
}
/* Make music video cover image bigger */
.video-card {
  width: 20%;
  max-width: 70px;   /* match About/Clothing visual size */
  margin: 0 auto;
}

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* =======================
   BOOKING
======================= */
.booking {
  margin: 60px auto;
  padding: 30px;
  max-width: 700px;
  background: rgba(0,0,0,0.75);
  border-radius: 12px;
  position: relative;
  display: block;      /* ensure centering */
}

.booking::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(90deg, #d00909, #1b1b1a, #eef3f5);
  z-index: -1;
}

/* =======================
   FOOTER
======================= */
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);
}
/* ===== DESKTOP NAV MATCH (Photo = About/Clothing) ===== */
@media (min-width: 769px) {

  .nav-links {
    gap: 40px;            /* exact spacing */
    padding: 10px 0;
  }

  .nav-links a {
    font-size: 20px;      /* exact font size */
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .dropbtn {
    font-size: 18px;
    margin-top: -50px;    /* align with other pages */
  }

}

 /* =========================
     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;
    }
  }
  /* =========================
     AUTO HIDE HEADER ON SCROLL
  ========================= */
  /* DESKTOP ONLY – lock Account button */
  @media (min-width: 769px) {
    .nav-container {
      position: relative;
    }
  
    .nav-container .dropdown {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      padding-left: 27px;
    }
  }
  /* === HEADER COLOR LOCK (GLOBAL) === */
  .main-header {
    background-color: #fff;
  }
  
  .nav-container {
    background-color: #fff;
  }
  
  .nav-links {
    background-color: #fff;
  }
  
  .nav-links a,
  .dropbtn {
    color: #000;
  }
  
  
    /* =======================
     MOBILE FIX (GLOBAL)
  ======================= */
 @media (max-width: 768px) {
  body {
    padding-top: 180px;
  }
}

  @media (max-width: 768px) {
    .nav-header,
    .nav-links {
      background-color: #fff;
    }
  }
    /* NAV */
    .nav-links {
      flex-wrap: wrap;
      gap: 20px;
      padding: 10px 0;
    }
    
  
    .nav-links a {
      font-size: 16px;
    }
  
    /* HERO */
    .media-hero {
      padding: 120px 15px 80px;
    }
  
    .media-hero h1 {
      font-size: 2rem;
    }
  
    .media-hero p {
      font-size: 1rem;
    }
  
    /* SHOWCASE */
    .showcase {
      padding: 40px 15px;
    }
  
    /* VIDEOS STACKED */
    video,
    .video-card {
      max-width: 100%;
    }
  
    /* MUSIC VIDEOS */
    .video-grid {
      grid-template-columns: 1fr;
    }
  
    /* BOOKING */
    .booking {
      padding: 20px;
      margin: 40px 15px;
    }
  
    /* FOOTER */
    footer {
      font-size: 0.8rem;
    }

  @media (max-width: 768px) {
  .nav-container .dropdown {
    top: auto;
    transform: none;   /* ← THIS is the key */
  }
}

  /* =========================
     ABOUT PAGE – MOBILE NAV
     CLEAN & BALANCED
  ========================= */
  @media (max-width: 768px) {
  
    .nav-container {
      display: flex;
      flex-direction: column; /* stack nav cleanly */
      align-items: center;
      padding: 12px 16px;
      gap: 8px;
    }
  
    /* top row: logo + dropdown */
    .nav-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  
    .nav-container .dropdown {
      position: relative;
      padding: 0;
      margin: 0;
    }
    
  @media (max-width: 768px) {
  .nav-header {
    align-items: center;
  }
}
    /* links row */
    .nav-links {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 14px;
      width: 100%;
      flex-wrap: nowrap; /* prevents messy wrapping */
    }
  
    .nav-links a {
      font-size: 15px;
      white-space: nowrap; /* keeps links clean */
      text-align: center;
    }
  
    .nav-links {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  }
  @media (max-width: 768px) {
  .nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
  }
}
  