/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body { background:#08080B; color:#F5F5F7; font-family:'Inter',sans-serif; overflow-x:hidden; }
::selection { background:#FF2D78; color:#fff; }
:focus-visible { outline: 2px solid #FF7A1A; outline-offset: 2px; }
.font-display { font-family:'Anton', sans-serif; letter-spacing:0.5px; }

/* ===== GLASSMORPHISM ===== */
.glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ===== POSTER TEXT OUTLINE EFFECT ===== */
.poster-pink { -webkit-text-stroke: 1.5px #FF2D78; text-shadow: 3px 3px 0 rgba(255,45,120,.45), 6px 6px 18px rgba(255,45,120,.2); }
.poster-orange { -webkit-text-stroke: 1.5px #FF7A1A; text-shadow: 3px 3px 0 rgba(255,122,26,.45), 6px 6px 18px rgba(255,122,26,.2); }
.poster-blue { -webkit-text-stroke: 1.5px #3FC1E9; text-shadow: 3px 3px 0 rgba(63,193,233,.45), 6px 6px 18px rgba(63,193,233,.2); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(100deg, #FF2D78, #FF7A1A);
  color: #fff; padding: 14px 28px; border-radius: 30px;
  font-weight: 600; font-size: 14px; display: inline-block;
  transition: transform .3s;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  padding: 14px 28px; border-radius: 30px; font-weight: 600; font-size: 14px;
  display: inline-block; transition: border-color .3s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.5); }

/* ===== TEXT HELPERS ===== */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; display: inline-block; }
.text-balance { text-wrap: balance; }
.section-pad { padding: 80px 24px; }
@media (min-width: 768px) { .section-pad { padding: 110px 48px; } }
@media (min-width: 1024px) { .section-pad { padding: 110px 64px; } }

/* ===== BADGES ===== */
.badge-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }

/* ===== REVEAL ON SCROLL ===== */
.reveal { opacity: 0; transform: translateY(36px); }

/* ===== HERO BACKGROUND ===== */
.kenburns { background-size: cover; background-position: center; animation: kenburns 9s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }

/* ===== MARQUEE TEXT (separate from font-display used elsewhere) ===== */
.marquee-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ===== MARQUEE ===== */
.marquee { animation: marquee 24s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== HERO DOTS ===== */
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); display: inline-block; margin: 0 4px; cursor: pointer; transition: all .3s; }
.hero-dot-active { width: 26px; border-radius: 6px; background: linear-gradient(100deg,#FF2D78,#FF7A1A); }

@media (prefers-reduced-motion: reduce) {
  .kenburns, .marquee { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== BRAND WORDMARK (matches logo style) ===== */
.brand-mark {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
}

.brand-mark .re-bound {
  background: linear-gradient(90deg, #FF2D78, #FFD6E7 55%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.brand-mark .and-rise {
  background: linear-gradient(90deg, #FF7A1A, #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-left: 6px;
}

.brand-sub-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
}
.brand-sub-row::before,
.brand-sub-row::after {
  content: '';
  height: 1px;
  width: 10px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #FF2D78, #FF7A1A);
}
.brand-mark {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
}
.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #F5F5F7;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1px;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 0.7px;
  white-space: nowrap;
  line-height: 1;
}
.brand-tag .star { color: #FF2D78; font-size: 8px; }
.brand-tag .txt { color: rgba(245,245,247,.7); }

/* ===== FOOTER LINK GRADIENT HOVER ===== */
.footer-link {
  color: rgba(255,255,255,.5);
  transition: color .3s;
  text-decoration: none;
}
.footer-link:hover {
  background: linear-gradient(90deg, #FF2D78, #FF7A1A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== FOOTER SOCIAL ICONS ===== */
.social-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  transition: all .3s;
}
.social-icon:hover {
  background: linear-gradient(135deg, #FF2D78, #FF7A1A);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ===== TOUCH-FRIENDLY LINK FEEDBACK ===== */
.footer-link:active,
.nav-link:active {
  background: linear-gradient(90deg, #FF2D78, #FF7A1A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== NAV LINK STATES ===== */
.nav-link {
  position: relative;
  color: rgba(255,255,255,.7);
  transition: color .3s;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -14px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF2D78, #FF7A1A);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-link:hover { color: #ffffff; }
.nav-link:hover::after { transform: scaleX(1); }
.active-nav { color: #ffffff !important; }
.active-nav::after { transform: scaleX(1); }


/* ===== IMAGE RESPONSIVENESS SAFETY NET ===== */
[style*="background-image"] {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/** ===== GLASSMORPHISM HOVER EFFECT ===== */

.glass:hover{
    border-color:rgba(255,255,255,.18);
    transition:.35s ease;
}

.poster-orange{
    display:inline;
}

.glass.rounded-full{
    transition:all .3s ease;
}

.glass.rounded-full:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.08);
}

/* Programs section */
/* ===== ANCHOR NAV PILLS ===== */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.anchor-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .3s;
}
.anchor-pill:hover { color: #fff; border-color: rgba(255,255,255,.2); }
.anchor-pill.active-pill { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,.2); }

/* ===== IMAGE WIPE REVEAL ===== */
.wipe-img { clip-path: inset(0 0 100% 0); transition: none; }

/* ===== SCROLL MARGIN TOP ===== */
.scroll-mt-32 { scroll-margin-top: 130px; }


/* ===== 3D TILT CARDS ===== */
.tilt-card { perspective: 900px; }
.tilt-inner { transform-style: preserve-3d; transition: transform .1s ease-out; will-change: transform; }

/* Reserve space above the sticky mobile CTA so footer content isn't hidden behind it */
@media (max-width: 767px) {
  body { padding-bottom: 76px; }
}

/*Gallery page*/
/* ===== GALLERY FILTER TABS ===== */
.gallery-filter {
  display: flex; align-items: center;
  padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .3s;
  cursor: pointer;
}
.gallery-filter:hover { color: #fff; border-color: rgba(255,255,255,.2); }
.gallery-filter.active-pill { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,.2); }

/* ===== GALLERY MASONRY (natural aspect ratios, no forced cropping) ===== */
.gallery-masonry {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) { .gallery-masonry { columns: 3; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 4; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  display: block;
}


/* ===== GLOBAL RESPONSIVE SAFETY NET (all devices, doesn't break sticky) ===== */
* { box-sizing: border-box; }

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  width: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}


/* Smaller floating panel icons on very narrow phones */
@media (max-width: 360px) {
  .fixed.bottom-5.right-4 a, .fixed.bottom-6.right-6 a {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ===== BRAND BLOCK — FLUID SIZING, CONSISTENT ON EVERY SCREEN ===== */
header img.rounded-md {
  height: clamp(32px, 9vw, 80px) !important;
  width: auto !important;
}
.brand-mark {
  font-size: clamp(13px, 4.2vw, 30px) !important;
  white-space: nowrap;
}
.brand-sub {
  font-size: clamp(6px, 1.6vw, 10px) !important;
  letter-spacing: clamp(0.5px, 0.3vw, 1.5px) !important;
}
.brand-sub-row::before, .brand-sub-row::after {
  width: clamp(6px, 1.5vw, 12px) !important;
}
.brand-tag {
  font-size: clamp(6px, 1.3vw, 9px) !important;
}
.brand-tag .star { font-size: clamp(5px, 1.1vw, 7px) !important; }

/* ===== BRAND CURSOR (desktop/mouse only) ===== */
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, select, textarea, .gallery-item { cursor: none; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 200;
    transform: translate(-50%, -50%);
  }

  /* Small solid gradient core — the actual pointer */
  .cursor-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF2D78, #FF7A1A);
    transition: transform .1s ease, opacity .2s ease;
  }

  /* Thin outline ring, small and tight at rest */
  .cursor-ring {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  transition: border-color .15s ease, opacity .2s ease;
}

  /* Hover state — modest growth, not dramatic */
 .cursor-ring.cursor-hover {
  border-color: #FF2D78;
  background: rgba(255,45,120,.08);
}
  .cursor-dot.cursor-hover { opacity: 0; }

  .cursor-label {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transition: opacity .15s ease;
    white-space: nowrap;
  }
  .cursor-ring.cursor-hover .cursor-label { opacity: 1; }

  .cursor-dot.cursor-hidden, .cursor-ring.cursor-hidden { opacity: 0; }
}

@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

