/* Color Theme Swatches in Hex */
:root {
    --cbg: #2E3640;      /* Achtergrond (Donkerblauw/Grijs) */
    --wtext: #F2F2F2;    /* Witte Tekst */
    --eerste: #F2911B;   /* Accentkleur (Oranje/Brons) */
}
.wtext { color: #F2F2F2; }
.cbg { background-color: #2E3640; }
.nbg { background-color: #39414b;}
.eerste { color: #F2911B; }
.tweede { color: #868691; }
.derde { color: #333539; }
.vierde {color: #F2EBDC;}
.ctm-button {
    background-color: #2E3640;
    color: #F2F2F2;            
    border: 2px solid #F2EBDC;
    border-radius: 6px;        
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 
        background-color 0.3s ease, 
        color 0.3s ease, 
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.ctm-button:hover {
    background-color: #333539; 
    color: #F2911B;            
    border-color: #F2911B;
    box-shadow: 0 4px 10px rgba(242, 145, 27, 0.4); 
}
.ctm-button:active {
    background-color: #2E3640; 
    border-color: #F2911B;
    box-shadow: 0 2px 5px rgba(242, 145, 27, 0.6) inset; 
    transform: translateY(1px);
}
.ctm-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 145, 27, 0.5); 
}
/* Fonts to use */
.fontnav {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.klik {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.hoofdst {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-decoration: underline;
}
.tinos-regular {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}

.tinos-bold {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: normal;
}

.tinos-regular-italic {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: italic;
}

.tinos-bold-italic {
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
}
.big {
    font-size: 1.7em;
}
.normal {
    font-size: 1.3em;
}
.small {
    font-size: 1.2em;
}
body {
    background-color: #2E3640;
}
.word {
    overflow-wrap: break-word;
}
/** NAVIGATIE STYLER **/
.navbar {
    position: fixed;
    width: 100vw;
    z-index: 1000;
    top: -1rem;
    padding: 0; 
}
.navi {
    width: 100%;
    height: 5em;
    top: 1em;
    position: relative;
    padding-left: 15%; 
    padding-right: 15%;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
}
.navibg {
    background-color: #39414b;
    padding-left: 0.5em;
}
#navbarSupportedContent {
    justify-content: flex-end; 
}
.nav-link {
    color: #F2f2f2; 
}
.navi a {
    color: #f2f2f2 !important; 
    text-decoration: none; 
}
.navi a:hover {
    color: #A69677 !important;
    text-decoration: underline;
}
.navi a:active,
.nav-item.dropdown .dropdown-toggle.show {
    color: #f2f2f2 !important; 
    text-decoration: none;
}
.nav-item.dropdown {
    position: static;
}
.nav-item.dropdown .dropdown-menu {
    left: 0; 
    right: 0;
    width: 100%; 
    border: none;
    border-radius: 0;
    margin-top: -0.5em;
    min-width: unset; 
}
.dropdown-menu li.dropdown-item a.dropdown-item {
    color: #f2f2f2;
}
.dropdown-menu a:hover {
    background-color: #F2F2F2;
    color: #333539 !important;
}
.card {
    min-width: 12rem;
    width: 100%;
}
.knop {
    background-color: #2E3640;
    color: #F2F2F2;            
    border: 2px solid #2E3640;
    border-radius: 6px;        
    padding: 5px 10px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: 
        background-color 0.3s ease, 
        color 0.3s ease, 
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.knop:hover {
    background-color: #333539; 
    color: #F2911B;            
    border-color: #F2911B;
    box-shadow: 0 4px 10px rgba(242, 145, 27, 0.4); 
}
.knop:active {
    background-color: #2E3640; 
    border-color: #F2911B;
    box-shadow: 0 2px 5px rgba(242, 145, 27, 0.6) inset; 
    transform: translateY(1px);
}
.knop:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 145, 27, 0.5); 
}
.navbar-toggler {
    background-color: transparent; 
    border: 2px solid #F2EBDC; 
    border-radius: 6px;
    padding: 6px 10px; 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: 
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler span.bi {
    color: #F2F2F2; 
    font-size: 1.5rem; 
    display: block; 
    line-height: 0.8; 
    transition: color 0.3s ease;
}
.navbar-toggler:hover {
    border-color: #F2911B; 
    box-shadow: 0 0 5px rgba(242, 145, 27, 0.6); 
}
.navbar-toggler:hover span.bi {
    color: #F2911B; 
}
.navbar-toggler:active {
    background-color: #333539; 
    transform: scale(0.98); 
}
.navbar-toggler[aria-expanded="true"] {
    border-color: #F2911B;
    background-color: #333539;
}
.navbar-toggler[aria-expanded="true"] span.bi {
    color: #F2911B;
}
.menu {
    color: #F2F2F2; 
    font-family: 'Oswald', sans-serif; 
    font-weight: bold; 
    letter-spacing: 1px; 
    font-size: 0.9rem;
}
/** HEADER **/
.header {
    left: 0;
    top: 5em;
    position: absolute;
    width: 60%;
  min-height: 600px;
  background-image: url('./img/left.avif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;    
    clip-path: polygon(
        0% 0,        /* Linkerbovenhoek */
        100% 0,      /* Rechterbovenhoek */
        100% 100%,    /* Rechteronderhoek: eindigt 20% van de top */
        0% 100%      /* Linksonderhoek: begint onderaan */
    );
    -webkit-clip-path: polygon(0% 0, 100% 0, 70% 100%, 0% 100%);
}
.header2 {
    right: 0; /* Plak deze vast aan de rechterkant */
    top: 5em;
    position: absolute;
    width: 60%; /* Neemt de rechterhelft van de breedte in */
    min-height: 600px;
    background-image: url('./img/right.avif'); /* Gebruik eventueel een andere foto */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    clip-path: polygon(
        0% 0,        /* Linkerbovenhoek */
        100% 0,      /* Rechterbovenhoek */
        100% 100%,    /* Rechteronderhoek */
        0% 100%       /* Linksonderhoek (op 80% hoogte) */
    );
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
/** ABOUT US **/
.mainbody {
    position: relative;
    top: 8em; 
    border-radius: 10px;
    background-color: #2E3640;
    padding-bottom: 2em; 
}

body.home .mainbody {
    position: relative;
    top: 43em; 
    background-color: #F2EBDC;
}
/* CONTACT */
.contact {
    min-height: 100%;
    background-color: #F2EBDC;
    color: #2E3640;
    overflow: auto;
}
.contact img {
    max-height: 150px;
}
/* AFSPRAAK PLANNER */
.field {
    background-color: #F2EBDC;
}
.form-control {
    border: none; 
    border-bottom: 2px solid #ccc; 
    border-radius: 0; 
    box-shadow: none !important; 
    transition: border-color 0.3s ease-in-out; 
}
.form-control:focus {
    border-color: #F2911B !important; 
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0.2em solid #F2911B;
    box-shadow: none !important;
}
.form-control {
    background-color: transparent;
}
.card-slot {
    background-color: #F2F2F2;
    color: #2E3640;
    margin-bottom: 1rem;
    border-left: 5px solid #F2911B;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-slot:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.tarieven-box {
    background-color: #f8f9fa; 
    border-left: 5px solid #F2911B; 
    border-radius: 6px;
    padding: 15px;
    margin-top: 25px;
}

.tarieven-titel {
    color: #F2911B;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tarieven-tekst {
    font-family: 'Barlow', sans-serif;
    color: #333539; 
    font-size: 0.9rem;
    line-height: 1.6;
}

.tarieven-prijs {
    font-weight: 700;
    color: #2E3640; 
}

.tarieven-disclaimer {
    font-size: 0.75rem;
    color: #868691;
    font-style: italic;
    text-align: right;
    margin-top: 5px;
}
/** modal image **/
.imagemod {
    max-height: 50vh;
    max-width: 90%;
    padding-bottom: 2em;
}
/** GALLERY **/
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 150px;
  grid-gap: 0.25em;
  grid-auto-flow: dense;
}
.gallery img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: relative;
   transition: border-radius 0.25s ease-in-out;
}
.horizontal{
    grid-column: span 2;
}
.vertical {
    grid-row: span 2;
}
.big{
    grid-column: span 2;
    grid-row: span 2;
}
@media (max-width: 576px) {
    .custom-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(10, 1fr); 
        gap: 0.25em; 
        min-height: 100vh;
    }
    /* Standaard 1x1 item op mobiel */
    .grid-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        /* Zorgt dat de verhouding 1:1 wordt op mobiel, zelfs als het item op desktop 'tall' was */
        aspect-ratio: 1 / 1 !important; 
    }
    
    .wide, .tall {
        grid-column: span 2 !important; 
        grid-row: span 1 !important;
        aspect-ratio: 2 / 1 !important; /* Optioneel: Behoud de 2:1 ratio op mobiel */
    }
    
    /* Update van .span-2x2 naar .qube */
    .qube { 
        grid-column: span 2 !important;
        grid-row: span 2 !important;
        aspect-ratio: 1 / 1 !important; 
    }
}
.imgholder {
    position: relative;
    overflow: hidden;
    transition: 
        transform 0.25s ease-in-out, 
        border 0.25s ease-in-out;
}
.imgholder:hover {
    transform: scale(1.03);
    border: 2px solid #F2911B;
    border-radius: 10px;
    z-index: 1;
}
.imgholder:hover ~ img span {
    border-radius: 10px;
}
.imgholder span:hover {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.imgholder span {
    position: absolute;
    display: block;
    background-color: rgba(46, 54, 64, 0.7); 
    color: #F2F2F2; 
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-family: "Tinos", serif;
    font-weight: 600;
    font-style: normal;
    z-index: 2;
    transition: border-radius 0.25s ease-in-out;
}
.navtop {
    position: relative;
    top: 5em;
    height: 80vh;
    width: 90%;
}
/* 404 Pagina Styling */
.fout-icon {
    font-size: 8rem;
    color: #F2911B;
    display: inline-block;
    animation: haperen 3s infinite linear;
}

@keyframes haperen {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(180deg); }
    25% { transform: rotate(160deg); } 
    40% { transform: rotate(200deg); }
    60% { transform: rotate(200deg); } 
    100% { transform: rotate(360deg); }
}

.fout-titel {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #F2F2F2;
    text-transform: uppercase;
    line-height: 1;
}

.fout-tekst {
    font-family: 'Tinos', serif;
    font-size: 1.3rem;
    color: #868691;
    margin-top: 20px;
    margin-bottom: 30px;
}