/* Globale font styling basis */
.custom-header, .custom-footer, .overlay-menu {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

/* Header positie */
.custom-header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.site-name {
    font-size: 32px; 
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

.site-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #ffffff;
    opacity: 0.8;
}

/* Footer positie */
.custom-footer {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 999;
}

.enter-button {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.enter-button:hover {
    opacity: 0.6;
}

/* --- OVERLAY MENU --- */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); 
    backdrop-filter: blur(2px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay-menu.active {
    display: flex;
}

.menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.menu-item:hover {
    opacity: 0.5;
}

.close-button {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.close-button:hover {
    opacity: 0.6;
}

[data-css-preset] .content_padding {
	padding-top: 2.9rem /*!main_margin*/;
	padding-bottom: 2.9rem /*!main_margin*/;
	padding-left: 2.9rem /*!main_margin*/;
	padding-right: 2.9rem /*!main_margin*/;
}

