/* ---------- INTRO ---------- */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4em;
  z-index: 9999;
  opacity: 1;
  transition: opacity 2s ease;
}

#intro.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---------- FADE-IN ---------- */
body.loaded .navbar,
body.loaded .container,
body.loaded footer {
  opacity: 1;
  transition: opacity 1.5s ease;
}


/* Dropdown container */
.navbar .dropdown {
  position: relative; /* anchor for submenu */
}

/* Dropdown menu hidden by default */
.navbar .dropdown-menu {
  position: absolute;
  top: 100%; /* directly under Contact button */
  left: 0;
  display: none; /* hidden initially */
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 50px;
  z-index: 2000;
}

/* Remove list bullets */
.navbar .dropdown-menu li {
  list-style: none;
}

/* Links styling */
.navbar .dropdown-menu a {
  padding: 12px 20px;
  display: block;
  color: white;
  font-size: 1rem;
  white-space: nowrap;
  text-decoration: none;
}

.navbar .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Show dropdown when hovering Contact or the menu itself */
.navbar .dropdown:hover .dropdown-menu {
  display: flex;
}



.navbar,
.container,
footer {
  opacity: 0;
  transition: opacity 1s ease;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #bcedf6, #087E8B);
    font-family: Arial, sans-serif;
}

/* Buitenste laag om echt te centreren */
.outer {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;   /* horizontaal */
    align-items: center;       /* verticaal */
}

/* De container met de 2 vakken naast elkaar */
.container {
    display: flex;
    gap: 60px;
}

/* De blokken zelf */
.card {
    width: 320px;
    height: 260px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    border-radius: 25px;
    color: white;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card h2 {
    margin-top: 0;
    font-size: 26px;
    margin-bottom: 15px;
}
/* ---------- NAVBAR (same as style.css) ---------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 410px auto 1fr;
  align-items: center;
  padding: 15px 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 80px;
  align-items: center;
  font-size: x-large;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}


/* Always underline active page */
.navbar a.current-page::after {
  width: 100%;
}

.pfp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}


.teksttitel {
  justify-self: center;
}

.logo {
  justify-self: start;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* ---------- FOOTER ---------- */
footer {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
}

a {
  color: #bcedf6;
}