/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* 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;
}



/* ---------- 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;
}

.navbar,
.container,
footer {
  opacity: 0;
  transition: opacity 1s ease;
}

/* ---------- BODY ---------- */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #bcedf6, #087E8B);
    color: #333;
}

/* ---------- NAVBAR (same as style.css) ---------- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 35px 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.1s 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;
}

/* ---------- CONTENT ---------- */
.container {
    width: 90%;
    max-width: 900px;
    margin: 120px auto 40px auto;
    background-color: #fff;
    padding: 20px 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* ---------- REVIEW CARDS ---------- */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
    border-left: 5px solid #3498db;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.review h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.review p {
    margin: 5px 0;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  color: white;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}
