.intro_topheader{
    height: 20px;
    background-color: var(--headertopcolor);
}
.intro_section{
    display: flex;
    justify-content: center;
    align-items: top;
    width: 60%;
    height: 68vh;
    box-sizing: border-box;
    margin: auto;
}
.intro_wrap{
    width: 40%;
}
    .intro_logo{
        width: 100%;
        aspect-ratio: 1/1;
        background-image: url("../img/intrologo.png");
        background-size: cover;
    }
    .intro_title{
        width: 100%;
    }
    .intro_slogan{
        width: 100%;
        text-align: center;
        padding-top: 10px;
        box-sizing: border-box;

    }
.intro_menu{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--headertopcolor);
    height:180px;
}
    .intro_menu_nav{
        display: flex;
        flex-direction: column;
        gap: 10px;
        color: var(--menufontcolor);
        font-size: 22px;
        align-items: center;
        justify-content: center;
        font-family: 'CustomFont2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }







.header_top{
    width:100%;
    height:20px;
    background-color: var(--headertopcolor);
}
.header_logo_sectie{
    display:flex;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 150px;
}
    .header_logo_wrap{
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        max-width: 1000px;
        width: 100%;
        height: 100%;
    }
        .header_logo{
            height: 100%;
            aspect-ratio: 1/1;
            background-image: url("../img/intrologo.png");
            background-size: cover;
        }
.header_menu{
    width:100%;
    height:50px;
    background-color: var(--headertopcolor);
}
.mob_menu_button{
    display: none;
}
    .menu_button{
        background-image: url('../img/menu_icon.png');
        background-size: cover;
        width: 30px;
        height: 30px;
        border: none;
        background-color: var(--headertopcolor);
    }
.header_menu_nav{
    display: flex;
    height: 100%;
    gap: 40px;
    color: var(--menufontcolor);
    font-size: 22px;
    align-items: center;
    justify-content: center;
    font-family: 'CustomFont2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.mob_menu{
    display: none;
}










.wie_con {
    position: relative;
    max-width:1000px;
    text-align: center;
    margin: auto;
    padding-bottom: 120px;
}
.wie_image {
    position: absolute;
    left: 5px;
    bottom: 20px;
    height: 15%;
    aspect-ratio: 1/1;
}
.wie_text {
    position: relative;
    z-index: 1; /* Zorg ervoor dat de tekst boven de afbeelding komt */
    text-align: center;
    padding: 20px;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: var(--headertopcolor);
}





.wat_con {
    position: relative;
    max-width:1000px;
    text-align: center;
    margin: auto;
    padding-bottom: 200px;
}
.wat_image {
    position: absolute;
    left: calc(50% - 100px);
    bottom: 20px;
    width: 200px;
    aspect-ratio: 1/1;
}
.wat_text {
    position: relative;
    z-index: 1; /* Zorg ervoor dat de tekst boven de afbeelding komt */
    text-align: center;
    padding: 20px;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: var(--headertopcolor);
}




.galerij_con {
    position: relative;
    max-width:1000px;
    text-align: center;
    margin: auto;
    padding-bottom: 200px;
}
.galerij_image {
    position: absolute;
    left: calc(50% + 60px);
    top: 20px;
    width: 140px;
    aspect-ratio: 1/1;
}
.galerij_text {
    position: relative;
    z-index: 1; /* Zorg ervoor dat de tekst boven de afbeelding komt */
    text-align: center;
    padding: 20px;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: var(--headertopcolor);
}
.galerij {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}
.galerij img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  cursor: pointer;
}
.galerij img:hover {
    transform: scale(1.05);
}
.foto-wrapper {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.foto-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.delete-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 18px;
  background: rgba(255,255,255,0.8);
  border-radius: 4px;
  padding: 2px 6px;
  cursor: pointer;
}

.add-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f3f3f3;
  border: 2px dashed #aaa;
}

.plus-icon {
  font-size: 48px;
  color: #999;
}

#upload-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}

#upload-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

