/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* 1: Algemene styling */
body {
    font-family: 'Special Elite';
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Header styling */
header {
    color: #333;
    padding: 40px 20px;
    text-align: left;
    margin-bottom: 40px;
}

header h1 {
    margin-bottom: 20px;
}

header p {
    margin: 0;
} */

/* Main content styling */
main {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

main h2 {
    margin-bottom: 20px;
}

main p {
    margin-bottom: 20px;
} */

/* Button styling */
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #555;
} */

/* Footer styling  */
footer {
    text-align: left;
    padding: 20px;
    color: #333;
    margin-top: 40px;
}

/* 2: Bovenste info-balk */
.info-bar {
  width: 100%;
  background-color: #C3A580;
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.info-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.info-right {
  display: flex;
  gap: 80px; 
  align-items: center;
}

/* 3: Hoofdnavigatie */
 .topbar {
  z-index: 10;
} 

.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbar li a {
  color: #C3A580;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Hover effect met onderstreep */
.navbar li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #C3A580;
  transition: width 0.3s ease;
}

.navbar li a:hover::after {
  width: 100%;
}

/* Actieve link */
.navbar li a.active {
  font-weight: bold;
}

/* Navigatiebalk */
nav {
  background-color: #333;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 14px 20px;
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #555;
}

/* 4: Dropdown menu men */
.main-navbar {
  background-color: #333;
  position: relative;
  z-index: 10;
  width: 100%;
}

/* Navigatielinks */
.navbar {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.navbar li {
  position: relative;
}

.navbar li a {
  color: #C3A580;
  text-decoration: none;
  font-size: 16px;
  padding: 15px 10px;
  display: inline-block;
  position: relative;
}

/* Hover onderstreping */
.navbar li a::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C3A580;
  transition: width 0.3s ease;
}

.navbar li a:hover::after {
  width: 100%;
}

/* Dropdown inhoud */
.dropdown-content {
  display: none; 
  position: fixed;
  top: 100px;
  left: 0;
  width: 100vw;
  background-color: #333;
  padding: 40px 80px;
  box-sizing: border-box;
  border-top: 1px solid #444;
  overflow-x: hidden;
}

/* De vorige wijzigingen
display: none;
position: absolute;
overflow-x: hidden;
top: 100%; */

/* Toon dropdown bij hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown layout */
.dropdown-inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

.dropdown-left {
  flex: 1;
}

.dropdown-left ul {
  list-style: none;
  padding: 0;
}

.dropdown-left li {
  margin-bottom: 15px;
}

.dropdown-left a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.dropdown-left a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.dropdown-left a:hover::after {
  width: 100%;
}

.dropdown-right {
  display: flex;
  gap: 20px;
}

.color-block {
  width: 200px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.block-1 {
  background-color: hsl(0, 4%, 24%);
}

.block-2 {
  background-color: #777;
}