/*
font-family: 'DM Sans', sans-serif;
font-family: 'Noto Sans', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Work Sans', sans-serif;
font-family: 'Belleza', sans-serif;
font-family: 'Merriweather', serif;
*/
@media (max-width: 1024px) {
  /* tablets */
}

@media (max-width: 768px) {
  /* phones */
}

@media (max-width: 480px) {
  /* very small phones */
}


html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  /* voorkomt horizontale scroll */
  font-family: 'Sefri 6', sans-serif;
  /* standaard font */
}


header,
nav {
  margin: 0;
  padding: 0;
}

h5 {
  color: white;
}


.slideshow {
  width: 300px;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.5s;
}


.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(170, 199, 235, 0.9);
  height: auto;
  font-family: 'Sefri 6', sans-serif;
  font-size: 20px;
  height: auto;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 1vw 5vw;
  /* space from edges */
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-left .logo {
  height: 6.5vh;
  flex-shrink: 0;
  margin: 1px 1px;
}

.nav-bar ul {
  display: flex;
  font-size: 2.8vh;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 80vw;
  /* <--- limit nav links container width */
  justify-content: flex-end;

}

.nav-bar li {
  flex-shrink: 0;
  /* prevent items from shrinking and breaking */
}

.nav-bar li a {
  color: navy;
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
  border-radius: 4px;
  white-space: nowrap;
  /* don’t break words */
}

.nav-bar li a:hover {
  color: white;
  transition: all 0.2s ease;
}

/* optional: hide scrollbar in modern browsers */
.nav-bar ul::-webkit-scrollbar {
  display: none;
}

.nav-bar ul {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Tablets */
@media (max-width: 1024px) {

  .nav-left .logo {
    height: 3.5vh;
  }

  .nav-bar {
    padding: 0.5rem 5vw;
    font-size: 18px;
  }

  .nav-bar ul {
    max-width: 75vw;
    gap: 1.5rem;
  }

  .nav-bar li a {
    padding: 8px;
    font-size: 16px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .nav-left .logo {
    height: 3.5vh;
  }

  .nav-bar {
    padding: 0.5rem 3vw;
    font-size: 16px;
  }

  .nav-bar ul {
    max-width: 70vw;
    gap: 1rem;
  }

  .nav-bar li a {
    padding: 6px;
    font-size: 14px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .nav-left .logo {
    height: 3.5vh;
  }

  .nav-bar {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-bar ul {
    flex-direction: column;
    max-width: 100%;
    overflow-x: visible;
  }
}


/* Standaard: hamburger weg op desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: navy;
  z-index: 1001;
}

/* Desktop: normaal menu */
.nav-bar ul {
  display: flex;
  gap: 20px;
}

/* Mobiel: hamburger tonen, menu verbergen */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-bar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(170, 199, 235, 0.95);
    width: 60%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-bar ul.show {
    display: flex;
  }

  .nav-bar li a {
    padding: 12px;
    font-size: 18px;
    display: block;
  }
}



/* progress */

/* Progress bar container */

#myProgress {
  position: fixed;
  top: calc(1vw + 8.5vh);
  /* navbar hoogte + marge */
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ffffff;
  z-index: 9999;
}

/* Progress bar itself */
#myBar {
  width: 0%;
  height: 100%;
  background-color: #5359d1;
  /* your color */
  transition: width 0.25s ease-out;
}


@media (max-width: 768px) {
  #myProgress {
    top: 0;
    /* helemaal bovenaan, over de navbar heen */
    height: 4px;
    /* evt kleiner zodat het niet te dominant is */
  }
}


@media (max-width: 1024px) {
  #myProgress {
    top: 0;       /* helemaal bovenaan, over de navbar heen */
    height: 4px;  /* iets kleiner */
  }
}
/* hero*/


.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  padding: 0 7vw;
  box-sizing: border-box;
  overflow: hidden;
  background: linear-gradient(135deg,
      beige 0%,
      #9dbde4 40%,
      #5359d1 70%,
      #112d6a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #1a3a8a;
  max-width: 40vw;
  /* of wat passend is voor je layout */
  margin: 15vw 0vw;
  /* geen automatische centrering */
  padding: 10px 10px;
  /* ruimte rondom */
  text-align: left;

}



.hero-text p {
  margin: 5px 0;
  /* vaste verticale spacing tussen de paragrafen */
  line-height: 1.6;
  /* betere leesbaarheid */
  font-size: 1.1rem;
  /* past bij hero layout */
  color: #333;
  /* donkere kleur voor contrast */
}


















