*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  font-family: 'Rubik Mono One', sans-serif;
  background: linear-gradient(to bottom, #5e1914 0%, #b65e31 70%, #12674a 100%);
  color: #ffffff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  background: linear-gradient(90deg, #5e1914, #b65e31);
  border-top: 5px double #93e9be;
  border-bottom: 5px double #93e9be;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  top: 0;
  z-index: 1000;
 
}

.navbar-brand {
  font-family: 'Monoton', cursive;
  color: #ffce1b;
  font-size: 2rem;
  letter-spacing: 2px;
  text-shadow: 2px 2px #12674a;
}

.navbar-nav {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-family: 'Rubik Mono One', sans-serif;
  color: #93e9be;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffce1b;
  text-shadow: 0 0 5px #ffce1b;
  transform: scale(1.05);
}

.nav-link.active {
  color: #ffce1b !important;
  text-shadow: 0 0 6px #ffce1b;
}

.retro-title {
  font-family: 'Monoton', cursive;
  font-size: 3.5rem;
  color: #ffce1b;
  text-align: center;
  margin: 2rem auto 1.5rem auto;
  letter-spacing: 4px;
  padding-bottom: 0.6rem;
  user-select: none;
}

.fotosectie {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.fotosectie img {
  width: 100%;
  margin-bottom: 1.5rem;
  display: block;
  border: 2px solid #ffce1b;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fotosectie img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #93e9be;
}




footer {
  background: linear-gradient(90deg, #b65e31, #5e1914);
  color: #e5d5b8;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1rem;
  font-family: 'Rubik Mono One', sans-serif;
  border-top: 4px solid #93e9be;
  letter-spacing: 1px;
  margin-top: auto;
}

footer a {
  color: #ffce1b;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-shadow: 0 0 5px #ffce1b;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fotosectie {
    column-count: 2;
    padding: 2rem;
  }
  .fotosectie img {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .fotosectie {
    column-count: 1;
    padding: 1rem;
  }
  .fotosectie img {
    margin-bottom: 2rem;
  }
}
