:root {
    --apple-white: #f5f5f7;
    --apple-black: #1d1d1f;
    --apple-gray: #86868b;
    --apple-blue: #0066cc;
    --apple-accent: #5ac8fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body {
    background-color: var(--apple-white);
    color: var(--apple-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation Styling */
.apple-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}

.apple-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.apple-nav a {
    text-decoration: none;
    color: var(--apple-black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.apple-nav a:hover {
    color: var(--apple-blue);
}

/* Sections */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    animation: fadeIn 1s ease-out;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--apple-accent);
    margin-bottom: 20px;
}

/* Section Styles */
.about-section, .music-section, .projects-section {
    margin-bottom: 80px;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* .music-links{
    display: flex;
    color: #202020;
    
} */

.about-grid, .project-grid {
  display: flex;
      gap: 20px;
      padding: 0 20px;
      margin-top: 20px;
      flex-direction: row;
}

.about-card, .project-card {
    background-color: var(--apple-white);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-card:hover, .project-card:hover {
    transform: scale(1.03);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--apple-gray);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid, .project-grid {
        grid-template-columns: 1fr;
    }
}

.project-image{
width: 750px;
}

/* .contact {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    min-height: 80vh;
    animation: fadeIn 1s ease-out; */
/* } */

.linkjes {
    position: absolute;
    top: px; /* Afstand van de bovenkant, pas aan naar wens */
    left: 20px; /* Afstand van de linkerkant, pas aan naar wens */
    background-color: #202020; /* Optioneel: achtergrondkleur */
    border: 1px solid #ddd; /* Optioneel: rand */
    border-radius: 5px;
    padding: 30px;
    /* width: fit-content; Zorgt ervoor dat het formaat compact is */
}

.linkjes h2 {
    margin-bottom: 10px;
    color: white;
}

.linkjes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.linkjes li {
    margin-bottom: 5px;
}

.linkjes a {
    text-decoration: dashed;
    color:white; /* Blauw zoals links */
}

.linkjes a:hover {
    text-decoration: underline; /* Effect bij hover */
}
.link-logo
{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--apple-accent);
    margin-bottom: 20px;
}

.contact-info {
    position: absolute;
    top: 500px; /* Pas aan voor juiste hoogte */
    right: 20px; /* Zorgt ervoor dat het rechts staat */
    background-color: #202020; /* Optioneel: achtergrondkleur */
    border: 1px solid #ddd; /* Optioneel: rand */
    border-radius: 5px;
    padding: 30px;
    width: fit-content; /* Zorgt ervoor dat het formaat compact blijft */
    text-align: left; /* Zorgt ervoor dat tekst netjes links wordt uitgelijnd */
    margin-top: -5rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center; /* Zorgt ervoor dat tekst en logo op één lijn staan */
}

.contact-info a {
    text-decoration: none;
    color: white; /* Kleur van de tekst */
    margin-left: 20px; /* Ruimte tussen logo en tekst */
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-logo {
    width: 20px; /* Grootte van de logo's */
    height: 20px;
    display: inline-block;

}

.contact-info h2 {
    margin-bottom: 10px;
    color: white; /* Kleur van de titel */
}

.projects-section {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 20px;
  }
  
  .content-container {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* Zorgt voor ruimte tussen de films en games-secties */
  }
  
  .films-section, .games-section {
    flex: 1; /* Zorgt dat beide secties evenveel ruimte innemen */
  }
  
  .project-grid {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Zorgt voor ruimte tussen de items */
  }
  
  .film-item, .game-item {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .film-title, .game-title {
    margin-right: 15px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .game-description {
    margin-right: 15px;
    font-size: 14px;
    color: #555;
  }
  
  .film-image, .game-image {
    width: 120px; /* Pas de breedte aan naar wens */
    height: auto;
    border-radius: 5px; /* Optioneel: afgeronde randen */
  }
  .film-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px; /* Zorgt voor meer ruimte tussen de film-items */
  }
  
  .film-image {
    margin-left: 15px; /* Optionele marge tussen de titel en de afbeelding */
    width: 120px;
    height: auto;
    border-radius: 5px;
  }
  /* Algemene stijl voor de sectie */
/* Algemene stijl voor de sectie */
.projects-section {
    padding: 40px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
  }
  
  /* Stijl voor de sectie titel */
  .projects-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  /* Grid indeling met 3 kolommen per rij */
  .project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolommen */
    gap: 20px;
    padding: 0 20px;
    margin-top: 20px;
  }
  
  /* Kaart stijl */
  .project-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Titel in de kaart */
  .project-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000000;
  }
  
  /* Paragraaf binnen de kaarten */
  .project-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* Hover effect voor kaarten */
  .project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Zorg ervoor dat de layout goed past op kleinere schermen */
  @media (max-width: 1024px) {
    .project-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 kolommen op kleinere schermen */
    }
  }
  
  @media (max-width: 768px) {
    .project-grid {
      grid-template-columns: 1fr; /* 1 kolom op mobiele schermen */
    }
  }
  
  /* Verbeter de afmetingen van de project-kaarten op kleinere schermen */
  .project-card {
    width: 100%;
  }
  .games-container {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.games-container .game {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.games-container .game img {
    width: 100px;
    height: auto;
    margin-right: 15px;
}

.games-container .game p {
    text-align: left;
    margin: 0;
}

  
.games-location{
    display: flex;
   flex-direction: column;
}