.project-marquee-wrapper {
  position: absolute;
  right: 4vw;
  top: 15%;
  /* adjust start a bit higher */
  height: 80%;
  /* bigger container so more items show */
  display: flex;
  gap: 2rem;
  overflow: hidden;
  z-index: 2;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.project-marquee {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 20vw;
}



.project-marquee img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.project-marquee img:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
  .typewrite {
    font-size: 8vw !important;
    font-weight: bold;
  }
}


@media (max-width: 768px) {
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

 .marquee-container {
    width: 90%;
   
    margin-top: calc(10vh + 1rem); /* iets meer ruimte onder de navbar */
  }

  /* De rijen als achtergrond */
  .project-marquee-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    z-index: 0;
      height: 100% !important;
  }

  .project-marquee {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .project-marquee img {
    width: 40vw;
    max-width: 300px;
    margin: 1rem 0;
    border-radius: 12px;
    object-fit: cover;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
     max-width: 60vw; 
    padding: 2rem;
    text-align: left;
  }

  .hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    z-index: -1;
  }

 

}










/* Smooth infinite scroll animations */
.scroll-up {
  animation: scroll-up 20s linear infinite;
}

.scroll-down {
  animation: scroll-down 20s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }

  /* scroll exactly half the duplicated height */
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

















.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #001b6a, #0033CC);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: 'Sefri 6', sans-serif;

}

.cta-button:hover {
  background: linear-gradient(90deg, #abb9e4, #ffffff);
  color: navy;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cta-button,
.cta-button:visited,
.cta-button:active,
.cta-button:focus {
  color: white !important;
  /* tekst blijft wit */
  text-decoration: none;
  /* geen underline */
}

#cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #001b6a, #0033CC);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: 'Sefri 6', sans-serif;

}

#cta-button:hover {
  background: linear-gradient(90deg, #abb9e4, #ffffff);
  color: navy;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* HERO TEXT RESPONSIVE */
@media (max-width: 1024px) {

  /* tablets */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 10px 25px;
  }
}

@media (max-width: 768px) {

  /* phones */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 14px;
  }
}












.main {
  margin: 5vh 10vw;
}

@media (max-width: 768px) {
  .main {
    margin: 5vh 2vw;
    /* kleine marge op mobiel */
  }
}





/* roller */

/* 
/* Ticker container 
.tech-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: #222;
  padding: 10px 0;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
}

.ticker-track img {
  height: 50px;
  margin: 0 20px;
  vertical-align: middle;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


 */






/*about*/

#about-container {
  padding: 50px 20px;
  background-color: #f5f5f5;
}

.about-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  width: 25vw;
  border-radius: 12px;
  object-fit: cover;
  margin: 1vw 1vw;
}

.about-text {
  flex: 1;
  margin: 0vw 1vw;
  font-family: 'Sefri 6', sans-serif;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.about-list {
  list-style: none;
  /* verwijder standaard bullets */
  padding-left: 0;
  margin-bottom: 20px;
}

.about-list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  padding-left: 25px;
  /* ruimte voor het vinkje */
}

.about-list li::before {
  content: "✔";
  /* vinkje */
  position: absolute;
  left: 0;
  color: #5062ae;
  /* kleur vinkje */
  font-weight: bold;
}


@media (max-width: 768px) {
  /* Phones */
  #about-container {
    padding: 35px 2vw;
    margin: 10px 30px;
    text-align: left;
  }

  .about-content-wrapper {
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image {
    display: none; /* foto verdwijnt voor klein scherm */
  }
}

@media (max-width: 480px) {
  /* Very small phones */
  #about-container {
    padding: 25px 2vw;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-content-wrapper {
    gap: 1.5rem;
  }
}

























h1 {
  text-align: center;
  font-family: 'Sefri 6', sans-serif;
  padding-top: 3vw;
  padding-bottom: 1vw;
  color: black;
  font-size: 40px;
}

h1:hover {
  color: #5062ae;
}

h2 {
  padding-top: 2vw;
  text-align: left;
  font-family: 'Sefri 6', sans-serif;
}

h3 {
  font-family: 'Sefri 6', sans-serif;
  color: #5062ae;
}

p {
  font-family: 'Sefri 6', sans-serif;
}

.cv {
  text-align: center;
}




/*/////// main grid //////////*/

.grid-container-main {
  display: grid;
  grid-template-columns: auto auto;
  padding: 10px;
}

.grid-item-main {
  text-align: left;
  margin: 3vh 3vw;

}

