/* base.css — reset + base colors for navy theme */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Radio Canada Big", sans-serif;
  color: #ffffff;
  background: #0c1b2a;
  /* deep navy */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 .6rem 0;
  font-weight: 700;
  color: #ffffff;
}

p {
  margin: 0 0 1rem 0;
  color: #cfd8e3;
}

/* header */
.header-inner,
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  background: #00192f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 50;
}

.site-header.small {
  padding: 0.6rem 0;
}

.site-header .container {
  padding: 5px 0;
}

.logo {
  height: 70px;
  display: block;
}

/* nav */
.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  font-size: .95rem;
  color: white;
  padding: 8px 10px;
  border-radius: 8px;
  background: linear-gradient(#00a2fc, #00c4b2);
  font-weight: bold;
  letter-spacing: 1px;
  transition: letter-spacing 0.5s;
  font-style: italic;
}
.nav-link:hover{
  opacity: 0.9;
  letter-spacing: 1.3px;
}

.nav-link:hover,
.nav-link:focus {
  outline: none;
}

/* footer */
.site-footer {
  padding: 3rem 0;
  color: #9aa5b1;
  text-align: center;
}

/* headings */
.heading {
  background: linear-gradient(#00a2fc, #00c4b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2em;
    font-style: italic;
}
.heading h2{
  text-align: center;
  margin-bottom: 0;
}

.eyebrow {
  font-weight: 600;
  color: #e6f3ff;
  margin-bottom: 0;
}

.lead {
  color: #cfd8e3;
  font-size: 1.05rem;
  max-width: 70ch;
}

/* small helpers */
.tag {
  display: inline-block;
  background: #1e3450;
  /* tag bg */
  color: #cfe6ff;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: .78rem;
  margin-right: .5rem;
}