/* Algemene instellingen */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: rgba(0, 0, 0, 0.6);
    overflow-x: hidden;
    color: #f0f0f0;
    padding: 0;
}

/* Navbar styling */
.logo a img {
    width: 180px; /* Standaardgrootte logo */
    height: auto;
    position: relative; /* Zorgt ervoor dat het logo niet door de navbar wordt uitgelijnd */
    left: -50px; /* Dit verschuift het logo naar links */
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6); /* Voeg achtergrond toe voor zichtbaarheid */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Voeg schaduw toe voor meer diepte */
}

.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
    position: relative;
}

.navbar .nav-links li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    letter-spacing: 1.5px;
}

/* Hamburger menu */
/* Algemene styling voor de hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 30px;
    z-index: 1101;
    transition: transform 0.3s ease;
}

/* Lijnen in de hamburger */
.line {
    width: 30px;
    height: 4px;
    background-color: #D4AF37;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Popup-menu */
.popup-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.5s ease;
    z-index: 1000;
}

.popup-menu.show {
    right: 0;
}

.popup-menu ul {
    list-style: none;
    padding: 30px 20px;
    margin-top: 50px;
}

.popup-menu ul li {
    margin: 25px 0;
}

.popup-menu ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.3em;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.popup-menu ul li a:hover {
    color: #D4AF37;
    transform: translateX(10px);
}

/* Media Queries */

/* Telefoons (max-width: 576px) */
@media (max-width: 375px) {
    .logo a img {
        width: 150px;
        left: 20; /* Logo niet verschuiven voor kleinere schermen */
    }

    .navbar {
        padding: 10px;
    }

    .navbar .nav-links {
        display: none; /* Verborgen, gebruik hamburger menu */
    }

    .hamburger {
        display: flex; /* Toont het hamburger menu */
    }

    .popup-menu ul li a {
        font-size: 1.2em;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .logo a img {
        width: 160px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .navbar .nav-links {
        display: none; /* Hamburger menu voor tablets */
    }

    .hamburger {
        display: flex;
    }
}

/* Kleine laptops (max-width: 992px) */
@media (max-width: 992px) {
    .logo a img {
        width: 180px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .navbar .nav-links li a {
        font-size: 16px;
    }
}

/* Desktops en grotere schermen (min-width: 1200px) */
@media (min-width: 1200px) {
    .logo a img {
        width: 220px;
    }

    .navbar {
        padding: 15px 45px;
    }

    .navbar .nav-links li a {
        font-size: 18px;
    }
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Stijl voor de footer-icon container */
.footer-icon {
    display: flex;
    gap: 20px;
}

/* Basisstijl voor de footer-iconen */
.footer-icon a img {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Vergroot de iconen bij hover */
.footer-icon a:hover img {
    transform: scale(1.2);
}

/* Call to Action */
.cta {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
}

.cta h2 {
    margin-bottom: 1rem;
    color: #D4AF37;
}

.cta a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    color: #121212;
    background: #D4AF37;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.cta a:hover {
    background: #f0c050;
    text-decoration: none;
}
