/*Index*/
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #222;
  line-height: 2;
}

header {
  background: linear-gradient(90deg, #0d7cc1, #000000);
  color: white;
  padding: 1rem 0;
  text-align: center;
  top: 0;
}

header h1 {
  margin: 5;
  font-size: 2rem;
}

.about-content {
  display: flex;
  align-items: center;        
  gap: 2rem;                  
}

.about-content .text {
  flex: 1;
  width: 250px;
}

.about-content .photo img {
  width: 200px;
  border-radius: 50%;         
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
}

section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease;
}

section h2 {
  text-align: center;
  color: #00416A;
  margin-top: 1rem;
}

.project {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
}

/*CV*/
.cv-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease;
}

.cv-wrapper h2 {
  text-align: center;
  color: #00416A;
  margin-bottom: 1rem;
}

.cv-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cv-header a {
  color: #00416A;
  text-decoration: none;
}

.cv-header a:hover {
  text-decoration: underline;
}

.cv-item {
  margin-bottom: 1.5rem;
}

.cv-item h4 {
  margin-bottom: 0.3rem;
}

.period {
  font-style: italic;
  color: #555;
  margin-bottom: 0.5rem;
}

.cv-wrapper ul {
  margin: 0 0 1rem 1.2rem;
}

.cv-wrapper hr {
  border: none;
  border-top: 2px solid #00416A;
  margin: 1.5rem 0;
  opacity: 0.3;
}


/*Hobby pagina*/
.hobby-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hobby-wrapper h2 {
  text-align: center;
  color: #00416A;
  margin-bottom: 1rem;
}

.hobby-wrapper h3 {
  color: #00416A;
  margin-top: 2rem;
}

.hobby-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hobby-list {
  margin-left: 1.5rem;
  list-style-type: square;
  color: #333;
}

.photohobby img {
  width: 900px;         
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border-radius: 12px;
}

.photohobby2 {
  display: flex;                  
  justify-content: center;        
  align-items: center;            
  gap: 2rem;                      
  margin: 1.5rem 0;               
  flex-wrap: wrap;                
}

.photohobby2 img {
  width: 45%;                     
  max-width: 400px;               
  height: auto;                   
  border-radius: 12px;            
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);             
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Contactpagina --- */
.contact-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-wrapper h2 {
  text-align: center;
  color: #00416A;
  margin-bottom: 1rem;
}

.contact-wrapper p {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info a {
  color: #00416A;
  text-decoration: none;
}

/*Formulier*/
.contact-form {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact-form h3 {
  color: #00416A;
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00416A;
}

.contact-form button {
  background-color: #00416A;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
}

/*Ervaring pagina*/
.ervaring-wrapper {
  max-width: 900px;
  margin: 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ervaring-wrapper h2 {
  text-align: center;
  color: #00416A;
  margin-bottom: 1.5rem;
}

.ervaring-item {
  margin-bottom: 1.5rem;
}

.ervaring-item h4 {
  margin-bottom: 0.3rem;
  color: #333;
}

.ervaring-item p {
  color: #555;
  line-height: 1.6;
}

.ervaring-list {
  list-style-type: square;
  margin-left: 1.5rem;
  color: #333;
}
