/* --------------------------------------------------
   GLOBAL RESET
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------------------------------------
   COLOR PALETTE — VIP ELITE DIGITAL
-------------------------------------------------- */
:root {
  --vip-blue: #4aa8ff;
  --vip-gold: #f9c310;
  --vip-black: #000000;
  --vip-white: #fefefe;
}

/* --------------------------------------------------
   BODY
-------------------------------------------------- */
body {
  background: var(--vip-black);
  color: var(--vip-blue);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(249,195,16,0.25);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--vip-blue);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sub-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--vip-gold);
  opacity: 0.85;
  margin-top: 3px;
}

nav ul.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul.menu li a {
  color: var(--vip-gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

nav ul.menu li a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.staging-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

.staging-hero {
  text-align: center;
  margin-bottom: 50px;
}

.staging-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vip-gold);
}

.staging-tagline {
  font-size: 18px;
  color: var(--vip-gold);
}

/* --------------------------------------------------
   TAB MENU
-------------------------------------------------- */
.tab-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  background: var(--vip-gold);
  color: var(--vip-black);
  border: 1px solid var(--vip-gold);
  padding: 12px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.2s ease;
}

.tab-btn:hover {
  filter: brightness(1.1);
}

.tab-btn.active {
  background: var(--vip-blue);
  color: var(--vip-gold);
}

/* --------------------------------------------------
   TAB CONTENT
-------------------------------------------------- */
.tab-content {
  margin-top: 40px;
}

.hidden {
  display: none;
}

/* --------------------------------------------------
   FORMAT CARD WRAPPER
-------------------------------------------------- */
.format-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.format-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}

/* --------------------------------------------------
   IMAGE CONTAINER — ASSET HOLDER
-------------------------------------------------- */
.image-container {
  position: relative;
  width: 100%;
  background: #111;
  /* holder defines the frame; image will fill it */
}

/* every asset auto-fits the holder */
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fill frame, crop if needed */
  display: block;
}

/* --------------------------------------------------
   MISSING IMAGE FALLBACK
-------------------------------------------------- */
.img-missing {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  color: #C41230;
  font-family: sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: none;       /* hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px;
  text-align: center;
}

/* --------------------------------------------------
   FADE-IN EFFECT
-------------------------------------------------- */
.fade-in {
  opacity: 1;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* --------------------------------------------------
   ASPECT RATIO CLASSES (ONLY IF YOU EXPLICITLY WANT THEM)
   — NOT USED FOR AUTO-FIT HOLDERS
-------------------------------------------------- */

/* Posters */
.ar-2-3 { aspect-ratio: 2 / 3; }
.ar-3-4 { aspect-ratio: 3 / 4; }
.ar-17-22 { aspect-ratio: 17 / 22; }

/* Email */
.ar-3-1 { aspect-ratio: 3 / 1; }

/* Social */
.ar-1-1 { aspect-ratio: 1 / 1; }
.ar-9-16 { aspect-ratio: 9 / 16; }
.ar-16-9 { aspect-ratio: 16 / 9; }

/* Outdoor */
.ar-3-43 { aspect-ratio: 48 / 14; }
.ar-2-1 { aspect-ratio: 2 / 1; }

/* Portrait Key Art (only if you *choose* to use it) */
.ar-4-3 { aspect-ratio: 4 / 3; }

/* --------------------------------------------------
   GRID SYSTEM
-------------------------------------------------- */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.lg\:grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-6 {
  gap: 24px;
}

.mb-6 {
  margin-bottom: 24px;
}

footer {
  width: 100%;
  display: block;
  padding: 40px 0;
  text-align: center;
}
/* --------------------------------------------------
   CARD HOVER EFFECTS
-------------------------------------------------- */

.format-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.format-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(249,195,16,0.35); /* VIP gold glow */
}
/* --------------------------------------------------
   GLOBAL LIGHTBOX — FULLSCREEN VIEWER
-------------------------------------------------- */

/* Fullscreen background */
.fancybox__container {
  background: rgba(0, 0, 0, 0.92);
}

/* Caption styling */
.fancybox__caption {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--vip-white);
  padding: 12px 20px;
  text-align: center;
}

/* Navigation arrows */
.fancybox__nav {
  color: var(--vip-white);
}

.fancybox__button {
  color: var(--vip-white);
}

/* Image border glow (VIP aesthetic) */
.fancybox__slide img {
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(249,195,16,0.35); /* VIP gold glow */
}

/* Smooth fade-in for fullscreen images */
.fancybox__slide {
  animation: fadeIn 0.4s ease forwards;
}