:root {
  --navy: #0F172A;
  --indigo: #4F46E5;
  --light-bg: #dfdddd;
  --text-dark: #0F172A;
  --text-secondary: #475569;
}

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

body {
  font-family: 'Inter', sans-serif;
  /* page background color only; hero will show the large image */
  background-color: var(--navy);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ================= NAVBAR ================= */

.navbar {
/*  background: #c9d7fa; */
/*background: linear-gradient(0deg, rgb(167, 212, 238) 0%, rgb(140, 156, 202) 37%, rgb(144, 140, 223) 100%);*/
  background-image: url("/public/background-hex.png");
  background-position: center;
  background-repeat: repeat;
padding: 0px 0px 18px 0px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 128px;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

nav a:hover {
  background-color: #EEF2FF;
  color: var(--indigo);
}

nav a.active {
  background-color: var(--indigo);
  color: white;
  font-weight: 600;
}

.btn-primary {
  background: var(--indigo);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  width: 600px;
  width: 20%;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

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

.hero {
  padding: 20px 0 10px 0;
/*  border-top: 2px solid #c9c9c9; */
/*  border-bottom: 2px solid #c9c9c9; */
  background-image: url("/public/background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
}

.hero p {
  max-width: 600px;
  margin: 20px 0 20px 0;
  color: var(--text-secondary);
}

/* ================= SECTIONS ================= */

section {
  padding: 20px 0 40px 0;
}

section.white {
  background: white;
}

.cta {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 20px 0 20px 0;
}

.cta h2 {
  margin-bottom: 30px;
}

/* ================= FOOTER ================= */

footer {
/*
  background-image: url("/public/background-hex-dark3.png");
  background-repeat: repeat;
  background-position: bottom center;
  display: flex;
*/
  background: var(--navy); 
  align-items: center;
  justify-content: center;
  width: 100%;
  color: white;
  text-align: center;
  padding: 20px 0 10px 0;
}

.footer-logo {
  height: 96px;
  margin: 0;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .logo {
    height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    margin: 6px 0;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  section {
    padding: 60px 0;
  }

}
