/*
Theme Name: Cajac
Version: 1.0
*/

a,
a:link,
a:visited,
a:hover,
a:active {
    color: white;
    text-decoration: none;
	font-family: Germania; 
}
a:hover {
	color: #7a7393;
}

@font-face {
    font-family: 'Germania';
    src: url('fonts/Germania.ttf');
}

@font-face {
    font-family: 'Nova Flat';
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    background-image: url('../../uploads/2026/06/cajacbg1liggend.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.header-top {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background: rgba(58,46,84,0.7);
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.site-header-image {
	width: 100%;
    height: 460px;
	position: relative;
    background-image: url('../../uploads/2026/07/ink1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-logo {
    display: block;
    height: 150px;
}

.contact-text a {
	font-family: Arial, sans-serif;
}

.nav-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu-toggle {
    background-color: #28203b;
    display: inline-block;
    margin-left: 10px;
    margin-top: 10px;
    padding: 12px 24px;
    border: none;
    color: #fff;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.home-cards{
    display:flex;
    justify-content:center;
    align-items:stretch;	
	position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    align-items: flex-end;
}

.home-card {
    position:relative;

    width:160px;
    height:160px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    overflow:hidden;

    color:#fff;
	margin-left:30px;
	padding-bottom:0px;
	transition: padding-bottom 0.3s ease;
}

.home-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.65);

    transition:.35s ease;
    z-index:0;
}

.home-card>*{
    position:relative;
    z-index:1;
}

.home-card-icon{
    margin-bottom:35px;
}

.home-card-icon img{
    width:64px;
    height:64px;
    object-fit:contain;
    transition:.35s;
}

.home-card-title {
    position: relative;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: -30px;
	font-family: Arial, sans-serif;
}

.home-card-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #8a6fb5;
	margin-bottom: -7px;
	opacity: var(--after-opacity, 1);
}

.wp-block-image {
    text-align: center;
}

.wp-block-image img {
    margin-left: auto;
    margin-right: auto;
}

.our-artists-block {
	background-color: #f00;
}


.form-field-height {
	height: 2rem;
	border-radius: 5px;
	width:30rem;

}

.form-field-message {
	height: 6rem;
}

.form-field-image {
	display: inline-block;
    background-color: #7a7393;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.footerBottomrRightImg {
	display: block;
}

.socialicon {
	margin: 5px;
}

.scroll-top {    
    bottom: 25px;
    right: 25px;

    width: 72px;
    height: 50px;

    border: none;
    border-radius: 16px;

    background: rgba(183, 164, 219, 0.35);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    transition: all .25s ease;
}

.scroll-top:hover {
    background: rgba(183, 164, 219, 0.55);
    transform: translateY(-3px);
}

/* Desktop */
@media (min-width: 769px) {
    .menu-toggle, 
    #menu-back,
    .submenu-toggle {
        display: none !important; 
    }

    .main-menu {
		display: flex;
		align-items: center;
		font-family: 'Germania', sans-serif;
		font-size: 32px;
    }

	
    .main-menu ul {
        display: flex;
        gap: 20px;
        list-style: none;
        margin: 0;
        padding: 0;		
    }

    .main-menu li {
        position: relative;
    }

    .main-menu li a {
        color: #fff;
        text-decoration: none;
        padding: 10px 15px;
        display: block;
		
    }

    .main-menu .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #3A2E54;
        min-width: 200px;
        list-style: none;
        margin: 0;
        padding: 0;
        z-index: 999;

    }

    .main-menu li:hover > .sub-menu {
        display: block;
    }
	
	.current-menu-item a {
		background-color: #7a7393;
	}
	
	.sub-menu {
		font-size: 20px;
	}
	
	.sub-menu li:hover {
		background-color: #7a7393;
	}
	
	
	
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    box-sizing: border-box;
}


/* Hover */

.home-card:hover::before,
.home-card.active::before{
    background:#fff;
}

.home-card:hover,
.home-card.active{
    color:#372b55;
}

/* Icoon eventueel donker maken */

.home-card:hover img,
.home-card.active img{
    filter:brightness(0);
}

/* Small */
@media (min-width: 576px) {
    .container {        
		width: 100vw;
		margin: 0px;
    }
}

/* Medium */
@media (min-width: 768px) {
    .container {
        width: 100vw;
		margin: 0px;
    }
}

/* Large */
@media (min-width: 992px) {
    .container {
        width: 100vw;
		margin: 0px;
    }
}

/* Extra large */
@media (min-width: 1200px) {
    .container {
        width: 100vw;
		margin: 0px;
		max-width: 1200px;
    }
}

/* Extra extra large */
@media (min-width: 1400px) {
    .container {
		width: 1400px;
		margin: 0px;
        max-width: 1400px;	
    }
}

.row {
    display: flex;
    flex-wrap: wrap;	
}

.kolom {
    width: 100%;
    padding: 15px;
}


@media (min-width: 768px) {
	.row {
		margin: 0px;
		padding: 0px;
	}
	
    .kolom {
		margin: 0px;
		padding: 0px;
        width: 33%;
    }
}

/* Mobiel */
@media (max-width: 768px) {
	
	
	.site-header-image {
		display: none;
	}


    .main-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        height: 100vh;
        background-color: #333333;
        z-index: 9999;
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        overflow-y: auto;
    }
	
	.menu-toggle {
		background-color: #28203b;
		display: inline-block;
		margin-left: 10px;
		margin-top: 10px;
		padding: 12px 24px;
		border: none;
		color: #fff;
		font-family: Arial, sans-serif;
		cursor: pointer;
		position: absolute;
		left: 10px;
		top: 10px;
	}

    .main-menu.active {
        display: block;
    }

    .main-menu::before {
        content: "☰ MAAK UW KEUZE";
        display: flex;
        align-items: center;
        padding: 20px;
        background-color: #262626;
        color: #7a7393; 
        font-family: 'Impact', 'Arial Black', sans-serif;
        font-size: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: 1px solid #262626;
    }

    /* Standaard alle lijsten verbergen voor het schuifsysteem */
    .main-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: none; 
    }

    /* Alleen de allereerste (hoofd)lijst tonen bij het openen van het menu */
    .main-menu > ul,
    .main-menu > div > ul {
        display: block; 
    }

    .main-menu li {
        position: relative;
        border-bottom: 1px solid #262626;
        background-color: #3a3a3a;
        display: flex;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
    }

    .main-menu li a {
        display: block;
        padding: 25px 20px;
        color: #ffffff;
        text-decoration: none;
        font-family: Arial, sans-serif;
        font-size: 22px;
        flex-grow: 1;
    }

    .main-menu li:hover {
        background-color: #333333;
    }

    .submenu-toggle {
        width: 60px;
        height: 74px; 
        background: none;
        border: none;
        color: #7a7393;
        font-size: 28px;

        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;		
    }

    #menu-back {
        position: fixed;
        top: 15px;
        left: 240px; 
        z-index: 10000;
        background: #3A2E54;
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
    }
	
	.main-menu ul.hidden {
		display: none !important;
	}

	.main-menu ul.active {
		display: block !important;
	}
	
	.main-menu > ul {
		display: block;
	}
	.site-logo {
		display: block;
		margin: 0 auto;
	}
	
	.footerBottomrRightImg {
		display: none;
	}
}

#map {
	width: 100%;
	height: 500px;
}