/* ════════════════════════════════════════════════════════
   PROJECT GEMINI — dark theme
   Loaded after style.css and project-one.css.
════════════════════════════════════════════════════════ */

/* ── CSS VARIABLE OVERRIDES ─────────────────────────── */
:root {
  --accent:          #8AB4F8;
  --bg:              #0A0A14;
  --card:            #13132A;
  --text:            #D3D4D2;
  --text-muted:      #919191;
  --text-mid:        #919191;
  --border-card:     rgba(255, 255, 255, 0.10);
  --border-light:    rgba(255, 255, 255, 0.07);
  --border-pill:     rgba(255, 255, 255, 0.18);
  --placeholder-bg:  #1A1A2E;
  --placeholder-lbl: #919191;
}

body {
  background: #0A0A14;
}

/* ── SECTION PILL ───────────────────────────────────── */
.section-pill {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #919191;
}

/* ── HERO VIDEO ─────────────────────────────────────── */
.gemini-hero {
  position: relative;
  width: 100%;
  background: #000;
}

.gemini-hero-video {
  width: 100%;
  height: 100vh;
  object-fit: contain;
  display: block;
  background: #000;
}

/* ── CREATIVE BRIEF ─────────────────────────────────── */
.brief-headline {
  color: #D3D4D2;
}

.brief-accent {
  color: var(--accent);
  font-style: normal;
}

/* ── AWARD LINK ─────────────────────────────────────── */
.gemini-award-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.gemini-award-link:hover { opacity: 0.75; }

/* ── RESULTS SECTION ────────────────────────────────── */
.gemini-awards {
  margin-bottom: 48px;
}

.gemini-awards-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}

.gemini-award-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gemini-award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid rgba(138, 180, 248, 0.15);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gemini-award-item:hover {
  border-color: rgba(138, 180, 248, 0.4);
  box-shadow: 0 0 20px rgba(138, 180, 248, 0.08);
}

.gemini-award-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
  flex-shrink: 0;
  line-height: 1;
}

.gemini-award-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* ── AWARD IMAGES ───────────────────────────────────── */
.gemini-award-imgs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.gemini-award-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
