body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px; /* Space for the sticky header */
}

header {
    background: #fff;
    color: #333;
    padding: 20px 40px; /* Increased padding */
    text-align: left;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Sticky header */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Higher z-index */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container h1 {
    margin: 0;
    color: #00594f; /* Forest Green accent */
    font-size: 24px;
    font-family: 'Dancing Script', cursive; /* Scrolled Font */
}

.logo-container img {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
}

nav {
    display: flex;
}

nav a {
    color: #555;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    color: #00594f; /* Forest Green accent */
}

.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 30px;
    margin-right: -10px; /* Adjust as needed */
}

.menu {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 89, 79, 0.9); /* Forest Green accent */
    border-radius: 50%;
    transition: all 0.5s ease;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translate(-50%, -50%);
    z-index: 999; /* Lower z-index than header */
}

.menu.active {
    pointer-events: auto;
    width: 200vw;
    height: 200vw;
    border-radius: 0;
}

.menu a {
    color: #fff;
    font-size: 24px;
    margin: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.3s; /* Add delay */
}

.menu.active a {
    opacity: 1;
    transform: scale(1);
}

@media screen and (max-width: 768px) {
    nav {
        display: none;
    }
    .menu-btn {
        display: block;
    }
}

main {
    padding: 20px;
}

.full-screen-image {
    background: url('../images/background-image.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden; /* Hide overflow */
}

.full-screen-image-activities {
    background: url('../images/background-image-activities.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden; /* Hide overflow */
}

.full-screen-image-gallery {
    background: url('../images/background-image-gallery.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden; /* Hide overflow */
}

.full-screen-image-prices {
    background: url('../images/background-image-prices.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden; /* Hide overflow */
}

.full-screen-image-contact {
    background: url('../images/background-image-contact.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden; /* Hide overflow */
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-block {
    display: flex;
    align-items: center;
}

.text {
    flex: 1;
    max-width: 60ch;
    line-height: 1.6em;
    font-size: 1.2em;
}

.left {
    padding: 20px 300px 20px 20px;
}

.right {
    padding: 20px 20px 20px 300px;
}

.reverse .text.right {
    order: 2;
}

.reverse .image-wrapper {
    order: 1;
}

.accent {
    color: #00594f;
    font-family: 'Dancing Script', cursive;
    font-size: 2em;
}

.image-wrapper {
    position: relative;
    flex: 1;
}

.accent-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100%;
    height: 100%;
    background-color: #00594f;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
}

.start-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -180%);
    color: #ffffff; /* White color */
    font-family: 'Dancing Script', cursive; /* Specified font */
    font-size: 3em; /* Appropriate text size */
    text-align: center;
}

.map-container {
    text-align: center;
    max-width: 100%;
    margin: 20px auto;
}

.map-container iframe {
    max-width: 100%;
    border-radius: 20px; /* Round the corners */
}

.heads {
    text-align: center;
    font-size: 3em; /* Appropriate text size */
}

.overlap {
    content: "";
    position: absolute;
    height: 2px; /* Adjust the height as needed */
    width: 100%;
    background-color: #f4f4f4; /* Match the background color */
    z-index: 10; /* Ensure it's above the image */
    display: none; /* Hidden by default */
}

@media screen and (max-width: 1800px) and (min-width: 1600px) {
    .left {
        padding: 20px 200px 20px 20px;
    }

    .right {
        padding: 20px 20px 20px 200px;
    }
}

@media screen and (max-width: 1600px) and (min-width: 1400px) {
    .left {
        padding: 20px 100px 20px 20px;
    }

    .right {
        padding: 20px 20px 20px 100px;
    }
}

@media screen and (max-width: 1400px) {
    .content-block {
        flex-direction: column;
    }

    .text {
        text-align: center;
        padding: 20px;
    }

    .reverse .text.right {
        order: 1;
    }

    .reverse .image-wrapper {
        order: 2;
    }

    .accent-bg {
        top: 0;
        right: 0;
    }
    .start-text {
        transform: translate(-50%, -70%);
    }
    .map-container {
        text-align: center;
        max-width: 80%;
        margin: 20px auto;
    }
    .map-container iframe {
        max-width: 100%;
        border-radius: 20px; /* Round the corners */
        max-height: 400px;
    }
    .spacing {
        line-height: 5px;
    }
    .wave {
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
    }
    .overlap {
        display: block;
    }
}