/* CLEANED & OPTIMIZED VERSION — Consistent gold-black theme, duplicate selectors removed */

/* Algemene opmaak voor de about-section */
.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: rgba(44, 44, 44, 0.8);
}

.about-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f2c765;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.about-text {
    width: 100%;
    max-width: 600px;
    color: #f2c765;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Divider styles */
.divider {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #f2c765;
}

.divider-letter {
    margin: 0 10px;
    font-size: 24px;
    color: #f2c765;
    font-weight: bold;
}

/* Tabs-container */
.tab-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-bottom: 3px solid #f0e68c;
    flex-wrap: wrap;
}

.sangria img{

    width: 40%;
    height: 50%;
}

.tablink {
    padding: 12px 24px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    color: #f2c765;
    border: 2px solid transparent;
    margin: 5px;
    font-size: 16px;
    background-color: #2c2c2c;
    border-radius: 5px;
    position: relative;
}

.tablink:hover {
    background-color: #f2c765;
    color: #1c1c1c;
    transform: scale(1.05);
}

.tablink.active {
    background-color: #f2c765;
    color: black;
}

/* Menu */
.menu {
    display: none;
    margin-top: 20px;
    text-align: center;
    border: 2px solid white;
    border-radius: 10px;
    padding: 40px;
    background-color: #2c2c2c;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

.menu.show {
    display: block;
}

.menu h5 {
    margin-bottom: 10px;
    color: #f2c765;
}

.menu-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin: 5px 0;
    color: #f2c765;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.item-name {
    flex-grow: 0;
    padding-right: 10px;
    text-align: left;
}

.item-price {
    white-space: nowrap;
    text-align: right;
}

.dots {
    flex-grow: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, transparent, transparent 8px, #f2c765 8px, #f2c765 12px);
    margin: 0 10px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
}

.menu-button {
    padding: 12px 24px;
    background-color: #444;
    border: none;
    color: #f2c765;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 5px;
    flex: 1;
    margin: 0 5px;
}

.menu-button:hover {
    background-color: #f2c765;
    color: #1c1c1c;
    transform: scale(1.05);
}

.tab-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1c1c1c;
    color: #f2c765;
    text-align: center;
}

