/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Remove browser default link styling globally */
a,
a:visited {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
.site-header {
    background: #006400;
    color: #fff;
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
}

.logo img,
.header-img {
    border-radius: 114px;
    width: 100%;
    height: auto;
}

.header-content h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.header-content p {
    margin: 0.5rem 0;
}

.btn {
    display: inline-block;
    background: #c9e82c;
    color: #0c0c0c;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background: #56eff5;
}

/* Navigation */
.main-nav {
    background: #228B22;
    padding: 0.5rem;
    text-align: center;
    border-radius: 4px;
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.main-nav a:hover {
    text-decoration: underline;
}

/* Sections with Images */
.section-with-image {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: left;
}

.section-with-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.section-with-image>div {
    flex: 1;
}

.section-with-image h2 {
    color: #228B22;
    margin-bottom: 0.5rem;
}

/* Booking Form */
.booking-form {
    background: #fff;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.booking-form h2 {
    color: #006400;
    margin-bottom: 1rem;
}

.booking-form label {
    display: block;
    margin-top: 0.75rem;
    font-weight: bold;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.booking-form button {
    margin-top: 1rem;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: #006400;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.site-footer a {
    color: #ffd;
    text-decoration: underline;
    font-size: 0.95rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-nav a {
        display: block;
    }

    .header-content {
        text-align: center;
    }

    .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .logo img,
    .header-img {
        max-width: 80px;
    }

    .container {
        padding: 1rem 0.75rem;
    }

    .section-with-image {
        flex-direction: column;
        text-align: center;
    }

    .section-with-image img {
        width: 80%;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .section-with-image img {
        width: 100%;
    }
}

