body {
    margin: 0;
    background-color: rgb(255, 249, 251);
}

img {
    pointer-events: none;
}

/* Existing CSS */
header {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 10%;
    background-color: rgb(251, 243, 245);
}

.logo img {
    width: 200px;
}

.right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right a {
    text-decoration: none;
    font-family: "Courgette", cursive;
    font-size: 25px;
    color: #3A3C3F;
    margin: 0 35px;
    display: flex;
    align-items: center;
}

.right a:hover {
    border-bottom: 2px solid #3A3C3F;
}

a.primary {
    border-bottom: 2px solid #3A3C3F;
}

.dropbtn {
    background: transparent;
    border: none;
    font-family: "Courgette", cursive;
    font-size: 25px;
    color: #3A3C3F;
    margin-left: 35px;
}

.dropdown {
    align-items: center;
    position: relative;
    display: flex;
}

.dropdown img {
    height: 30px;
    margin-top: 4px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(251, 243, 245);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.dropdown-content a {
    color: #3A3C3F;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin: 0;
}

.dropdown-content a:hover {
    border-bottom: none;
    background-color: rgb(238, 232, 234);
}

.dropdown:hover .dropdown-content {display: block;}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive CSS */
@media (max-width: 1199px) {
    .right {
        display: none;
    }
    .menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }
}

@media (min-width: 1200px) {
    .menu-icon {
        display: none;
    }
}

/* Drawer CSS */
.drawer {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(251, 243, 245);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    font-family: Poppins;
}

.drawer a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #3A3C3F;
    display: block;
    transition: 0.3s;
}

.drawer a:hover {
    background-color: rgb(238, 232, 234);
}

.drawer .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.drawer a.closebtn {
    padding: 8px;
}







.hero {
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 12%;
    box-sizing: border-box;
    background-color: rgb(255, 249, 251);
    padding-top: 80px;
    color: #3A3C3F;
}

.hero-left {
    flex-grow: 1;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.hero-right {
    opacity: 0; 
    animation: slideIn 1.5s forwards 0.5s; 
}

.title {
    font-family: "Courgette", cursive;
    font-size: 50px;
    line-height: 60px;
    margin: 20px 0;
}

.caption {
    font-family: "Courgette", cursive;
    font-size: 16px;
    margin-bottom: 40px;
}

.links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
}

.links a {
    font-size: 25px;
    font-family: Poppins;
    text-decoration: none;
    color: white;
    border-radius: 40px;
    padding: 10px;
    background-color: #8FA18B;
    transition: box-shadow 0.5s ease-in-out;
    box-shadow: rgba(21, 28, 43, 0.15) 0px 3px 13px 0px;
    margin-bottom: 10px;
}

.links a:hover {
    box-shadow: rgba(21, 28, 43, 0.30) 0px 3px 13px 0px;
}

.hero-right img {
    width: 400px;
    border: 3px solid #B7A284;
    border-radius: 40px;
}


.information {
    width: 100%;
    min-height: 90%;
    display: grid;
    place-items: center;
    color: #3A3C3F;
    padding: 0 12%;
    box-sizing: border-box;
    background-color: #E0DFFF;
}

.information-box {
    border-radius: 40px;
    padding: 30px;
    text-align: center;
}

.information-top {
    margin-bottom: 30px;
}

.information-caption {
    font-family: "Courgette", cursive;
    font-size: 18px;
    line-height: 35px;
}

.information-line {
    font-family: "Courgette", cursive;
    font-size: 50px;
    line-height: 60px;
}

.wave-top {
    margin-bottom: -10px;
}

.wave-bottom {
    margin-top: -10px;
}

.information-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#toggleButton {
    font-family: Poppins;
    background-color: #8FA18B;
    padding: 10px;
    border-radius: 30px;
    margin-top: 15px;
    cursor: pointer;
    color: white;
    border: none;
    display: flex;
    align-items: center;
}

#toggleButton:hover {
    background-color: #83a17d;
}

#toggleButton img {
    height: 20px;
    margin-right: 6px;
}

.content {
    width: 100%;
    min-height: 90%;
    display: grid;
    place-items: center;
    background-color: rgb(255, 249, 251);
    padding-bottom: 80px;
    margin-top: 50px;
}

.box {
    width: 80%;
    background-color: rgb(251, 243, 245);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 40px;
    padding: 30px;
    box-sizing: border-box;
}

.box-left, .box-right {
    flex: 1;
    box-sizing: border-box;
    padding: 10px;
    display: grid;
    place-items: center;
}
.box-left img {
    width: 400px;
    border: 3px solid #B7A284;
    border-radius: 40px;
}

.box-right {
    font-family: "Courgette", cursive;
    color: #3A3C3F;
}

.box-title {
    font-size: 30px;
    font-weight: 500;
}

.box-description {
    font-size: 16px;
    width: 100%;
    line-height: 30px;
}

.box-description ul {
    list-style-position: inside;
}

li{
    list-style-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23808"><path d="M18 4c-4-1-6 3-6 3s-2-4-6-3-4 6-2 8l8 8 8-8c2-2 2-7-2-8z"></path></svg>');
 }

li::marker{
    font-size: 1.8em;
    line-height: 0.1;
}

