@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Noto+Sans:wght@400;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

:root {
  --navy:  #222B5B;
  --pink:  #C22757;
  --white: #ffffff;
  --light: #f4f5f9;
  --text:  #333333;
}

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--text);
  background: var(--white);
}

/* NAV */
nav {
  background: var(--white);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo-icon {
  height: 38px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul a {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.2s;
}

nav ul a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: #a81f47 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
  }

  .nav-hamburger {
    display: flex;
  }

  #navMenu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  #navMenu.nav-open {
    display: flex;
  }

  #navMenu li a {
    display: block;
    padding: 0.6rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-cta {
    display: inline-block;
    margin-top: 0.4rem;
  }
}

/* HERO */
.hero {
  position: relative;
  background: url('images/team.jpg') center top / cover no-repeat;
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(34, 43, 91, 0.72);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--pink);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover {
  background: #a81f47;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* SERVICES */
.services {
  padding: 5rem 2rem;
  background: var(--light);
}

.services h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  border-top: 4px solid var(--pink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* FOTO CENTRAAL */
.photogrid-section {
  background: var(--light);
  padding: 3rem 2rem;
  text-align: center;
}

.photo-center {
  max-width: 360px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* CTA */
.cta {
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta .btn {
  background: var(--navy);
}

.cta .btn:hover {
  background: #1a2147;
}

/* MISSION */
.mission {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
}

.mission-intro {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}

.mission-intro img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .mission-intro {
    grid-template-columns: 1fr;
  }

  .mission-intro img {
    display: none;
  }
}

.mission-intro-text {
  text-align: center;
}

.mission-intro-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.mission-intro-text p {
  line-height: 1.8;
  opacity: 0.88;
}

.mission-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.mission-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid var(--pink);
  padding-bottom: 0.1rem;
  transition: opacity 0.2s;
}

.mission-link:hover {
  opacity: 0.75;
}

.mission-block h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--pink);
  margin-bottom: 1rem;
}

.mission-block p {
  line-height: 1.8;
  opacity: 0.88;
}

/* TEAM */
.team {
  padding: 5rem 2rem;
  background: var(--light);
}

.team h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.avatar-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
  border: 3px solid var(--pink);
}

.team-card h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.team-card .role {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.team-card p:last-child {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.2s;
  z-index: 50;
  line-height: 1;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--navy);
}

/* FOOTER */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A66C2;
  color: var(--white);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  transition: background 0.2s;
}

.linkedin-btn:hover {
  background: #004182;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

footer a:hover {
  color: var(--white);
}
