/* ---------- ROOT COLORS ---------- */
:root {
  --primary: #8AF1FE;
  --secondary: #009B6D;
  --accent: #F5C542;
  --text: #222;
  --light-bg: #f7fafa;
}

/* ---------- GLOBAL LAYOUT FOR STICKY FOOTER ---------- */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* pushes footer down when content is short */
}

/* ---------- BODY ---------- */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
}

/* ---------- HEADER & NAV ---------- */
header {
  background: var(--primary);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .tagline {
  font-weight: bold;
  font-size: 20px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  padding-bottom: 4px; /* space for underline */
}

/* ACTIVE PAGE UNDERLINE */
nav a.active {
  border-bottom: 3px solid var(--accent);
}

/* Hover state (optional but clean) */
nav a:hover {
  border-bottom: 3px solid var(--secondary);
}

/* ---------- HERO SECTION ---------- */
.hero {
  display: flex;
  height: 952.5px;
  padding: 40px;
  align-items: center;
  gap: 40px;
}

.hero img {
  width: 50%;
  height: 100%;
  max-height: 800px;
  object-fit: cover;
  border-radius: 10px;
}

.hero .blurb {
  width: 50%;
  font-size: 18px;
  line-height: 1.5;
  padding: 0 60px 0 0;
}

/* ---------- SECTION BANDS ---------- */
.section-band {
  padding: 60px 40px;
  text-align: center;
}

/* ---------- FEATURE BOXES ---------- */
.box-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.box {
  width: 30%;
  background: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.box p {
	text-wrap: balance;
	padding: 0 40px;
}

/* ---------- CONNECT BAND ---------- */
.connect-band {
  background: var(--secondary);
  padding: 60px 40px;
  color: #fff;
  text-align: center;
}

.connect-icons img {
  width: 60px;
  margin: 0 15px;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 20px;
  background: var(--primary);
  margin-top: auto; /* ensures footer stays at bottom */
}
