* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f8f8;
    color: #333;
}
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: #222;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
}
.nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    text-align: center;
    transition: color 0.2s;
}
.nav__link:hover {
    color: #ffd700;
}
.nav__logo {
    display: grid;
    justify-content: center;
    align-items: center;
}
.nav__logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
}
.foto1 {
    position: relative;
    width: 100%;
    height: 280px;
    display: block;
    overflow: hidden;
}
.foto1__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    display: block;
}
.foto1__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px #000;
    white-space: nowrap;
}
.rondjes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    justify-items: center;
}
.rondje {
    display: grid;
    grid-template-rows: auto auto;
    justify-items: center;
}
.rondje__circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffd700 60%, #ff7f50 100%);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.rondje__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.rondje__title {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-top: 0.5rem;
}
.foto2 {
    display: grid;
    justify-content: center;
    margin: 2.5rem 0 1rem 0;
}
.foto2__tekst {
    text-align: center;
}
.foto2__titel {
    margin-top: 10%;
    font-size: 1.7rem;
    color: #222;
    margin-bottom: 1rem;
    margin-left: 25%;
}
.foto2__paragraaf {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.45;
    max-width: 626px;
    margin-left: 36%;
}
.foto3 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    max-width: 950px;
    margin: 2.5rem auto 2rem auto;
    padding: 0 1rem;
}
.foto3__links {
    grid-column: 1;
}
.foto3__img-links {
    margin-top: -73%;
    width: 230px;
    height: 300px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    margin-left: 29%;
}
.foto3__rechts {
    grid-column: 2;
    display: grid;
    gap: 1rem;
}
.foto3__paragraaf {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 0.7rem;
}
.foto3__thumbnails {
    display: grid;
    grid-auto-flow: column;
    gap: 0.7rem;
    justify-content: left;
}
.foto3__thumb {
    margin-left: 35%;
    width: 162px;
    height: 127px;
    object-fit: cover;
    border-radius: 7px;
    border: 2px solid #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}
.foto4 {
    display: grid;
    justify-content: center;
    margin: 2.5rem auto 3rem auto;
    padding: 0 1rem;
}
.foto4__container {
    position: relative;
    width: 100%;
    display: grid;
    justify-content: flex-end;
    align-items: center;
    max-width: 900px;
    min-height: 320px;
    background: transparent;
}
.foto4__img {
    width: 227%;
    max-width: 914px;
    height: 299px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    border: 5px solid #fff;
    display: block;
    margin-left: -68%;
}
.foto4__tekstvak {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.10);
    padding: 1.5rem;
    min-width: 210px;
    max-width: 270px;
    text-align: left;
    z-index: 2;
    border: 2px solid #fff;
}
.foto4__tekstvak-titel {
    color: #222;
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}
.foto4__tekstvak-tekst {
    color: #444;
    font-size: 1rem;
    line-height: 1.45;
}
.galerij__titel {
    text-align: center;
    margin: 2.5rem 0 1.2rem 0;
    font-size: 2rem;
    color: #222;
    letter-spacing: 1px;
}
.galerij {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}
.galerij__item {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #eee;
    aspect-ratio: 4/3;
}
.galerij__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.galerij__item:hover .galerij__img {
    transform: scale(1.05);
}
.galerij__tekst {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.91);
    color: #222;
    font-size: 1.07rem;
    padding: 0.7rem 1.2rem 0.7rem 1.2rem;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.4;
    pointer-events: none;
}
.openingsuren {
    max-width: 580px;
    margin: 3rem auto 4rem auto;
    background: #fff;
    border: 2.5px solid #eee;
    border-radius: 20px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
    padding: 2.2rem 2rem 1.6rem 2rem;
    display: grid;
    align-items: center;
    position: relative;
}
.openingsuren__title {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    color: #222;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-align: center;
}
.openingsuren__subtitle {
    font-size: 1.1rem;
    color: #8d8d8d;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}
.openingsuren__tijden {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin-bottom: 1.1rem;
    gap: 1.5rem;
}
.openingsuren__tijden-links,
.openingsuren__tijden-rechts {
    font-size: 1.09rem;
    color: #333;
    border-radius: 10px;
    padding: 0.7rem 1rem 0.7rem 1rem;
    text-align: center;
    min-width: 120px;
}
.openingsuren__tijd {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 1.05rem;
    margin-top: 0.18rem;
}
.openingsuren__kanaal {
    margin: 1.2rem 0 0.5rem 0;
    font-size: 1.08rem;
    font-weight: 500;
    text-align: center;
}
.footer {
    width: 100%;
    background: #232323;
    padding: 2.3rem 0 1.1rem 0;
    margin-top: 2rem;
}
.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    align-items: center;
    justify-content: flex-start;
    gap: 2.2rem;
    max-width: 950px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.footer__logo-wrap {
    display: grid;
    align-items: center;
    min-width: 70px;
    margin-right: 0.5rem;
}
.footer__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 1px 7px rgba(0,0,0,0.08);
}
.footer__divider {
    width: 2px;
    height: 70px;
    background: #fff;
    opacity: 0.13;
    margin: 0 2rem 0 1rem;
}
.footer__divider--small {
    height: 40px;
    margin: 0 1.3rem 0 1.3rem;
}
.footer__galerij {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 0.7rem;
}
.footer__heading {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    opacity: 0.8;
    font-weight: 600;
    letter-spacing: 0.7px;
}
.footer__rondjes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    gap: 0.7rem;
}
.footer__rondje {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
    border: 2px solid #fff;
    transition: transform 0.18s;
}
.footer__rondje img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.footer__rondje:hover {
    transform: scale(1.08) rotate(-3deg);
}
.footer__copyright {
    color: #fff;
    font-size: 0.97rem;
    opacity: 0.88;
    margin-left: 2.2rem;
    white-space: nowrap;
}
/* Hamburger menu */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 20;
   
}
.nav__hamburger-bar {
    width: 22px;
    height: 2.4px;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.nav__hamburger.active .nav__hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active .nav__hamburger-bar:nth-child(2) {
    opacity: 0;
}
.nav__hamburger.active .nav__hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Navigation */
.nav__mobile     {
    display: none;
    flex-direction: column;
    background: #232323;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
    z-index: 30;
    padding-top: 30px;
    transition: transform 0.3s;
    transform: translateX(-100%);
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}
.nav__mobile.open {
    display: grid;
    transform: translateX(0);
}
.nav__mobile .nav__link,
.nav__mobile .nav__logo {
    color: #fff;
    font-size: 1.08rem;
    width: 100%;
    text-align: center;
    display: grid;
    align-items: center;
    margin: 0.3rem 1rem;  
    padding: 0.3rem 0;    
    line-height: 1.6; 
  
}
.nav__mobile .nav__logo-img {
    width: 34px;
    height: 34px;
}
.nav__mobile .nav__logo {
    justify-content: center;
    
    width: 100%;
}
.nav__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #fff;
    cursor: pointer;
    z-index: 50;
    
    padding: 0;
    font-family: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.nav__close:hover {
    opacity: 1;
}
