/* ═══════════════════════════════════════════════════════════
   Parabolic Holding AS — Design System
   ═══════════════════════════════════════════════════════════
   Edit these CSS variables to quickly tweak the design.
   All colors, fonts, and spacing are controlled from here.
*/

:root {
  /* ── Colors ─────────────────────────────────────────── */
  --color-primary:      #1a2744;       /* dark navy           */
  --color-primary-dark:  #0f1a2e;      /* deeper navy         */
  --color-accent:        #4a9eff;      /* bright blue accent  */
  --color-accent-glow:   rgba(74, 158, 255, 0.3);
  --color-text:          #2c3e50;      /* body text           */
  --color-text-light:    #5a6a7a;      /* secondary text      */
  --color-bg:            #f5f6f8;      /* light grey bg       */
  --color-bg-white:      #ffffff;
  --color-border:        #e2e6ea;

  /* ── Typography ─────────────────────────────────────── */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Spacing ────────────────────────────────────────── */
  --section-padding:     80px 0;
  --content-max-width:   1100px;
  --content-padding:     0 40px;

  /* ── Transitions ────────────────────────────────────── */
  --transition-fast:     0.2s ease;
  --transition-smooth:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ═══════════════════════════════════════════════════════════
   Reset & Base
   ═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: #3080d0;
}


/* ═══════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 26, 46, 0.4) 0%,
    rgba(15, 26, 46, 0.2) 50%,
    rgba(15, 26, 46, 0.5) 100%
  );
}

.hero__logo {
  position: absolute;
  top: 20px;
  left: 24px;
  height: 28px;
  width: auto;
  z-index: 2;
}

.hero__title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  padding: 60px var(--content-padding);
}


/* ═══════════════════════════════════════════════════════════
   Content Sections (Mission, Contact)
   ═══════════════════════════════════════════════════════════ */

.section {
  padding: var(--section-padding);
  background: var(--color-bg-white);
}

.section--alt {
  background: var(--color-bg);
}

.section__inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--content-padding);
  display: flex;
  align-items: center;
  gap: 48px;
}

.section__image {
  flex: 0 0 45%;
  border-radius: 4px;
  overflow: hidden;
}

.section__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-smooth);
}

.section__image:hover img {
  transform: scale(1.02);
}

.section__content {
  flex: 1;
}

.section__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
}

.section__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.section__link:hover {
  color: #3080d0;
  text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */

.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
}


/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --section-padding: 48px 0;
    --content-padding: 0 20px;
  }

  .hero {
    min-height: 300px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .section__inner {
    flex-direction: column;
    gap: 24px;
  }

  .section__image {
    flex: none;
    width: 100%;
  }
}
