/* ===== Algemene Styling ===== */
html {
    overflow-y: scroll;
}

body {
    margin: 0;
    padding: 20px;
    font-family: 'Montserrat', sans-serif; 
    background-color: #003153;
    color: #f0f0f0;
}

.bullet {
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    background-color: #c2191f;
    border-radius: 50%; 
    vertical-align: baseline; 
    margin-left: 5px; 
}

/* ===== Link Styling ===== */
a {
    color: #ffb347; /* Gele links */
}

/* ===== Logo Styling ===== */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
    height: auto;
    z-index: 10;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* ===== Header Styling ===== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #003153;
    position: relative;
}

.my {
    color: #FFA500;
    font-family: 'Montserrat', sans-serif;
}

.portfolio {
    color: #dbdcde;
    font-family: 'Montserrat', sans-serif;
}

.hearder-title {
    text-align: center;
    font-size: 3rem; 
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}

.header-title {
    animation: bounceIn 1.5s ease-out; 
    font-size: 3rem; 
    font-family: 'Montserrat', sans-serif;
    text-align: center; 
    margin: 20px 0;
}


/* ===== Navigatie Styling ===== */
nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.menu-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffb347;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ffb347;
    border-radius: 10px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.menu-link:hover {
    background-color: #ffb347;
    color: #003153;
}


/* ===== Startpagina Styling (index.html) ===== */
.welcome-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.hello-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    color: #dbdcde;
    margin-bottom: 10px;
}

.welcome-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #dbdcde;
    margin-bottom: 10px;
}

.welcome-title .highlight {
    color: #ffb347;
}

.welcome-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #dbdcde;
    margin-bottom: 30px;
}

.portfolio-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffb347;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ffb347;
    border-radius: 10px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.portfolio-link:hover {
    background-color: #ffb347;
    color: #003153;
}

/* ===== Portfolio Styling ===== */
.portfolio-container {
    margin: 20px;
    text-align: center;
    line-height: 1.6;
}

.portfolio-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffb347;
}

/* ===== Learning Outcomes Styling ===== */
.learning-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    gap: 40px;
}

.learning-card {
    background-color: #1a355d;
    border-radius: 10px;
    padding: 20px;
    line-height: 1.8;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.learning-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #ffb347;
    margin-bottom: 10px;
}

.learning-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #c2191f;
    margin-bottom: 10px;
}

.learning-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.learning-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.learning-card ul {
    list-style-type: none;
    padding-left: 0;
}

.learning-card ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
    margin-bottom: 8px;
}

/* ===== Projects Styling ===== */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

.project-card {
    background-color: #1a355d;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.project-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #c2191f;
    margin-bottom: 10px;
}

.project-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.4;
    margin-bottom: 15px;
}

.project-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffb347;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ffb347;
    border-radius: 10px;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}

.project-link:hover {
    background-color: #ffb347;
    color: #003153;
}

/* ===== Projectexp Styling ===== */
.projectexp-body {
    margin: 0;
    padding: 20px;
    background-color: #003153;
    color: #f0f0f0;
    font-family: 'Montserrat', sans-serif;
}

.projectexp-title {
    font-size: 2rem;
    font-weight: bold;
    color: #c2191f;
    text-align: center;
    margin-bottom: 40px;
}

.projectexp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 20px 0;
}

.projectexp-card {
    background-color: #1a355d;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.projectexp-card h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffb347;
    margin-bottom: 10px;
}

.projectexp-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== About Me Styling ===== */
.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    align-items: center;
}

.profile-photo {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    justify-self: center;
}

.about-text-container {
    background-color: #1a355d;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    color: #f0f0f0;
    line-height: 1.6;
}

.about-text h2 {
    font-size: 2rem;
    color: #ffb347;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ===== Uitklapbare content ===== */
.hidden-content {
    display: none;
    transition: all 0.3s ease;
}

.hidden-content.visible {
    display: block;
}

.clickable {
    color: #ffb347;
    cursor: pointer;
    text-decoration: underline;
}

.clickable:hover {
    color: #ff8f00;
}

.responsive-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 10px;
}

.image-spacing {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 125px;
}

* {box-sizing:border-box}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }

.prev:hover, .next:hover {
  background-color: #ffb347;
}

.text {
  color: #f0f0f0;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #ffb347;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dots {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ffb347;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dots:hover {
  background-color: #f6e2c7;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}