:root {
  --bg: #f7f7f2;
  --text: #0a1a2f;
  --accent: #123456;
  --line: rgba(0,0,0,0.15);
  --light-gray: #e8e8e8;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3 {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

h1 { font-size: 32px; letter-spacing: -0.5px; }
h2 { font-size: 24px; margin-bottom: 15px; }
h3 { font-size: 20px; margin-bottom: 10px; }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}

#main_container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  padding: 30px;
  gap: 40px;
}

/* Linkerkolom */
#left_col {
  width: 280px;
  padding: 25px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.profile_title {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Contact iconen */
#left_col p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

#left_col p i {
  width: 20px;
  height: 20px;
  stroke-width: 1.6;
}

/* LinkedIn */
.linkedin-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linkedin-icon {
  width: 20px;
  height: 20px;
  fill: #0A66C2;
}

/* Taalbalk */
.language-switcher {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  font-size: 14px;
}

.language-switcher .lang {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s;
}

.language-switcher .lang:hover {
  opacity: 1;
}

.language-switcher .lang.active {
  opacity: 1;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.tab {
  background: var(--light-gray);
  border: none;
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
}

.tab:hover {
  background: #d2d2d2;
}

.tab.active {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Tab content */
.tab_content {
  display: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tab_content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* CV BLOCKS */
.cv-block {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 28px;
}

.t-cv-text h3 {
  border-left: 4px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 12px;
}

.t-cv-text ul {
  margin: 8px 0 18px 0;
  padding-left: 20px;
  list-style: disc;
}

.t-cv-text li {
  margin-bottom: 4px;
}

/* Professionele waarden vet */
.t-waarden-list li strong {
  font-weight: 600;
}

#content_container {
  width: 100%;
  max-width: 750px; /* zelfde breedte als CV-tab */
}