:root{
  --bg-dark: #070816;
  --bg-darker: #050612;

  --text-light: #eef0ff;
  --text-muted: rgba(238,240,255,.75);

  --accent: #6f86ff;
  --line: rgba(255,255,255,.35);

  --max-width: 1280px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-light);
  background:
    radial-gradient(900px 520px at 50% 20%, rgba(111,134,255,.18), transparent 60%),
    linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
  min-height: 100vh;
}

/* ================= NAV ================= */

.topbar{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 40px 0;
  display:flex;
  justify-content:center;
  position:relative;
}

.nav-pill{
  display:flex;
  gap:40px;
  padding:12px 28px;
  border-radius:999px;
  border:1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.05);
}

.nav-pill a{
  text-decoration:none;
  color: var(--text-muted);
  font-weight:500;
  font-size:15px;
  transition: .2s ease;
}

.nav-pill a:hover{ color:#fff; }

.nav-pill .is-active{
  color: var(--accent);
  font-weight: 600;
}

.contact-btn{
  position:absolute;
  right:40px;
  top:40px;
  padding:10px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.6);
  text-decoration:none;
  color:#fff;
  font-size:15px;
  background: rgba(255,255,255,.05);
  transition: .2s ease;
}

.contact-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.85);
}

.contact-btn.is-active{
  border-color: var(--accent);
}

/* ================= CONTACT LAYOUT ================= */

.contact-wrap{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 40px 140px;
}

.contact-hero{
  max-width: 760px; /* zodat alles links blijft zoals je design */
}

.contact-title{
  font-family: "DM Serif Display", serif;
  font-size: clamp(56px, 6vw, 92px);
  letter-spacing: -0.5px;
  margin: 0 0 24px;
}

.contact-sub{
  margin: 0 0 70px;
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.35;
  color: rgba(238,240,255,.9);
}

/* Social circles */
.contact-icons{
  display:flex;
  gap: 46px;
  align-items:center;
}

/* ✅ ICONS = zelfde stijl als contact knop */
.icon{
  width: 86px;
  height: 86px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  /* zelfde look als contact-btn */
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);

  transition: transform .18s ease, border-color .18s ease;
}

.icon:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.85);
}

/* Material Symbols styling */
.icon .material-symbols-rounded{
  font-size: 34px;
  color: var(--text-light); /* ✅ nu wit zodat het matcht */
  line-height: 1;
}

.icon:hover .material-symbols-rounded{
  color: var(--accent);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){

  .contact-wrap{
    padding: 110px 18px 120px;
  }

  .topbar{
    padding: 40px 40px 0;
  }

  .contact-icons{
    gap: 22px;
    flex-wrap: wrap;
  }

  .icon{
    width: 72px;
    height: 72px;
  }

  .icon .material-symbols-rounded{
    font-size: 30px;
  }
}