.bgimg {
    background: url("chalet.jpg") center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

* {
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* NavBar */
.w3-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: rgba(28, 28, 28, 0.9);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #f2c765;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.nav-link::after {
    content: '';
    display: block;
    height: 3px;
    background: #f2c765;
    transition: width 0.3s;
    width: 0;
    margin: 0 auto;
}

.nav-link:hover::after {
    width: 100%;
}

.logo {
    font-size: 24px;
    font-family: 'Sacramento', cursive;
    color: #f2c765;
    flex-shrink: 0;
    margin: 0 20px;
    animation: bounce 1s infinite;
}

.header-content {
    text-align: center;
    margin-top: 150px;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

.header-content h1 {
    font-size: 90px;
    font-family: 'Sacramento', cursive;
    color: #f2c765;
}

.scroll-button {
    margin-top: 20px;
    padding: 12px 24px;
    border: 2px solid #f2c765;
    background-color: #f2c765;
    color: black;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.scroll-button:hover {
    background-color: #f2c765;
    color: #1c1c1c;
    transform: scale(1.05);
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

h5 {
    color: #f2c765;
    margin-bottom: 20px;
}

.contact-info {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.contact-image {
    margin-top: 20px;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.contact-image img:hover {
    transform: scale(1.05);
}

.social-media-icons {
    margin-top: 10px;
}

.social-media-icons a {
    color: #f2c765;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
}

.social-media-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer {
    background-color: #2c2c2c;
    color: #f2c765;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.footer h5 {
    margin: 5px 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .about-section {
        padding: 20px;
        width: 95%;
    }

    .about-title {
        font-size: 30px;
    }

    .scroll-button {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 60px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 16px;
    }

    .scroll-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Verberg navbar op kleine schermen */
    .w3-top {
        display: none;
    }

    /* Tabs: stapel ze verticaal */
    .tab-container {
        flex-direction: column;
        align-items: center;
        width: 100%; /* Zorg dat de tabs de volledige breedte nemen */
    }

    .tablink {
        width: 100%;
        margin: 5px 0;
        padding: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Verklein fontgrootte voor heel kleine schermen */
    .header-content h1 {
        font-size: 48px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
    }

    .scroll-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .tablink {
        font-size: 14px;
        padding: 8px;
    }
}
/* NavBar */
.w3-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: rgba(28, 28, 28, 0.9);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Zet de hele navbar-inhoud in het midden */
}

.logo {
    font-size: 24px;
    font-family: 'Sacramento', cursive;
    color: #f2c765;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #f2c765;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.nav-link::after {
    content: '';
    display: block;
    height: 3px;
    background: #f2c765;
    transition: width 0.3s;
    width: 0;
    margin: 0 auto;
}

.nav-link:hover::after {
    width: 100%;
}

/* Algemene sectie-opmaak */
.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: rgba(44, 44, 44, 0.8);
}

.about-title, h5 {
    color: #f2c765;
    text-align: center;
    margin-bottom: 20px;
}

.about-title {
    font-size: 36px;
}

.about-content, .divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.about-text {
    max-width: 600px;
    color: #f2c765;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.about-image, .contact-image {
    width: 100%;
    max-width: 700px;
    text-align: center;
}

.about-image img, .contact-image img {
    width: 100%;
    max-height: 400px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-image img:hover, .contact-image img:hover {
    transform: scale(1.05);
}

/* Divider styles */
.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #f2c765;
}

.divider-letter {
    margin: 0 10px;
    font-size: 24px;
    font-weight: bold;
    color: #f2c765;
}

/* Tabs-container */
.tab-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-bottom: 3px solid #f0e68c;
    flex-wrap: wrap;
}

.tablink {
    padding: 12px 24px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    color: #f2c765;
    border: 2px solid transparent;
    margin: 5px;
    font-size: 16px;
    background-color: #2c2c2c;
    border-radius: 5px;
}

.tablink:hover, .menu-button:hover {
    background-color: #f2c765;
    color: #1c1c1c;
    transform: scale(1.05);
}

.tablink.active {
    background-color: #f2c765;
    color: black;
}

/* Menu */
.menu {
    display: none;
    margin-top: 20px;
    text-align: center;

    border-radius: 10px;
    padding: 40px;
    background-color: #2c2c2c;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 800px;
    opacity: 0;
    animation: fadeIn 1s forwards 0.5s;
}

.menu.show {
    display: block;
}

.menu-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-items li, .item-name, .item-price {
    color: #f2c765;
}

.button-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
}

.menu-button {
    padding: 12px 24px;
    background-color: #444;
    border: none;
    color: #f2c765;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin: 0 5px;
}

/* Algemene layout-stijlen */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1c1c1c;
    color: #f2c765;
    text-align: center;
}

.bgimg {
    background: url("foto4.jpg") center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

* {
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* NavBar */
.w3-top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background-color: rgba(28, 28, 28, 0.9);
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 24px;
    font-family: 'Sacramento', cursive;
    color: #f2c765;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #f2c765;
    text-transform: uppercase;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.nav-link:hover {
    color: #fff;
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    display: block;
    height: 3px;
    background: #f2c765;
    transition: width 0.3s;
    width: 0;
    margin: 0 auto;
}

.nav-link:hover::after {
    width: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    /* Verberg navbar op kleine schermen */
    .w3-top {
        display: none;
    }

    /* Tabs: stapel ze verticaal */
    .tab-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .tablink {
        width: 100%;
        margin: 5px 0;
        padding: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Verklein fontgrootte voor heel kleine schermen */
    .header-content h1 {
        font-size: 48px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
    }

    .scroll-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .tablink {
        font-size: 14px;
        padding: 8px;
    }
}

/* Review Section */
.review-section {
    background-color: #1c1c1c;
    padding: 60px 20px;
    text-align: center;
    color: #f2c765;
}

.review-title {
    font-size: 32px;
    color: #f2c765;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.review-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-card {
    background-color: rgba(44, 44, 44, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    padding: 20px;
    max-width: 300px;
    flex: 1 1 300px;
    margin: 10px;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: scale(1.05);
}

.review-text {
    font-size: 16px;
    color: #f2c765;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    text-align: left;
}

.review-author {
    font-weight: bold;
    color: #f2c765;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .review-title {
        font-size: 28px;
    }

    .review-card {
        max-width: 100%;
    }
}

.review-stars {
    font-size: 18px;
    color: #f2c765; /* Gouden kleur voor sterren */
    text-align: center;
    margin-top: 10px;
    font-family: Arial, sans-serif; /* Optionele keuze voor sterkarakterweergave */
}

/* Aanpassing in de kaart voor sterpositie */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(44, 44, 44, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    padding: 20px;
    max-width: 300px;
    flex: 1 1 300px;
    margin: 10px;
    transition: transform 0.3s;
}

.golden-frame {
    border: 2px solid #f2c765; /* Gouden rand */
    padding: 20px;
    border-radius: 10px;
    color: #f2c765;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    background-color: #2c2c2c; /* Donkere achtergrond om te passen bij de website stijl */
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2); /* Subtiele schaduw */
    line-height: 1.6;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #f2c765; /* Gouden kleur voor de lijn */
}

.divider-letter {
    font-size: 24px;
    font-weight: bold;
    color: #f2c765; /* Gouden kleur voor de letter */
    font-family: 'Poppins', sans-serif;
}

.review-button {
    padding: 12px 24px;
    background-color: #f2c765;
    color: #1c1c1c;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #f2c765;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    display: inline-block;
}

.review-button:hover {
    background-color: #444;
    color: #f2c765;
    transform: scale(1.05);
}

a .review-button {
    text-decoration: none;
}

.scroll-button {
    padding: 12px 24px;
    background-color: #f2c765;
    color: #1c1c1c;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #f2c765;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    display: inline-block;
}

.scroll-button:hover {
    background-color: #444;
    color: #f2c765;
    transform: scale(1.05);
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centreert verticaal */
    align-items: center; /* Centreert horizontaal */
    background-color: rgba(44, 44, 44, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    padding: 20px;
    max-width: 300px;
    flex: 1 1 300px;
    margin: 10px;
    text-align: center; /* Centreert de tekst */
    transition: transform 0.3s;
}

.review-text, .review-author {
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
  }

  .container {
    padding: 20px;
    text-align: center;
  }

  h1 {
    margin-bottom: 20px;
    color: #333;
  }

  .folders {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .folder {
    background-color: #f2c765;
    color: white;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    width: 150px;
    text-align: center;
    transition: background-color 0.3s ease;
  }

  .folder:hover {
    background-color: #f2c765;
  }

  .content {
    margin-top: 20px;
  }

  .event {
    text-align: center;
  }

  .gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
  }

  .gallery img {
    width: 150px; /* Zorgt voor een vaste breedte */
    height: 150px; /* Zorgt voor een vaste hoogte */
    object-fit: cover; /* Zorgt dat de afbeelding netjes wordt bijgesneden */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  /* Lightbox Styling */
  #lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  #lightbox img {
    max-width: 80%; /* Max breedte van de afbeelding in de lightbox */
    max-height: 80%; /* Max hoogte van de afbeelding in de lightbox */
    width: auto;
    height: auto;
    border-radius: 8px;
  }

  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a; /* Zwarte achtergrond */
    color: #f5f5f5; /* Licht grijs voor leesbare tekst */
    line-height: 1.6;
  }

  .event-container {
    max-width: 800px;
    margin: 30px auto;
    background: #1a1a1a; /* Donker zwart */
    padding: 20px 30px;
    border-radius: 8px;
    border: 2px solid #d4af37; /* Gouden rand */
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4); /* Subtiele gouden gloed */
  }

  h1 {
    font-size: 2.5em;
    color: #d4af37; /* Goud */
    text-align: center;
    margin-bottom: 20px;
  }

  p {
    margin: 10px 0;
    color: #f5f5f5; /* Licht grijs */
  }

  .highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
  }

  .highlight {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
  }

  .highlight span {
    font-size: 1.8em;
    margin-right: 10px;
    color: #d4af37; /* Gouden pictogrammen */
  }

  .highlight p {
    margin: 0;
    font-size: 1em;
    color: #f5f5f5; /* Licht grijs */
  }

  .details {
    margin: 20px 0;
    padding: 15px;
    border-left: 4px solid #d4af37; /* Gouden lijn aan de linkerkant */
    background: #2b2b2b; /* Dieper zwart voor contrast */
  }

  .details p {
    margin: 10px 0;
    color: #f5f5f5; /* Licht grijs */
  }

  .closing {
    text-align: center;
    margin-top: 20px;
  }

  .closing p {
    font-size: 1em;
    color: #d4af37; /* Gouden afsluitingstekst */
  }

  /* Extra styling voor links (indien van toepassing) */
  a {
    color: #d4af37;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px; /* Breedte van het logo */
    height: 80px; /* Hoogte van het logo */
    margin: 0 auto; /* Centraal plaatsen */
  }

  .logo img {
    max-width: 100%; /* Zorgt dat het logo binnen de container blijft */
    max-height: 100%;
    transition: transform 0.3s ease; /* Animatie voor beweging */
    cursor: pointer;
  }

  /* Responsive layout voor kleinere schermen */
  @media (max-width: 768px) {
    .nav-links {
      flex-wrap: wrap; /* Navigatielinks naar de volgende regel indien nodig */
    }

    .logo {
      width: 100px; /* Verklein het logo op kleine schermen */
      height: 40px;
    }

    .nav-link {
      font-size: 0.9em; /* Kleinere tekstgrootte op kleine schermen */
    }
  }

  .folder {
    margin-top: 20px;
    padding: 12px 10px;
    border: 2px solid #f2c765;
    background-color: #f2c765;
    color: black;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.folder:hover {
    background-color: #f2c765;
    color: #1c1c1c;
    transform: scale(1.05);
}

.lot-container {
    text-align: center;
    margin-bottom: 20px;
}

.lot-button {
    padding: 12px 24px;
    background-color: #f2c765;
    color: #1c1c1c;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #f2c765;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.lot-button:hover {
    background-color: #444;
    color: #f2c765;
    transform: scale(1.05);
}

.lot-result {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #f2c765;
    animation: fadeIn 1s ease-in-out;
}

.game-title {
    font-size: 24px;
    color: #f2c765;
    margin: 30px 0 10px;
}

.memory-game {
    display: grid;
    grid-template-columns: repeat(4, 80px);
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.memory-card {
    width: 80px;
    height: 80px;
    background-color: #2c2c2c;
    border: 2px solid #f2c765;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s;
    color: transparent;
}

.memory-card.flipped {
    background-color: #f2c765;
    color: #1c1c1c;
    transform: rotateY(180deg);
}

.memory-status {
    color: #f2c765;
    font-size: 18px;
    text-align: center;
}

.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.welcome-content {
    background-color: #1c1c1c;
    padding: 30px 20px;
    border: 2px solid #f2c765;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(242, 199, 101, 0.4);
    max-width: 500px;
    width: 90%;
}

.popup-title {
    color: #f2c765;
    font-size: 28px;
    margin-bottom: 15px;
}

.popup-text {
    color: #f2c765;
    font-size: 16px;
    margin: 8px 0;
}

.popup-logo {
    width: 300px;
    margin-bottom: 7px;
}

.feestzalen-section {
    padding: 50px 20px;
    background-color: #1c1c1c;
    color: #f2c765;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.sub-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.feestzalen-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
}

.feest-suggesties {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
}

.slideshow-container {
    margin: 0 auto 30px;
    width: 90%;
    max-width: 600px;
    height: auto;
}

.slideshow-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 3 / 2; /* houdt verhouding consistent */
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto 30px;
    position: relative;
}

.slideshow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    display: block;
}

.contact-form {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: #2c2c2c;
    border-radius: 12px;
    border: 2px solid #f2c765;
    box-shadow: 0 0 15px rgba(242, 199, 101, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: box-shadow 0.3s;
}

.contact-form:hover {
    box-shadow: 0 0 25px rgba(242, 199, 101, 0.6);
}

.contact-form input,
.contact-form textarea {
    background-color: #1c1c1c;
    border: 2px solid #444;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    color: #f2c765;
    transition: border 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f2c765;
    box-shadow: 0 0 10px #f2c76588;
    background-color: #1a1a1a;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    padding: 14px;
    background-color: #f2c765;
    color: #1c1c1c;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #f2c765;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-out;
}

.contact-form.visible {
    animation: slideUp 0.8s ease-out forwards;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #f2c765;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-button:hover {
    transform: scale(1.2);
}

@media (max-width: 600px) {
    .welcome-content {
        width: 90%;
        padding: 20px 15px;
    }
    .popup-title {
        font-size: 22px;
    }
    .popup-text {
        font-size: 14px;
    }
    .popup-logo {
        width: 70%;
        height: auto;
    }
    .close-button {
        font-size: 24px;
    }
}

.hamburger {
    display: none;
    font-size: 30px;
    color: #f2c765;
    cursor: pointer;
    margin-right: 20px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgba(28, 28, 28, 0.95);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        border-radius: 8px;
        padding: 10px 0;
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

html, body {
  position: relative;
  z-index: 1;
}

.victoria-avatar-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2147483647;
  width: auto;
  height: auto;
  cursor: pointer;
}

.victoria-avatar-container {
  position: relative;
  z-index: 2147483647;
}

.victoria-avatar {
  width: 80px;
  animation: float 2s ease-in-out infinite;
  pointer-events: none;
}

.victoria-chatbox {
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: #2c2c2c;
  border: 2px solid #f2c765;
  color: #f2c765;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  position: fixed;
  bottom: 120px;
  left: 20px;
  font-family: 'Poppins', sans-serif;
  z-index: 2147483646;
}

.victoria-chatbox button {
  background-color: #f2c765;
  color: #1c1c1c;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.victoria-chatbox button:hover {
  background-color: #fff0b3;
}

.victoria-answer {
  margin-top: 10px;
  font-style: italic;
}

.victoria-balloon {
  background-color: #f2c765;
  color: #1c1c1c;
  padding: 10px;
  border-radius: 10px;
  font-weight: bold;
  animation: fadeIn 1s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pinksteren {
  width: 100%;
  max-width: 800px; /* eventueel beperken tot een maximum */
  margin: 0 auto;
}

.pinksteren img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; /* optioneel: mooie afgeronde hoeken */
}

.evenement {
  background-color: #1e1e1e;
  color: #f2c765;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid #f2c765;
  margin-top: 50px;
}

.evenement h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.evenement-fotos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.evenement-fotos img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.evenement-tekst {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.evenement-tekst ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.evenement-tekst ul li {
  margin-bottom: 8px;
}

.evenement-tekst code {
  background: #fff0b3;
  padding: 4px 8px;
  border-radius: 5px;
  color: #1c1c1c;
  font-weight: bold;
}

@media (max-width: 600px) {
  .evenement-fotos {
    flex-direction: column;
    align-items: center;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #f2c765;
  margin: 4px 0;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2c2c2c;
    border: 2px solid #f2c765;
    border-radius: 8px;
    padding: 10px;
    z-index: 9998;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1000;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #f2c765;
  margin: 4px 0;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2c2c2c;
    border: 2px solid #f2c765;
    border-radius: 8px;
    padding: 10px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }
}


.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(28, 28, 28, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* NIEUW: container om navigatie-items te centreren */
.nav-center {
  display: flex;
  justify-content: center;
  flex: 1;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}


@media (max-width: 768px) {
  .nav-links {
    display: none; /* Belangrijk! Verberg standaard */
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2c2c2c;
    border: 2px solid #f2c765;
    border-radius: 8px;
    padding: 10px;
    z-index: 9998;
  }

  .nav-links.active {
    display: flex; /* Alleen tonen als 'active' */
  }

  .hamburger {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
  }
}


.victoria-balloon {
  background-color: #f2c765;
  color: #1c1c1c;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: absolute;
  bottom: 100px;
  left: 80px; /* schuift ballon meer naar rechts */
  width: 240px;
  text-align: center;
  z-index: 9999;
}


.victoria-groet {
  background-color: #f2c765;
  color: #1c1c1c;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  text-align: center;
}

.photo-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 10px;
  background-color: #1c1c1c;
}

.side-photo {
  flex: 1;
  max-width: 25%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.main-photo-wrapper {
  flex: 2;
  position: relative;
  max-width: 50%;
}

.main-photo {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
  display: block;
}

.side-photo:hover, .main-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(242, 199, 101, 0.4);
}

.main-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  
  padding: 20px 30px;
  border-radius: 10px;
  color: #f2c765;
  z-index: 2;
}

.main-overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.main-overlay p {
  font-size: 18px;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
  .photo-showcase {
    flex-direction: column;
    padding: 0;
  }

  .side-photo {
    display: none;
  }

  .main-photo-wrapper {
    max-width: 100%;
  }

  .main-overlay h2 {
    font-size: 24px;
  }

  .main-overlay p {
    font-size: 16px;
  }
}


.w3-top {
  height: 80px; /* stel de exacte hoogte in als die vast is */
}

.photo-showcase {
  margin-top: 80px; /* zelfde hoogte als navbar */
}




@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #2c2c2c;
    border: 2px solid #f2c765;
    border-radius: 8px;
    padding: 10px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* --- Victoria Popup GOLD/BLACK --- */

/* standaard verborgen */
.victoria-hidden {
    display: none !important;
}

/* Donkere overlay boven de pagina (maar restaurant blijft zichtbaar) */
#victoria-overlay {
    position: fixed;
    inset: 0;
    background: black;      /* iets donker, maar niet zwart *           /* lichte blur */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;                      /* boven alles */
}

/* Popup kaart zelf */
#victoria-popup {
    background: black;   /* bijna zwart, maar zacht */
    border-radius: 24px;
    padding: 45px 55px;
    width: min(90%, 650px);
    text-align: center;
    border: 2px solid #f2c765;           /* goud randje */
    box-shadow: 0 0 40px rgba(242,199,101,0.65);
    font-family: "Poppins", sans-serif;
    animation: popupIn 0.3s ease-out;
}

/* Titel in goud */
#victoria-popup h2 {
    margin: 0 0 18px 0;
    font-size: 32px;
    font-weight: 600;
    color: #f2c765;
}

/* Tekst in goud */
#victoria-popup p {
    margin: 0 0 32px 0;
    font-size: 20px;
    color: #f2c765;
}

/* Sluit-knop */
#victoria-close-btn {
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid #f2c765;
    background: transparent;
    color: #f2c765;
    cursor: pointer;
    transition: 0.25s ease;
}

#victoria-close-btn:hover {
    background: #f2c765;
    color: #111;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(242,199,101,0.7);
}

/* Animatie */
@keyframes popupIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}




