/* ============================================================
   ROOT TOKENS / DESIGN SYSTEM – POSTER BLUE + CORAL
   ============================================================ */

:root {
  --font-main: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* TEXT */
  --color-text: #0B0E1A;                     /* deep navy/black */
  --color-text-muted: rgba(11, 14, 26, 0.65);

  /* BRAND COLOURS (from reference image) */
  --feature-color: #FF4F79;                  /* vibrant coral pink */
  --feature-color-soft: #FF6A92;
  --feature-color-bg-soft: rgba(255, 79, 121, 0.08);

  --accent-blue: #002A88;                    /* electric blue */
  --accent-blue-soft: #173B9C;

  --color-accent: var(--feature-color);

  /* BACKGROUNDS */
  --page-bg: #F8F9FC;
  --dark-bg: #002A88;
  --dark-bg-soft: #0B0E1A;

  /* BORDERS & SHADOWS */
  --color-border: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);

  /* LOGO SYSTEM */
  --logo-line-thickness: 12px;
  --logo-inset: 26px;
  --logo-pink: #FF4F79;
  --logo-blue: #002A88;

  /* Layout */
  --header-height: 300px; /* adjust to match your actual header height */
}

/* ============================================================
   GLOBAL RESET & TYPOGRAPHY
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--page-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--color-text);
  font-weight: 650;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  line-height: 1.18;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

p {
  line-height: 1.8;
  letter-spacing: 0;
  margin: 0 0 1.2rem;
}

strong {
  font-weight: 650;
}

/* LINKS ---------------------------------------------------------- */

a {
  color: var(--color-accent);
  text-decoration: none;
}

.section-centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Reusable image bg */

.section-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.icon {
  width: 50px;
  height: 50px;
  fill: var(--feature-color);
}

/* ============================================================
   LOGO CSS PANEL – POSTER STYLE
   ============================================================ */

.logo-panel {
  position: relative;
  background: linear-gradient(135deg, #FF4F79 0%, #FF6A92 45%, #FF4F79 100%);
  min-height: 260px;
  overflow: visible;
}

/* Horizontal line – full width */
.logo-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--logo-inset);
  height: var(--logo-line-thickness);
  background: rgba(255, 255, 255, 0.25);
}

/* Vertical line – full height */
.logo-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: var(--logo-inset);
  width: var(--logo-line-thickness);
  background: rgba(255, 255, 255, 0.25);
}

/* Circle */
.logo-panel-circle {
  position: absolute;
  bottom: calc(var(--logo-inset) + var(--logo-line-thickness));
  right: calc(var(--logo-inset) + var(--logo-line-thickness));
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: var(--logo-line-thickness) solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Inner dot */
.logo-panel-circle::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: var(--logo-blue);
}

/* ============================================================
   HEADER / HERO HEADER STRIP
   ============================================================ */

.hero-header {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.2rem 3.2rem 0;
  color: #ffffff;
}



.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  flex: 0 0 auto;
}

