/* ═══════════════════════════════════════════════════════════
   Orbit Productions — Custom stylesheet
   Built by {uv}-ultravintage — https://ultravintage.com
   Companion to UIkit 3 CDN.
   All paths are relative to this file (orbit_assets/).
═══════════════════════════════════════════════════════════ */

/* ── BASE ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: #101213;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* ── HERO ─────────────────────────────────────────────── */
.orbit-hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}

.orbit-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Hero_back.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 12s ease;
}

.orbit-hero:hover .orbit-hero-bg {
  transform: scale(1);
}

.orbit-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.50) 40%,
    rgba(0,0,0,0.85) 100%
  );
}

/* Sits above overlay via z-index; padding-bottom clears the filter bar */
.orbit-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-bottom: 72px;
}

.orbit-logo {
  display: block;
  width: clamp(140px, 18vw, 240px);
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
}

.orbit-hero-title {
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 12px;
}

.orbit-hero-sub {
  font-weight: 300;
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.60);
  margin: 0;
  text-transform: lowercase;
}

/* ── FILTER TABS — absolute bottom of hero ────────────── */
.orbit-filters {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(10, 12, 13, 0.50);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.orbit-filters ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.orbit-filters li { display: block; }

.orbit-filters a {
  display: block;
  padding: 22px 28px;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.orbit-filters a:hover { color: #fff; }

.orbit-filters a.active { color: #fff; }

@media (max-width: 640px) {
  .orbit-filters a { padding: 14px; font-size: 13px; }
}

/* ── PROJECT ROWS ─────────────────────────────────────── */
.orbit-row {
  min-height: 68vh;
  transition: opacity 0.45s ease;
}

.orbit-img-panel {
  min-height: 360px;
  background: #000;
}

.orbit-img-panel img {
  opacity: 0.88;
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.orbit-row:hover .orbit-img-panel img {
  opacity: 1;
  transform: scale(1.04);
}

/* ── PADDING UTILITY — extends UIkit's scale upward ─────
   40px mobile → 70px tablet → 144px desktop (ELC reference) */
.uk-padding-xlarge { padding: 40px; }
@media (min-width: 640px) { .uk-padding-xlarge { padding: 70px; } }
@media (min-width: 960px) { .uk-padding-xlarge { padding: 144px; } }

/* ── TEXT PANEL ───────────────────────────────────────── */
.orbit-text-panel { background: #141618; }

.orbit-text-panel.align-right { text-align: right; }
.orbit-text-panel.align-right .orbit-btn { align-self: flex-end; }
.orbit-text-panel.align-right .orbit-project-desc { margin-left: auto; }

.orbit-project-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 16px;
}

.orbit-project-title {
  font-weight: 300;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: #fff;
  margin: 0 0 20px;
}

.orbit-project-desc {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  font-weight: 300;
  color: #777;
  max-width: 440px;
  margin: 0 0 36px;
}

.orbit-btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 13px 30px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.orbit-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* ── FOOTER ───────────────────────────────────────────── */
.orbit-footer {
  background: #0a0b0c;
  border-top: 1px solid #1e2022;
  padding: 52px 24px 40px;
  text-align: center;
}

.orbit-footer-logo {
  display: block;
  margin: 0 auto 28px;
  width: clamp(100px, 12vw, 160px);
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.orbit-footer-company {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #aaa;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.orbit-footer-detail {
  font-weight: 300;
  font-size: 13px;
  color: #4a4a4a;
  margin: 0 0 4px;
}

.orbit-footer-detail a {
  color: #4a4a4a;
  text-decoration: none;
}

.orbit-footer-detail a:hover {
  color: #777;
}

.orbit-footer-copy {
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #333;
  margin: 24px 0 4px;
}

.orbit-footer-credit {
  font-weight: 300;
  font-size: 11px;
  color: #2a2a2a;
  margin: 0;
}

.orbit-footer-credit a {
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.orbit-footer-credit a:hover {
  color: #777;
}

/* ── MOBILE OVERRIDES ─────────────────────────────────── */
@media (max-width: 640px) {
  .orbit-text-panel,
  .orbit-text-panel.align-right { text-align: center; }
  .orbit-text-panel .orbit-project-desc,
  .orbit-text-panel.align-right .orbit-project-desc { margin-left: auto; margin-right: auto; }
  .orbit-text-panel .orbit-btn,
  .orbit-text-panel.align-right .orbit-btn { align-self: center; }
}

/* ── TOTOP ────────────────────────────────────────────── */
.orbit-totop {
  display: block;
  margin: 20px auto 0;
  color: #333;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.orbit-totop:hover { opacity: 1; color: #777; }
