/* ============ BASISSTIJLEN ============ */
body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ecf0f1;
}

/* ============ HEADER ============ */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: #393f4d;
    color: #d4d4dc;
    display: grid;
    grid-template: 
        "logo-l titel logo-r" auto
        "nav nav nav" auto / 150px 1fr 150px;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    box-sizing: border-box;
}

.logo-links, .logo-rechts {
    width: 150px;
    height: 150px;
    display: flex;
    flex-shrink: 0;
}

.logo-links { 
    justify-content: flex-start;
    grid-area: logo-l;
}
.logo-rechts { 
    justify-content: flex-end;
    grid-area: logo-r;
}

.logo-links img, 
.logo-rechts img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.titel-nav {
    grid-area: titel;
    text-align: center;
    padding: 0 20px;
}

.titel-nav h1 {
    margin-bottom: 15px;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

/* Aangepaste navigatie layout */
.titel-nav nav {
    grid-area: nav;
    display: grid;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
}

/* Desktop: alle links naast elkaar */
@media (min-width: 769px) {
    .titel-nav nav {
        grid-template-columns: repeat(4, auto);
        gap: 20px;
    }
}

/* Tablet EN Mobiel: links in 2 kolommen */
@media (max-width: 768px) {
    .titel-nav nav {
        grid-template-columns: repeat(2, auto);
        gap: 10px 15px;
    }
    
    /* Kleinere aanpassingen voor mobiel */
    @media (max-width: 480px) {
        .titel-nav nav {
            gap: 8px 12px;
            padding-top: 10px;
        }
        
        .titel-nav nav a {
            padding: 4px 8px;
            font-size: 0.8rem;
        }
    }
}

.titel-nav nav a {
    color: #feda6a;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    padding: 5px 10px;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-align: center;
}

.titel-nav nav a:hover {
    color: #FF6B6B;
}

/* ============ HOOFDCONTENT ============ */
.content {
    flex: 1;
    padding: 20px;
    margin: 180px 0 0;
    padding-bottom: 120px;
    background: #1d1e22;
}

#topbar {
  padding: 100px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

.buttonwrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  text-align: center;
}

.buttoncontainer {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4d4dc;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.buttonimage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.buttonoverlay {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #393f4d;
  transition: 0.5s ease;
  border-radius: 50%;
  overflow: hidden;
}

.buttoncontainer:hover .buttonoverlay {
  bottom: 0;
  height: 100%;
}

.buttontext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #feda6a;
  text-align: center;
}

.buttondescription {
  margin-top: 20px;
  font-size: 16px;
  color: #feda6a;
  width: 100%;
  height: 300px;
  background-color: #393f4d;
  border: 2px solid #d4d4dc;
  border-radius: 12px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.buttondescription h3 {
  text-align: center;
  margin: 0 0 10px 0;
}

.description-content {
  text-align: left;
  flex-grow: 1;
  margin-bottom: 10px;
  line-height: 1.4;
}

.description-button-wrapper {
  display: flex;
  justify-content: center;
}

.description-button {
  background-color: #FFC857;
  color: #000000;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

#content {
  min-height: 400px;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 650px;
}

.description-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.description-button {
  padding: 8px 16px;
  border: 2px solid #d4d4dc;
  border-radius: 8px;
  background: transparent;
  color: #feda6a;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.description-button:hover {
  background-color: #393f4d;
  color: #FF6B6B;
}
/* ============ FOTOSTRIP ============ */
.foto-strip-wrapper {
    position: fixed;
    bottom: 120px; /* Gelijk aan footer hoogte */
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #d7d7d7;
    z-index: 999;
    overflow: hidden; /* Verberg wat niet past */
}

.foto-strip {
    display: flex;
    height: 100%;
    width: max-content; /* Laat de strip zo breed zijn als nodig */
    gap: 0px;
    padding: 0 0px;
}

.foto-strip img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}
/* ============ FOOTER ============ */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: #393f4d;
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    padding: 20px;
    z-index: 1000;
    box-sizing: border-box;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    color: #d4d4dc;

}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    justify-content: flex-end;
    height: 100%;
}

.footer-nav a {
    color: #feda6a;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-align: left;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
}

.footer-nav a:hover {
    color: #FF6B6B;
}

/* ============ RESPONSIVE AANPASSINGEN ============ */
@media (max-width: 1024px) {
    .fixed-header {
        height: 160px;
        grid-template-columns: 120px 1fr 120px;
    }
    .logo-links, .logo-rechts {
        width: 120px;
        height: 120px;
    }
    .content {
        margin: 160px 0 0;
        padding-bottom: 120px;
    }
}

@media (max-width: 768px) {
    .fixed-header {
        min-height: 140px;
        grid-template: 
            "logo-l titel logo-r" auto
            "nav nav nav" auto / 80px 1fr 80px;
    }
    .logo-links, .logo-rechts {
        width: 80px;
        height: 80px;
    }
    .content {
        margin: 140px 0 0;
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .fixed-header {
        min-height: 120px;
        grid-template-columns: 60px 1fr 60px;
    }
    .logo-links, .logo-rechts {
        width: 60px;
        height: 60px;
    }
    .content {
        margin: 120px 0 0;
        padding-bottom: 80px;
    }
    .fixed-footer {
        height: 80px;
        padding: 10px;
    }
    .footer-nav a {
        font-size: 0.8rem;
        padding-right: 5px;
    }
}
@media (max-width: 320px) {
    .fixed-header {
        min-height: 120px;
        grid-template-columns: 30px 1fr 30px;
    }
    .logo-links, .logo-rechts {
        width: 40px;
        height: 40px;
    }
    .content {
        margin: 120px 0 0;
        padding-bottom: 80px;
    }
    .fixed-footer {
        height: 80px;
        padding: 10px;
    }
    .footer-nav a {
        font-size: 0.8rem;
        padding-right: 5px;
    }
	.titel-nav nav {
            gap: 4px 4px;
            padding-top: 10px;
        }
        
        .titel-nav nav a {
            padding: 4px 4px;
            font-size: 0.8rem;
        }
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .foto-strip-wrapper {
        height: 80px;
    }
    .foto-strip img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .foto-strip-wrapper {
        bottom: 80px;
        height: 60px;
    }
    .foto-strip img {
        width: 60px;
        height: 60px;
    }
}