:root {
  --blue: #00a3ff;
  --dark: #0d1a2a;
  --grey: #f4f6f8;
  --border: rgba(0,0,0,0.15);
}

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

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--grey);
  color: #222;
}

/* TOP BAR */
.top-bar {
  background: var(--blue);
  text-align: center;
  padding: 6px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* HEADER */
.header {
  background: green;
  border-bottom: 2px solid var(--blue);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO (FIXED SIZE – IMPORTANT) */
/* LOGO CONTAINER – DO NOT SIZE THIS */
.logo {
  display: flex;
  align-items: center;
}

/* LOGO IMAGE – SIZE ONLY THIS */
.logo img {
  height: 50px;          /* Puffin-style height */
  width: auto;
  max-width: 50px;
  display: block;
}


/* NAV */
.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("assets/img/van-hero.jpg") center / cover no-repeat;
  color: white;
  padding: 90px 20px;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.btn:hover {
  filter: brightness(1.1);
}

/* SERVICES */
.services {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service {
  background: white;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.service h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer a {
  display: inline-block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.muted {
  color: #b8c6d8;
  margin-top: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav {
    gap: 14px;
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }
}