/* Logo sprite */
.brand-main {
  display: inline-block;
  width: 210px;
  height: 60px;
  background-image: url("/images/logo-light.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  text-indent: -9999px;
  overflow: hidden;
}

/* CTA block ------------------------------------------------------ */

.hero-top-cta {
  margin-left: auto;
  flex: 0 1 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.hero-top-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons row – side by side on desktop -------------------------- */

.hero-top-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ============================================================
   BUTTONS – ROUNDED, PINK & BLUE
   ============================================================ */

.btn,
.btn-phone,
.btn-outline-pink,
.btn--primary,
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  background-color: transparent;
}

/* Header-specific CTAs slightly smaller */
.btn-phone,
.btn-outline-pink {
  padding: 0.55rem 1.3rem;
}

/* Solid primary */
.btn--primary,
.btn-phone {
  background-color: var(--feature-color);
  color: #ffffff;
  border-color: var(--feature-color);
  box-shadow: 0 10px 22px rgba(255, 79, 121, 0.35);
}

/* Solid hover */
.btn--primary:hover,
.btn--primary:focus-visible,
.btn-phone:hover,
.btn-phone:focus-visible {
  background-color: #e3416b;
  border-color: #e3416b;
  box-shadow: 0 12px 26px rgba(255, 79, 121, 0.5);
  transform: translateY(-1px);
}

/* Outline buttons – blue frame */
.btn--outline,
.btn-outline-pink {
  background: #ffffff;
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Outline hover */
.btn--outline:hover,
.btn--outline:focus-visible,
.btn-outline-pink:hover,
.btn-outline-pink:focus-visible {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
}

/* ============================================================
   NAV / MENU
   ============================================================ */

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.1rem;
  letter-spacing: 0.06em;
}

.menu-item {
  position: relative;
  font-weight: 500;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
}

/* ============================================================
   RESPONSIVE HEADER & CONTAINERS
   ============================================================ */

@media (max-width: 1024px) {
  .hero-header {
    padding-inline: 2rem;
  }

  .nav {
    gap: 1.2rem;
  }

  .page-container {
    padding-inline: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-header {
    padding-inline: 1.4rem;
  }

  .brand-main {
    width: 170px;
    height: 32px;
  }

  .hero-top-buttons {
    flex-direction: column;
    align-items: flex-end;
  }

  .nav {
    margin-top: 0.9rem;
    gap: 0.8rem;
  }

  .page-container {
    padding-inline: 1.4rem;
  }
}

/* ============================================================
   FULL VIDEO BACKGROUND HERO (NO OVERLAY)
   ============================================================ */

.full-video-section {
  position: relative;
  width: 100%;
  height: 100vh;              /* full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background video */
.full-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* covers entire section */
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;       /* prevents accidental clicking */
}

/* Content on top of video */
.full-video-content {
  position: relative;
  z-index: 2;                 /* sits above video */
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

/* Reuse your existing hero grid */
.full-video-content .hero-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

/* Make hero text readable against raw video */
.full-video-content h1,
.full-video-content .hero-kicker,
.full-video-content .hero-banner-lede {
  color: #ffffff !important;
}



/* ============================================================
   INTERACTIVE / ROLLOVER EFFECTS
   ============================================================ */

a,
button,
.btn,
.btn-phone,
.btn-outline-pink,
.feature-heading,
.nav a {
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-accent);
}

/* Feature label hover */
.feature-heading:hover,
.feature-heading:focus-visible {
  background-color: var(--feature-color);
}

/* Generic hover helpers */
.hover-accent-text:hover,
.hover-accent-text:focus-visible {
  color: var(--feature-color);
}

.hover-accent-bg:hover,
.hover-accent-bg:focus-visible {
  background: var(--feature-color-bg-soft);
}

.hover-raise:hover,
.hover-raise:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Accessible focus outline */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================================
   FEATURE HEADING – PILL STYLE
   ============================================================ */

.feature-heading {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  background: var(--accent-blue);
  color: #ffffff;
  font-family: var(--font-main);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0.7rem 0;
  border: none;
}

.feature-heading span {
  display: inline-block;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.page-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.section {
  padding: 3.4rem 0;
}

.section--tight {
  padding: 2rem 0;
}

/* ============================================================
   CARD – LIGHT PANEL
   ============================================================ */

.card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 35px rgba(255, 79, 121, 0.12);
  position: relative;
  z-index: 2;
}

/* LISTS ----------------------------------------------------------- */

ul,
ol {
  margin: 0 0 1.4rem 1.4rem;
  padding: 0;
}

li {
  margin-bottom: 0.45rem;
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
}

/* ============================================================
   DROPDOWN BASE
   ============================================================ */

.has-dropdown > a::after {
  content: "▾";
  margin-left: 0.35rem;
  opacity: 0.7;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  white-space: nowrap;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.5rem 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  letter-spacing: 0.04em;
  color: #0B0E1A;
  opacity: 0.9;
}

.dropdown a:hover {
  background: #FFE0E8;
  opacity: 1;
}

/* Show dropdown on hover (desktop) */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

/* ============================================================
   HERO WRAPPER + BG (FULL SCREEN)
   ============================================================ */

/* Wraps header + hero – background image + overlay */
.hero-shell {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 100vh;
  background-image: url("images/space series-6.jpg"); /* your hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional background video layer */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* Ensure hero content + menu on top of overlay/video */
.hero-shell > * {
  position: relative;
  z-index: 2;
}

/* Pink curved overlay */
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 79, 121, 0.9) 0%, transparent 55%);
  mix-blend-mode: normal;
  pointer-events: none;
}

