:root {
    --bg-color: #f8fafc;
    --text-color: #0f172a;
    --accent-blue: #0284c7;
    --accent-green: #16a34a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 550px;
    width: 100%;
}

.logo {
    max-height: 70px;  /* Bepaalt de hoogte; breedte schaalt automatisch mee */
    width: auto;
    margin-bottom: 1.5rem;
}
h1 {
  color: #11ac11; /* Precies dezelfde groene kleur als het logo */
}

.logo {
  height: 80px; /* Of de hoogte die het oorspronkelijk had, bijv. 50px of 70px */
  width: auto;  /* Behoudt automatisch de juiste verhouding */
}

h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.opening {
    font-size: 1.25rem;
    font-weight: 500;
    font-style: italic;
    border-left: 3px solid var(--accent-blue);
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: #334155;
}

.about-content {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.nav-link {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.about-photo {
  width: 100%;
  max-width: 280px; /* Mooi compact formaat voor een portret */
  height: auto;
  border-radius: 12px; /* Zachte hoeken */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtiele diepte */

  /* Lichte correctie voor frisheid */
  filter: contrast(105%) brightness(102%); 
}
p {
  font-family: system-ui, -apple-system, sans-serif; /* Clean, modern font */
  font-size: 1rem;                                  /* Standard text size */
  line-height: 1.6;                                 /* Gives lines room to breathe */
  color: #2c3e50;                                   /* Soft dark gray instead of harsh black */
  max-width: 65ch;                                  /* Prevents text lines from stretching too wide */
  margin-bottom: 1.25rem;                           /* Nice spacing between paragraphs */
}