#upload-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}
.uploadbutton{
    background: #4A2E00;
    color: #ED9301;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}




.blog_con {
    position: relative;
    max-width:1000px;
    text-align: center;
    margin: auto;
}
.blog_image {
    position: absolute;
    left: calc(50% + 60px);
    bottom: 0px;
    width: 150px;
    aspect-ratio: 1/1;
}
.blog_text {
    position: relative;
    z-index: 1; /* Zorg ervoor dat de tekst boven de afbeelding komt */
    text-align: center;
    padding: 20px;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: var(--headertopcolor);
    padding-bottom: 0px;
}
.blog_sign_desk{
    display: none;
}
.blog_sign_mob{
    display: block;
}
.blog_title{
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:#ED9301;
}
.blog-foto-klein {
    max-width: 200px;
    max-height: 150px;
    object-fit: cover;
    margin: 10px 10px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}





.contact_con {
    position: relative;
    max-width:1000px;
    text-align: center;
    margin: auto;
    padding-bottom: 150px;
}
.contact_image {
    position: absolute;
    left: calc(50% - 120px);
    bottom: 20px;
    width: 200px;
    aspect-ratio: 1/0.6;
}
.contact_text {
    position: relative;
    z-index: 1; /* Zorg ervoor dat de tekst boven de afbeelding komt */
    text-align: center;
    padding: 20px;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: var(--headertopcolor);
}
.contact_button{
    width: 100%;
    padding: 0.75rem;
    background-color: var(--headertopcolor);
    color: var(--menufontcolor);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}
.contact_form{
    box-sizing: border-box;
    max-width: 600px;
    margin: auto;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.contact_title{
    color: var(--headertopcolor);
}
.contact_input{
    width: calc(100% - 2rem);
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid var(--headertopcolor);
    border-radius: 6px;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}
.contact_textarea{
    width: calc(100% - 2rem);
    padding: 0.75rem;
    border: 1px solid var(--headertopcolor);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-family: 'CustomFont3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
}





#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#blog {
  max-width: 1000px;
  width: 100%;
  margin:auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
}
#blog .blog-preview {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: white;
  text-align: left;
}
#blog .blog-preview h2 {
  margin-top: 0;
}
#blog .blog-preview p {
  margin-bottom: 0.5rem;
}
#blog .leesmeer-btn {
  background: #4A2E00;
  color: #ED9301;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#bloglightbox {
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}
#bloglightbox-content {
  position: relative;
  background: white;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  color: #333;
  font-size: 18px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f9f9f9;
}
#bloglightbox-content::-webkit-scrollbar {
  width: 8px;
}
#bloglightbox-content::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}
#bloglightbox-content::-webkit-scrollbar-track {
  background-color: #f9f9f9;
}
#bloglightbox-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 40px;
  color: black;
  cursor: pointer;
}


.blog-preview {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.blog-actieknoppen {
  position: absolute;
  top: 8px;
  right: 0px;
  display: flex;
  gap: 1px;
}

.blog-actieknoppen .edit-btn,
.blog-actieknoppen .delete-btn {
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  color: #666;
  transition: transform 0.2s;
}

.blog-actieknoppen .edit-btn:hover,
.blog-actieknoppen .delete-btn:hover {
  transform: scale(1.2);
  color: #000;
}

.blog-preview h2 {
  margin-top: 0;
}

.delete-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s;
}

.delete-btn:hover {
  transform: scale(1.2);
  color: red;
}

.add-blog {
  text-align: center;
  font-size: 50px;
  color: #999;
  cursor: pointer;
  background: #f9f9f9;
  border: 2px dashed #ccc;
}

.plus-icon {
  display: inline-block;
  line-height: 1;
}

#blog-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

#blog-form-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  font-family: sans-serif;
}

#blog-form input, #blog-form textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

#blog-form button {
  padding: 10px 20px;
 background: #4A2E00;
  color: #ED9301;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#blog-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}
.edit-btn {
  position: absolute;
  top: 8px;
  left: -70px;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  color: #666;
}
.edit-btn:hover {
  color: #333;
}
#blog-overlay-edit {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

#blog-form-box-edit {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  font-family: sans-serif;
}

#blog-form-edit input, #blog-form-edit textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

#blog-form-edit button {
  padding: 10px 20px;
  background: #4A2E00;
  color: #ED9301;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#blog-close-edit {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}






footer{
    display: flex;
    width:100%;
    height:180px;
    background-color: var(--headertopcolor);
    padding: 10px;
    box-sizing: border-box;
}
    .footersec1{
        width:10%;
        height:100%;
        display:flex;
        justify-content: start;
        padding: 10px;
        box-sizing: border-box;
        color:#ED9301;
        font-family: 'CustomFont2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 20px;
    }
    .footersec2{
        width:80%;
        height:100%;
        display:flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
        color:#ED9301;
        font-family: 'CustomFont2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 20px;
    }
    .footersec3{
        width:10%;
        height:100%;
        display:flex;
        justify-content: end;
        padding: 10px;
        box-sizing: border-box;
        color:#ED9301;
        font-family: 'CustomFont2', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 20px;
    }