* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    font-family: sans-serif;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.logo img {
    width: 300px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    display: flex;
    list-style: none;
    position: relative;
}

.menu li {
    margin-left: 10px;
    padding: 15px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    position: relative;
}
.menu li:hover {
    background-color: #f0eae4;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.menu li:hover .submenu,
.menu li:focus-within .submenu {
    display: block;
}

.menu li a {
    color: #344D3B;
    text-decoration: none;
    font-size: 22px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    padding: 15px;
    margin: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.submenu li {
    margin: 0;
    margin-top: 5px;
    padding: 15px 30px;
}

.submenu li:hover {
    background-color: #f0eae4;
}

.submenu li a {
    font-size: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    cursor: pointer;
}

.hamburger span {
    width: 35px;
    height: 5px;
    background: #d6b1a1;
    margin: 4px 0;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.content {
	margin-top: 150px;
}
.container {
    display: flex;
    height: 800px;
    width: 100%;
}

.left, .right {
    flex: 1;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0eae4;
    padding: 20px;
}

.left h1 {
    font-size: 4vw;
    text-align: center;
    color: #B98048;
}

.left .link {
    margin-top: 3vw;
    font-size: 1.8vw;
    color: #B98048;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 19px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #B98048;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.left .link:hover {
    color: #F0E3D7;
    background-color: #B98048;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.right {
    position: relative;
    background-color: #e0e0e0;
}

.right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.containerSecond {
    display: flex;
    flex-direction: row;
    height: auto;
    width: 98%;
    margin: 1%;
}
.leftSecond {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leftSecond img {
    width: 500px;
    height: 500px;
    border-radius: 100%;
    object-fit: cover;
}
.rightSecond {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    padding-right: 5%;
}
.rightSecond p {
    text-align: justify;
    font-size: 1.5vw;
    line-height: 1.5em;
    color: #344D3B;
}
.rightSecond h1 {
    text-align: justify;
    font-size: 2.5vw;
    line-height: 1.5em;
    color: #344D3B;
    font-weight: bold;
}
.rightSecond .link {
    margin-top: 3vw;
    font-size: 1.8vw;
    color: #f0eae4;
    background-color: #344D3B;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 19px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #344D3B;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.rightSecond .link:hover {
    color: #344D3B;
    background-color: #f0eae4;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.containerThird {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #f0eae4;
    text-align: center;
    padding-bottom: 50px;
    margin-top: -10px;
    margin-bottom: -10px;
}
.containerThird h1 {
    width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 3vw;
    color: #B98048;
    margin-block-start: 0px;
}

.itemThird {
    display: flex;
    flex-direction: column;

    margin: 10px;
    width: 23%;
    min-width: 200px;
    max-width: 400px;
    height: 600px;
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.itemThird img {
    width: 100%;
    height: auto;
    max-height: 60%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.itemThird img:hover {
    transform: translateY(-10px);
}
.itemThird p {
    padding: 10px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: calc(40% - 20px);
    color: #B98048;
    font-size: 1.1vw;
}
.containerFourth {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: #fff;
    padding-bottom: 50px;
    margin-top: -10px;
}
.containerFourth h1 {
    width: 100%;
    margin-bottom: 30px;
    font-size: 3vw;
    color: #344D3B;
	text-align: center;
}
.instagram-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1600px;
}

.instagram-gallery a {
    width: 20%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.instagram-gallery img {
    width: 100%;
    height: 100%;
    display: block;
}
.containerFive {
    display: flex;
    flex-wrap: wrap;
    height: auto;

    padding-left: 10%;
    padding-right: 10%;
    background-color: #d6b1a1;
    margin-top: -10px;
  }
.boxFive {
	flex: 1 1 20%;
	height: 450px;
	margin: 30px;
	padding: 50px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	color: #344D3B;
	text-decoration: none;
	background-color: #fff;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
}
.boxFive:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.boxFive h2 {
	font-size: 3vw;
}
.boxFive p {
	padding-top: 30px;
	font-size: 1vw;
}
footer {
	height: 200px;
	width: 100%;
	background-color: #fff;
	color: #344D3B;
	text-align: center;
}
footer p  {
    padding-top: 150px;
    color: #d6b1a1;
}
footer a {
    color: #d79071;
}
.footerPages {
    background-color: #d6b1a1;
    color: #f0eae4;
}
.footerPages p  {
    padding-top: 150px;
    color: #f0eae4;
}
.footerPages a {
    color: #f0eae4;
}

.containerAanbodHeader {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom-left-radius: 100px;
}
.containerAanbodHeader img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}
.containerAanbodText {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3%;
    padding-bottom: 5%;
}
.containerAanbodText h1 {
    font-size: 4vw;
    padding-bottom: 2vw;
    color: #ae916e;
}
.containerAanbodText p {
    font-size: 1.3vw;
    color: #ae916e;
    line-height: 1.4;
}
.containerPakket {
    display: flex;
    flex-direction: row;
    height: 700px;
    width: 100%;
}
.leftPakket {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leftPakket img {
    width: 70%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
}

.leftPakket img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.rightPakket {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    padding-right: 5%;
}
.rightPakket p {
    font-size: 1.2vw;
    line-height: 1.5em;
    color: #ae916e;
}
.rightPakket h1 {
    font-size: 3vw;
    line-height: 1.5em;
    color: #ae916e;
}
.rightPakket h2 {
    font-size: 2vw;
    line-height: 1.5em;
    color: #ae916e;
}
.rightPakket .link {
    margin-top: 3vw;
    font-size: 1.5vw;
    color: #f0eae4;
    text-decoration: none;
    background-color: #d6b1a1;
    padding: 10px 30px;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .24);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 280px;
}
.rightPakket .link:hover {
    color: #F0E3D7;
    background-color: #DEB8A7;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.rightPakket .linkalt {
    margin-top: 3vw;
    font-size: 1.5vw;
    color: #f0eae4;
    text-decoration: none;
    background-color: #d6b1a1;
    padding: 10px 30px;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .24);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 280px;
    cursor: pointer;
}
.rightPakket .linkalt:hover {
    color: #F0E3D7;
    background-color: #DEB8A7;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
.altbg {
    background-color: #f0eae4;
}
.containerAbout {
    display: flex;
    flex-direction: row;
    height: 800px;
    max-width: 100%;
}

.containerAbout img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.textContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
    padding-left: 10%;
   background-color: #F0EAE4;
}

.textContainer h1 {
    margin: 0;
    text-align: center;
    font-size: 4vw;
    color: #AE916E;
}

.arrow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4vw;
    text-decoration: none;
    color: black;
    cursor: pointer;
    color: #AE916E;
}
.arrow img {
    height: 4vw;
    width: auto;
}
.aboutText {
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 3%;
    padding-bottom: 5%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}
.aboutText h1 {
    font-size: 4vw;
    padding-bottom: 2vw;
    color: #ae916e;
}
.aboutText p {
    font-size: 1.3vw;
    color: #ae916e;
    line-height: 1.4;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f0eae4;
    margin-bottom: -10px;
}

.contact-text {
    flex: 1 1 40%;
    padding: 10%;
}
.contact-text h1 {
    font-size: 4em;
    margin-bottom: 20px;
    color: #344D3B;
}
.contact-text p {
    margin-bottom: 20px;
    color: #344D3B;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #344D3B;
}

.contact-details img {
    width: 20px;
    height: 20px;
}
.contact-details a {
    color: #344D3B;
}
.contact-form {
    flex: 1 1 40%;
    padding: 5%;
    border-radius: 8px;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #344D3B;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 20px;
    color: #344D3B;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    box-shadow: 0 0 1.5px 1.5px #ccc;
    outline: none;
    border-radius: 8px;
    font-size: 20px;
    border:0;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}
.contact-form input:hover, .contact-form input:focus, .contact-form textarea:hover, .contact-form textarea:focus {
    border-color: #D19D87;
    box-shadow: 0 0 12px rgba(209, 157, 135, 0.4);
}
.contact-form textarea {
    height: 250px;
}

.contact-form button {
    background-color: #d19d87;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 22px;
}

.contact-form button:hover {
    background-color: #b7826a;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}
.popup-content input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    box-shadow: 0 0 1.5px 1.5px #ccc;
    outline: none;
    border-radius: 8px;
    font-size: 20px;
    border: 0;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
}
 .popup-content input:hover,  .popup-content input:focus {
    border-color: #D19D87;
    box-shadow: 0 0 12px rgba(209, 157, 135, 0.4);
}
.popup-content button {
    margin-top: 15px;
    font-size: 1.5vw;
    color: #f0eae4;
    text-decoration: none;
    background-color: #d6b1a1;
    padding: 10px 10px;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .24);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    outline: inherit;
    border: none;
    cursor: pointer;
}
.popup-content button:hover {
    color: #F0E3D7;
    background-color: #DEB8A7;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.hidden {
    display: none;
}
.instagram-media {
    width: 50%;
    min-height: 400px;
    border: 0px !important;
}
.dont_show {
    opacity: 0;
}
@media (max-width: 1200px) {
    .itemThird {
        width: 48%;
    }
    .itemThird p {
    	font-size: 1.2em;
	}
    .boxFive p {
        font-size: 0.8em;
    }

    .containerAanbodText h1 {
        font-size: 3em;
    }
    .containerAanbodText p {
    font-size: 1em;
    }
    .rightPakket h1 {
        font-size: 3em;
    }
    .rightPakket h2 {
        font-size: 2em;
    }
    .rightPakket p {
        font-size: 1em;
    }
    .rightPakket .link {
        font-size: 2em;
        width: 355px;
    }
    .rightPakket .linkalt {
        font-size: 2em;
        width: 340px;
    }
    .containerAanbodHeader {
        height: 400px;
    }
    .aboutText p {
        font-size: 1em;
    }
    .aboutText h1 {
        font-size: 3em;
        padding-bottom: 2vw;
    }
}

@media (max-width: 980px) {
    .menu {
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        background-color: rgba(255, 255, 255, 0.9);
        width: 100%;
        max-height: 0;
        transition: max-height 0.5s ease-in-out;
        overflow: hidden;
    }

    .menu.active {
        max-height: 500px;
    }

    .menu li {
        text-align: center;
        margin: 10px 0;
    }
    .menu li:hover .submenu {
        display: block;
        position: relative;
        box-shadow: none;
        border-radius: 0;
    }

    .submenu {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .submenu li {
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }
    .logo img {
		width: 200px;
		height: auto;
	}
	.header {
		height: 100px;
	}
	.content {
		margin-top: 100px;
	}
    .container {
        flex-direction: column;
        height: auto;
		display: block;
    }

    .left, .right {
        height: 400px;
    }

    .left h1 {
        font-size: 5vw;
    }
    .left .link {
    	margin-top: 10vw;
	    font-size: 4vw;
	}
 	.containerSecond {
        flex-direction: column;
        height: auto;
        padding-bottom: 100px;
    }
    .leftSecond, .rightSecond {
        flex: 0 0 auto;
        width: 100%;
    }
    .leftSecond img {
        width: 250px;
        height: 250px;
        margin: 20px 0;
    }
    .rightSecond h1 {
        font-size: 5vw;
        padding-left: 5%;
        padding-right: 5%;
    }
    .rightSecond p {
    	padding-left: 5%;
    	padding-right: 5%;
        font-size: 3vw;
    }
    .rightSecond .link {
    	margin-top: 5vw;
	    font-size: 4vw;
	}
	.itemThird {
        width: 88%;
        height: auto;
    }
    .itemThird img {
		max-height: 100%;
		}
    .containerThird {
        margin-top: -10px;
    }
    .containerThird h1 {
    	font-size: 5vw;
	}
    .itemThird p {
    	font-size: 3vw;
    	height: calc(60% - 20px);
	}
	.containerFourth h1 {
		padding-top: 25px;
		font-size: 5vw;
	}
	.containerFourth {
	    display: block;
	    flex-direction: column;
	    align-items: center;
	    justify-content: center;
	    background-color: #fff;
        margin-top: 0px;
        height: 600px;
	}
    .instagram-media {
        width: 90%;
        min-height: 400px;
        padding-left: 10% !important;
        padding-right: 0% !important;
        border: 0px !important;
    }
	.instagram-gallery {
	    display: flex;
	    flex-wrap: wrap;
	    gap: 10px;
	    justify-content: center;
	    max-width: 1600px;
	}

	.instagram-gallery a {
	    width: 45%;
	    overflow: hidden;
	    border-radius: 10px;
	    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	    transition: transform 0.3s, box-shadow 0.3s;
	}

	.instagram-gallery a:hover {
	    transform: translateY(-5px);
	    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
	}

	.instagram-gallery img {
	    width: 100%;
	    height: auto;
	    display: block;
	}
	.containerFive {
		height: auto;
		padding-left: 2%;
		padding-right: 2%;
        margin-top: -15px;
	}
	.boxFive {
		width: 90%;
		margin: 1%;
        height: auto;
        padding-bottom: 50px;
	}
	.boxFive h2 {
		font-size: 5vw;
	}
	.boxFive p {
		font-size: 3vw;
	}

    .containerAanbodHeader {
        height: 300px;
    }

    .containerAanbodText h1 {
        font-size: 6vw;
    }
    .containerAanbodText p {
        font-size: 2.5vw;
    }
    .containerPakket {
        flex-direction: column;
        height: auto;
        align-items: center;
    }
    .leftPakket, .rightPakket {
        flex: 0 0 auto;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .leftPakket img {
        width: 80%;
        margin: 20px 0;
    }
    .rightPakket h1 {
        font-size: 6vw;
    }
    .rightPakket h2 {
        font-size: 5vw;
    }
    .rightPakket p {
        padding-left: 5%;
        padding-right: 5%;
        font-size: 2.5vw;
    }
    .rightPakket .link,  .rightPakket .linkalt {
        font-size: 3vw;
        width: 300px;
    }
        .containerAbout {
        flex-direction: column;
        height: auto;
    }

    .containerAbout img, .textContainer {
        width: 100%;
        height: auto;
    }

    .textContainer {
        padding: 20px;
    }
    .arrow {
        position: static;
        margin-top: 20px;
        transform: none;
        left: auto;
    }
    .contact-info {
        flex-direction: column;
    }
    .containerAanbodText h1 {
        font-size: 3em;
        padding-bottom: 2vw;
        color: #ae916e;
    }
    .containerAanbodText p {
        font-size: 1em;
        color: #ae916e;
        line-height: 1.4;
    }
    .containerAbout img {
        width: auto;
        height: 300px;
        object-fit: cover;
    }
    .textContainer {
        width: 100%;
        align-items: center;
    }
    .textContainer h1 {
        font-size: 2em;
    }
    .arrow img {
        height: 4em;
        width: auto;
    }
    .aboutText h1 {
        font-size: 2em;
        padding-bottom: 1em;
    }
    .aboutText p {
        font-size: 1em;
        line-height: 1.4;
    }
    .aboutText {
        text-align: center;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 3%;
        padding-bottom: 5%;
    }
}
@media (max-width: 650px) {
	.left h1 {
        font-size: 10vw;
    }
    .left .link {
    	margin-top: 15vw;
	    font-size: 7vw;
	}
	.rightSecond p {
    	padding-left: 5%;
    	padding-right: 5%;
        font-size: 5vw;
    }
    .rightSecond .link {
    	margin-top: 8vw;
	    font-size: 7vw;
        width: 100%;
	}
	.containerThird h1 {
    	font-size: 9vw;
	}
    .itemThird p {
    	font-size: 5.5vw;
    	height: calc(60% - 20px);
	}
	.containerFourth h1 {
		padding-top: 25px;
		font-size: 8vw;
	}
	.boxFive h2 {
		font-size: 8vw;
	}
	.boxFive p {
		font-size: 4.5vw;
	}
	.boxFive h2 {
		font-size: 8vw;
	}
	.boxFive p {
		font-size: 4.5vw;
	}

    .rightPakket p {
        padding-left: 5%;
        padding-right: 5%;
        font-size: 5vw;
    }
    .rightPakket .link,  .rightPakket .linkalt  {
        margin-top: 8vw;
        font-size: 6vw;
    }
}