footer {
    width: 100%;
    background-color: rgb(251, 243, 245);
    bottom: 0;
    font-size: 16px;
    color: rgb(58, 60, 63);
    font-family: Poppins;
    padding: 0 10%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer img {
    height: 200px;
}

.row_primary {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 2em;
    min-height: 15em;
    box-sizing: border-box;
    align-items: center;
}

.column_link_list {
    list-style-position: inside;
    padding-left: 0;
    text-align: justify;
}

.column_link_list li {
    display: inline-block;
    padding: 5px; 
}

.column_link_list li a {
    text-decoration: none;
    color: #3A3C3F;
}

.column_link_list li a:hover {
    border-bottom: 2px solid #3A3C3F;
}

.social_media_images {
    display: flex;
    flex-direction: row;
}

h3 {
    color: rgb(58, 60, 63);
    font-size: 1.4em;
    white-space: nowrap;
    margin: 0;
}

/* CSS voor de ons.html pagina! */

.ons-box-title {
    font-size: 30px;
    font-weight: 500;
    width: 100%;
    justify-content: left;
}

.ons-box-description {
    font-size: 16px;
    width: 100%;
    line-height: 30px;
    text-align: justify;
}

.ons-title {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 50px;
    font-family: "Courgette", cursive;
    color: rgb(58, 60, 63);
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.ons-title p {
    margin-bottom: 0px;
}

/* CSS voor de tarieven.html pagina! */

.tarieven {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.tarieven img {
    height: 800px;
    border-radius: 30px;
    border: 3px solid #B7A284;
}

/* CSS voor de gallerij.html pagina! */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 40px; 
    padding: 50px;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    border-radius: 25px;
    border: 3px solid #B7A284;
}

/* CSS voor de contact.html pagina! */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding-top: 50px;
    font-family: Poppins;
    color: rgb(58, 60, 63);
}

.google-map, .contact-info {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px;
    flex: 1 1 45%;
    max-width: 600px;
}

.google-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    line-height: 1.6;
    margin: 10px 0;
}

.contact-info a {
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* CSS voor de webshop.html pagina! */

.webshop-content {
    display: flex;
    margin-top: 50px;
    justify-content: center;
    font-family: Poppins;
}

/* CSS voor de voorwaarden.html pagina! */
.content-voorwaarden {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.content-voorwaarden h2, .content-voorwaarden h3 {
    color: #444;
    font-weight: 600;
    margin-bottom: 20px;
}

.content-voorwaarden p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-voorwaarden ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 20px;
}

.content-voorwaarden ul li {
    margin-bottom: 10px;
    line-height: 1.4;
}

@media only screen and (max-width: 1000px) {
    .title {
        font-size: 5vw;
        text-align: center;
    }
    .hero-right {
        display: grid;
        place-items: center;
        width: 100%;
        margin-top: 30px;
    }
    .hero-right img {
        width: 45vw;
    }
    .caption {
        font-size: 1.4vw;
    }
    .links a {
        font-size: 1.5vw;
        padding: 0.6vw 1.65vw;
    }
    .hero-left {
        display: grid;
        place-items: center;
        width: 100%;
    }
    .links {
        justify-content: center;
    }
    .box-left img {
        width: 100%;
    }
    .tarieven img {
        height: 400px;
    }
}

@media only screen and (max-width: 830px) {
    footer {
        padding: 0;
    }
    .box-left img {
        width: 80%;
    }
}

@media only screen and (max-width: 750px) {
    .title {
        font-size: 45px;
        text-align: center;
    }
    .caption {
        font-size: 14px;
    }
    .links a {
        font-size: 14px;
        padding: 7px 20px;
    }
    .hero-left {
        display: grid;
        place-items: center;
    }
    .links {
        justify-content: center;
    }
    header {
        padding: 16px 10px;
    }
    header .right a {
        margin: 0 10px;
        font-size: 20px;
    }
    .logo img {
        width: 150px;
    }
    .box-title {
        font-size: 30px;
    }
    .box {
        flex-direction: column;
        width: 90%;
    }
    .box-left img {
        width: 70%;
    }
    .row_primary {
        flex-direction: column;
        align-items: center;
    }
    .column {
        width: 100%;
        padding: 1em 0;
        min-height: auto;
        text-align: center;
    }
    .column_about img {
        height: 150px;
    }
    .column_link_list {
        text-align: center;
    }
    .column_link_list li {
        display: block;
        padding: 5px 0; 
    }
    .social_media_images {
        justify-content: center;
        flex-wrap: wrap;
    }
    .social_media_images a {
        margin: 5px;
    }
    footer {
        padding: 0 5%; /* Adjust to give more space on smaller screens */
    }
}
@media only screen and (max-width: 500px) {
    header {
        padding: 0 4%;
    }
    .title {
        font-size: 28px;
        line-height: 1;
    }
    .hero {
        padding-top: 20px;
    }
    .hero-left {
        text-align: center;
    }
    .caption {
        font-size: 12px;
    }
    .links a {
        font-size: 12px;
        padding: 5px 15px;
    }
    .logo img {
        width: 120px;
    }
    .box-title {
        font-size: 24px;
    }
    .box-left img {
        width: 60%;
    }
    ul {
        padding-left: 0;
    }
    .tarieven img {
        height: 300px;
    }
    .information {
        padding: 0;
    }
    .information-line {
        text-align: center;
        width: 100%;
        font-size: 40px;
    }
    .information-caption {
        text-align: center;
        width: 100%;
        font-size: 14px;
    }
}