#about-foto {
  background-color: #5062ae;
  width: 30vw;
  height: 40vh;

}

#about-foto img {
  width: 25vw;
  float: right;

}

.about-link {

  color: black;
  border: 1px rgb(156, 156, 156) groove;
  border-radius: 5px;
  padding: 10px 10px;
  float: right;
  margin-top: 12vh;
  margin-left: 1vw;
  background-color: #f6f6f6;
  text-decoration: none;
  font-family: 'Sefri 6', sans-serif;
}

.about-link:hover {
  color: rgb(98, 143, 220);
}




/*//////////////////////////////*/

.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-evenly;
  padding: 10px;
  margin: 5vw auto;
}

.grid-item {
  padding: 10px 10px;
}



/*//////////////////////////////*/

.projects-div {
    flex: auto; /* or remove flex entirely */
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #80828a;
    padding: 6vh 3vw;
    margin-bottom: 2vw;
    border-radius: 15px 50px;
}

.card {
  width: 26rem;
  height: 18rem;
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  color: #141414;
  box-shadow: 0 10px 40px 5px rgba(0, 0, 0, 0.2);
  filter: brightness(98%);
  background-color: #5062ae;
}

.card:hover {
  filter: brightness(90%);
}

.card h2 {
  position: absolute;
  inset: auto auto 40px 35px;
  margin: 0;
  transition: inset 0.3s 0.3s ease-out;
  font-family: 'Noto Sans', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 2px 1px white;
}

.card p,
.card a {
  position: absolute;
  opacity: 0;
  max-width: 80%;
  transition: opacity 0.3s ease-out;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;

}

.card p {
  inset: auto auto 55px 30px;
  font-family: 'Open Sans', sans-serif;
}

.card a {
  inset: auto auto 25px 30px;
  color: inherit;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.card:hover h2 {
  inset: auto auto 220px 30px;
  transition: inset 0.3s ease-out;
  color: #ffffff;
  text-shadow: 1px 2px 1px rgb(248, 248, 248);
}


.card:hover a {
  opacity: 2;
  transition: opacity 0.6s 0.1s ease-in;
  font-family: 'Noto Sans', sans-serif;
  color: white;
}

.card:hover p {
  opacity: 2;
  transition: opacity 0.6s 0.1s ease-in;
  font-family: 'Noto Sans', sans-serif;
  color: white;

}

.card:hover video {
  transition: opacity 0.3s ease-in;
  filter: brightness(50%);

}

.material-symbols-outlined {
  vertical-align: middle;
}

strong {
  font-family: 'Noto Sans', sans-serif;
  font-weight: bolder;
  font-size: 18px;
}

b {
  font-weight: bolder;
  font-size: 17px;
  color: #000000;
  font-family: 'Noto Sans', sans-serif;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;   /* één kolom */
    justify-items: center;        /* center de items horizontaal */
    gap: 1.5rem;                  /* ruimte tussen kaarten */
    padding-left: 5%;             /* beetje marge links */
    padding-right: 5%;            /* beetje marge rechts, voorkomt uit frame */
    box-sizing: border-box;       /* zorgt dat padding bij breedte hoort */
  }

  .grid-item {
    width: 100%;                 /* vullen de kolom volledig, maar niet meer */
    max-width: 400px;            /* voorkom dat ze te groot worden */
  }
    .card {
    width: 23rem !important;  /* voorkomt dat het te groot wordt */
  }
}





/*////// moving text ///////*/


.marquee-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 80%;
  height: 100px;
  /* Adjust the height as needed */

}

.marquee {
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  margin-left: 5vw;

}

.marquee span {
  display: inline-block;
  animation: marquee-slide 20s linear infinite;
  margin-left: 10vw;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}




/*/////////////Contact /////////////////*/

