/* Vervang de bestaande logo en menu CSS in common-styles.css met onderstaande */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Logo container */
.logo-container {
    position: fixed;
    top: 50px;
    right: -5px;
    z-index: 102;
    display: flex;
    transition: transform 0.5s ease;
}

.logo {
    width: 50px;
    height: auto;
    cursor: pointer;
    position: relative;
    z-index: 110;
    filter: drop-shadow(-5px 5px 5px rgba(0, 0, 0, 0.25));
}

/* Nieuw menu panel ontwerp */
.menu-panel {
    background-color: white;
    position: absolute;
    right: -5px;
    top: -2px;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    width: 350px;
    padding: 20px;
    z-index: 105;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.25);
}

.logo-container.open .menu-panel {
    transform: translateX(0);
}

/* Menu header met logo */
.menu-header {
    margin-bottom: 30px;
    padding-bottom: 0px;
    border-bottom: 1px solid transparent;
}

.menu-logo {
    width: 240px;
    height: auto;
    cursor: pointer;
}

/* Menu items styling */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.menu-item {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 1.4;
    padding: 2px 25px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.menu-item.active {
    color: black;
    font-weight: bold;
}

.menu-item:hover:not(.active) {
    color: black;
}

/* Menu separator */
.menu-separator {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 15px 0;
}

/* Pagina onderdelen */

h2 {
    font-size: 64px;
    margin-bottom: 15px;
    font-weight: bold;
    /* margin-top: 15px; /* Add space above the heading */
}

p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
    /* Decreased line height by 0.1 */
}

/* NIEUW: Stijl voor de slideshow links in de contact sectie */
.load-slideshow-link {
    display: inline-block;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    /* 50% zwart */
    transition: color 0.3s ease;
    cursor: pointer;
    font-weight: normal;
    /* Zorgt ervoor dat de link niet vet wordt weergegeven */
}

.load-slideshow-link:hover {
    color: rgba(0, 0, 0, 1);
    /* 100% zwart bij hover */
}

.opmaak-url {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 60px;
    font-weight: bold;
    line-height: 2;    
    transition: color 0.3s ease;
    cursor: pointer;

}

        .fade-in {
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

/* Responsive aanpassingen voor mobiel */
@media screen and (max-width: 768px) {
    .logo {
        width: 45px;
        transform: scale(0.9);
        transform-origin: top right;
    }

    .menu-panel {
        width: 270px;
        padding: 15px;
    }

    .menu-logo {
        width: 200px;
    }

    .menu-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .menu-item {
        font-size: 16px;
    }

    .menu-separator {
        margin: 10px 0;
    }
    h2 {
    font-size: 40px;
    margin-bottom: 8px;
    font-weight: bold;
    /* margin-top: 15px; /* Add space above the heading */
}
.opmaak-url {

    font-size: 20px;
    font-weight: bold;
    line-height: 2;    
    transition: color 0.3s ease;
    cursor: pointer;
}
}



/* Orientation warning */
.orientation-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
}

.landscape-orientation-warning {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
}

@media (max-width: 768px) and (orientation: portrait) {
    .orientation-warning {
        display: block;
    }

    .landscape-orientation-warning {
        display: none;
    }
}

@media (orientation: landscape) {
    .orientation-warning {
        display: none;
    }

}

@media (max-width: 768px) and (orientation: landscape) {
    .menu-header {
        margin-bottom: 10px;
        padding-bottom: 0px;
        border-bottom: 1px solid transparent;
    }

    .menu-item {
        font-size: 14px;
        line-height: 1.2;
        padding: 1px 25px;
    }

    .landscape-orientation-warning {
        display: block;
    }
}