/* Commonly used styles */
/* Centralized font imports for all pages */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap');

/* Color palette variables */
:root {
  --color-dark-blue: #146a8c;
  --color-gold: #d9923b;
  --color-gray-brown: #8c7c6d;
  --color-rust: #bf571b;
  --color-light-peach: #f2c9bb;
}

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

body,
html {
  font-family: "Poppins", sans-serif;
  color: var(--color-gray-brown);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(242, 201, 187, 0.3); /* zachte witte overlay */
  color: var(--color-dark-blue);
}

/* Social icons */
.socials {
  display: flex;
  gap: 20px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-dark-blue);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  font-family: inherit;
}

/* size Font Awesome icons used in social links */
.social-icon i {
  font-size: 40px;
  line-height: 1;
  color: var(--color-dark-blue);
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-dark-blue);
  }
}

.social-icon:hover {
  animation: zoomInOut 1s infinite;
  color: var(--color-gold);
}

/* Commonly used styles */
.navbar {
  display: flex;
  align-items: center;
  height: 60px;
  background-color: var(--color-dark-blue);
  color: var(--color-light-peach);
  padding: 0 20px;
  z-index: 1000;
}

/* Selfie icon */
.selfie-icon {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.selfie-icon img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-light-peach);
}

/* Navigation list */
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-list li a {
  color: var(--color-light-peach);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  font-family: inherit;
}

.nav-list li a.active,
.nav-list li a:hover {
  text-decoration: underline;
  color: var(--color-gold);
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-dark-blue);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 10px 10px;
  margin-top: 17px;
}

/* When JS toggles aria-hidden, make the menu visible (keyboard/ARIA interactions) */
.dropdown .dropdown-content[aria-hidden="false"] {
  display: block;
}

/* Ensure dropdowns appear above other page content when opened */
.dropdown .dropdown-content {
  z-index: 3000; /* higher than typical page elements */
}

.dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 22px;
  background: transparent;
}

.dropdown-content a {
  color: var(--color-light-peach);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 600;
  font-size: 1em;
}

.dropdown-content a:hover {
  background-color: rgba(217, 146, 59, 0.2);
  color: var(--color-gold);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
  margin-left: 5px;
}

/* Footer */
.footer {
  height: 60px;
  width: 100%;
  background-color: var(--color-dark-blue);
  color: var(--color-light-peach);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: inherit;
  user-select: none;
}
/* Belgium Flag Colors */
.letter-black {
  color: black;
}
.letter-yellow {
  color: #ffd700;
}
.letter-red {
  color: #ff0000;
}

@media only screen and (max-width: 600px) {
  .nav-list li a {
    font-size: 0.6em;
  }
}