.containerform {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
textarea,
select {
  width: 100%;
  margin-bottom: 15px;
}



input[type=submit] {
  background-color: #000000;
  color: white;
  padding: 15px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #5062ae;
  color: white;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  box-shadow: 9px 16px 13px -3px rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.8s ease-out;
  -moz-transition: background-color 0.8s ease-out;
  -o-transition: background-color 0.8s ease-out;
  transition: background-color 0.8s ease-out;
}

.containerform {
  border-radius: 5px;
  padding: 30px;
  margin-left: 25%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;

}


input[type=text],
[type=number],
[type=email],
[type=tel],
[type=number],
[type=date],
[type=file],
select,
textarea {

  border: 1px solid #ccc;
  background-color: #f9f9f9;
  width: 100%;
  /* allemaal even breed */
  box-sizing: border-box;
  /* padding telt mee in breedte */
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  display: block;
}


form {
  padding: auto 2vw;
}


/*//////////////////*/


footer {
  background-color: #ffffff;
  margin-top: 7vw;
  height: fit-content;
}

.flex-containerfooter {
  display: flex;
  justify-content: space-evenly;
  font-size: 17px;
  font-weight: 500;
}

.flex-itemfooter {
  padding: 20px;
  text-align: center;
}

.flex-itemfooter:hover {
  color: #6991ba;
}

.footerlogo {
  width: 12vw;
  margin: auto 2vw;
}


.rechten {
  text-align: center;
  font-size: 12px;
  margin-top: 0;
  margin-top: 2vh;
}



/*////////// project page ///////////*/

.grid-container-project {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centreert alle projecten */
  gap: 4rem; /* ruimte tussen projecten */
  margin: 1vw 12vw;
}

.projects-div {
  flex: 1 1 300px; /* min breedte 300px, groeit mee */
  max-width: 450px; /* cap max breedte */
  box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #80828a;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border-radius: 15px 50px;
  box-sizing: border-box;
  background-color: #fff; /* optie: maak achtergrond wit */
}

.grid-container-project img {
  width: 100%; /* past netjes binnen project-div */
  max-width: 100%;
  border-radius: 10px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.grid-container-project img:hover {
  transform: scale(2.6); /* subtieler hover-effect */
}


.events-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 20px; /* space between items */
}

.container-slide {
  padding: 10px;
  margin: 4vw 35vw;
  width: 25vw;
  height: 10vw;

}

.place {
  padding: 4vh;
  height: 8vh;
  width: 100%;
}

#wss {
  opacity: 0;
  -webkit-transition: opacity 1.0s linear 0s;
  transition: opacity 1.0s linear 0s;
}




/* Mobile prjects */
@media (max-width: 768px) {
  .projects-div {
    flex: 1 1 100%; /* full width on phones */
    max-width: 90%;
  }
  .uni-slideshow {
  width: 90%;
  max-width: 1900px;
  margin: 2rem auto;
  position: relative;

  /* new: enforce aspect ratio */
  aspect-ratio: 16 / 9;   /* standard widescreen ratio */
  overflow: hidden;       /* crop overflow nicely */
}

.uni-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills the container without distortion */
}
  .events-container {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }
}







/*///*/
.main1 {
  margin-bottom: 10vw;
}


/*/////// animation project////*/

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}




/*/// skill /////*/
.grid-container-skill {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-evenly;
  /*///  // animation: 1s ease-out 0s 1 slideInFromLeft; /////*/
  padding: 1vw 1vw;
  margin: 1vw 3vw;

}

.grid-item-skill {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 1vw;
  box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.1);
  border: groove 2px #f5f5f7;
  padding: 4vh 3vw;
  text-align: left;
  width: 17vw;
  border-radius: 15px 40px;
}

.grid-container-skill p {
  font-size: 14px;
  color: rgb(73, 83, 94);
}

.grid-item-skill:hover {
  transform: scale(1.01);
  transition-timing-function: ease-out;
}

.grid-item-skill i:hover {
  transform: scale(1.1);

}

.grid-item-skill i {

  color: #4657a5;
}

h4 {
  color: #5062ae;
}


.littlebigger {

  font-size: large;
}



/*///////////////////////*/


/* === Slideshow === */
.uni-slideshow {
  position: relative;
  height: 30vw;
  width: 60%;
  max-width: 90%;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}


.uni-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.uni-slide img {
  width: 100%;
  object-fit: cover;
}

.uni-slide.active {
  opacity: 1;
}

/* Arrows */
.uni-arrow {
  background-color: rgba(224, 234, 246, 0.4);
  color: navy;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 1.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 6px;
  z-index: 10;
}

.uni-prev {
  left: 10px;
}

.uni-next {
  right: 10px;
}














/*home page -skills*/
@media (max-width: 768px) {
    .grid-container-skill {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* kan iets kleiner op mobiel */
    }

    /* Optioneel: skill-items iets kleiner of padding aanpassen */
    .grid-item-skill {
        padding: 15px;
        width: 80%;
        margin: 15px 1px;
    }
}

/* Contact sectie marge */

@media (max-width: 768px) {
  form {
    width: 100%;           /* take full width of container */
    max-width: 400px;      /* limits how wide the form can get */
    margin: 0 auto;        /* centers the form horizontally */
    padding: 15px 20px;    /* smaller padding for mobile */
    box-sizing: border-box;
  }

}

