* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background-image: url('backgroundimage.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow-x: hidden;
    font-family: "Ruda", sans-serif;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    text-decoration: none;
}

.logo img {
    height: clamp(36px, 6vh, 80px);
    width: auto;
    display: block;
}

.navbar {
    width: 100%;
    background-color: #edecf0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 20px;
}

.box {
    max-width: 980px;
    width: min(95%, 980px);
    padding: 28px;
    background-color: rgba(255, 255, 255, 0.92);
    color: black;
    margin: 5vh auto;
    text-align: center;
    font-family: "Ruda", sans-serif;
    border-radius: 18px;
}

.welcomeHeader {
    font-size: clamp(2.5rem, 1vw, 2.5rem);
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
}

.description {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.button,
.bookButton {
    background-color: #4e5a0f;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.75rem);
    font-family: "Verdana", sans-serif;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    margin-top: 40px;
    user-select: none;
    font-weight: bold;
}

.button:hover,
.bookButton:hover {
    background-color: #819134;
    transform: translateY(-2px);
}

.button:active,
.bookButton:active {
    transform: scale(0.95);
    background-color: #252b0b;
}

.foot {
    margin-top: 40px;
    font-size: 1rem;
    text-align: center;
    position: relative;
    right: 0;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.navlink {
    text-decoration: none;
    color: black;
    font-family: "Ruda", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.15s, font-weight 0.15s;
    user-select: none;
}

.navlink:hover {
    color: #9db81b;
    font-weight: 700;
}

.bookingBox {
    max-width: 900px;
    width: min(95%, 900px);
    padding: 40px;
    margin: 5vh auto;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.92);
    color: black;
    text-align: center;
    font-family: "Ruda", sans-serif;
}

.bookingBox h2 {
    margin-bottom: 1.5rem;
}

.label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1rem;
    text-align: left;
}

.input {
    display: block;
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 0px;
    border: 3px solid #4e5a0f;
    border-radius: 50px;
    font-size: 1rem;
    font-family: "Verdana", sans-serif;
    transition: border-color 0.3s;
}

.qty {
    display: block;
    width: 25%;
    padding: 14px 18px;
    margin-bottom: 20px;
    border: 3px solid #4e5a0f;
    border-radius: 50px;
    font-size: 1rem;
    font-family: "Verdana", sans-serif;
    transition: border-color 0.3s;
}

.input:focus {
    border-color: #819134;
    outline: none;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .menu {
        width: 100%;
        justify-content: space-between;
    }

    .logo {
        font-size: 4.5vh;
    }

    .box,
    .bookingBox {
        width: min(100%, 94%);
        padding: 22px;
        margin: 4vh auto;
    }

    .description {
        font-size: 1rem;
    }

    .button,
    .bookButton {
        width: 100%;
        padding: 16px;
        font-size: 1.25rem;
    }

    .foot {
        margin-top: 32px;
        padding-right: 0;
    }
}