/* ============================================================
   HERO SECTION (TEXT + MEDIA)
   ============================================================ */

.hero-banner {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;         /* vertical centering */
  justify-content: flex-start;
  padding: 4rem 0;
  color: #ffffff;
  z-index: 1;
}

.hero-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

/* Left copy column */
.hero-banner-copy {
  max-width: 640px;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFE0E8;
  padding: 0.1rem 0;
  margin-bottom: 0.5rem;
}

.hero-banner h1 {
  color: #ffffff;
}

.hero-banner-lede {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-banner-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Right media column */

.hero-banner-media {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-media .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-banner-media .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Soft spotlight behind video */
.hero-banner-media::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.35), transparent 70%);
  pointer-events: none;
}

/* ============================================================
   HERO VIDEO BACKGROUND
   ============================================================ */

.hero-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* fills entire hero nicely */
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;           /* prevents mouse interaction */
}

/* everything inside hero stays above video */
.hero-shell > * {
  position: relative;
  z-index: 2;
}

/* ============================================================
   BENEFIT STRIP – LIGHT NEUTRAL
   ============================================================ */

.benefit-strip {
  background: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* ============================================================
   PRODUCT / RANGE CARDS
   ============================================================ */

.range-card {
  display: flex;
  flex-direction: column;
}

.range-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin-bottom: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.range-card-footer {
  margin-top: auto;
}

.range-card h5 {
  margin-bottom: 0.4rem;
}

/* ============================================================
   HERO RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-banner-inner {
    grid-template-columns: 1fr;
  }

  .hero-banner-media {
    min-height: 260px;
  }

  .hero-banner-media::after {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 600px) {
  .hero-banner {
    padding: 2.6rem 0 3.2rem;
  }

  .hero-banner-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   COMMON LAYOUT RATIOS (GRIDS)
   ============================================================ */

.grid-50-50,
.grid-60-40,
.grid-40-60,
.grid-3,
.grid-30-30-30,
.grid-4,
.stack {
  display: grid;
}

/* 2 columns */
.grid-50-50 {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.grid-60-40 {
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.grid-40-60 {
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
}

/* 3 columns */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.grid-30-30-30 {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* 4 columns */
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Stacked blocks */
.stack {
  gap: 2rem;
}

/* Internal spacing for grid items (no card style) */
.grid-50-50 > *,
.grid-60-40 > *,
.grid-40-60 > *,
.grid-3 > *,
.grid-30-30-30 > *,
.grid-4 > * {
  padding: 1.6rem 1.3rem;
}

/* Grid responsiveness */

@media (max-width: 1024px) {
  .grid-50-50,
  .grid-60-40,
  .grid-40-60,
  .grid-3,
  .grid-30-30-30 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-50-50,
  .grid-60-40,
  .grid-3,
  .grid-30-30-30,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .flex {
    flex-direction: column;
    gap: 1.4rem;
  }
}

/* ============================================================
   FOOTER – LIGHT ON DARK SLATE
   ============================================================ */

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--dark-bg-soft);
  color: #e5e7eb;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-meta {
  flex: 1 1 auto;
}

.footer-line {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  text-decoration: none;
  color: #e5e7eb;
  opacity: 0.78;
}

.footer-links a:hover {
  opacity: 1;
}

/* Footer logo panel content (if used) */
footer .logo-panel-content {
  color: #e5e7eb;
  font-size: 0.9rem;
}

footer .logo-panel-content h1,
footer .logo-panel-content h2,
footer .logo-panel-content h3,
footer .logo-panel-content h4,
footer .logo-panel-content h5,
footer .logo-panel-content h6 {
  text-transform: uppercase;
  color: #f9fafb;
}

footer .logo-panel-content a {
  color: #ffb4ca !important;
}

/* Responsive footer layout */

@media (max-width: 1024px) {
  .footer-inner {
    padding-inline: 2rem;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding-inline: 1.4rem;
  }
}
