* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Serif', serif;
}

body {
    background: #e6f0e6;
    color: #1a3c34;
    line-height: 1.6;
}

header {
    background: #1a3c34;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline from logo link */
}

.logo img {
    width: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8em;
    color: #fff;
    font-weight: 300;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
}

nav a {
    color: #a9cba4;
    text-decoration: none;
    font-size: 1em;
    font-weight: 300;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

nav a.active {
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #a9cba4;
    line-height: 1; /* Ensure vertical alignment */
    vertical-align: middle; /* Center vertically */
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #1a3c34;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 300;
}

.hero p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
    color: #a9cba4;
    font-weight: 300;
}

.section {
    padding: 50px 40px;
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative; /* Ensure button positioning context */
}

.section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #1a3c34;
    font-weight: 400;
}

.section h3 a {
    color: #1a3c34;
    text-decoration: none;
}

.section h3 a:hover {
    color: #2e4b44;
    text-decoration: underline;
}

.section p, .section ul {
    font-size: 1em;
    color: #2e4b44;
    font-weight: 300;
}

.section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.section ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.section ul li:before {
    content: '🌳';
    position: absolute;
    left: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 0;
    align-items: start;
}

.gallery-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img.portrait {
    width: 200px;
    height: 300px;
    object-fit: cover;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-item figcaption {
    margin-top: 10px;
    font-size: 0.9em;
    color: #2e4b44;
    font-weight: 300;
}

.video-container {
    margin-top: 20px;
    text-align: center;
}

.video-container video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.read-more-btn, .visit-website-btn, .back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #1a3c34;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 400;
    transition: background 0.3s ease;
    align-self: flex-end; /* Align to the right using Flexbox */
}

.section.honey-section, .section.who-we-are-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.read-more-btn:hover, .visit-website-btn:hover, .back-btn:hover {
    background: #2e4b44;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-text {
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #1a3c34;
    font-weight: 400;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #a9cba4;
    border-radius: 5px;
    font-size: 1em;
    background: #f5f8f5;
    color: #1a3c34;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a3c34;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a9cba4;
}

.contact-form button {
    background: #1a3c34;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #2e4b44;
}

footer {
    background: #1a3c34;
    text-align: center;
    padding: 25px;
}

footer p {
    font-size: 0.9em;
    color: #a9cba4;
    font-weight: 300;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #e6f0e6;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1a3c34;
        padding: 20px;
        max-height: calc(100vh - 60px); /* Limit height to viewport minus header */
        overflow-y: auto; /* Enable scrolling */
    }

    .nav-links.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
    }

    .logo h1 {
        font-size: 1.5em;
    }

    .hero {
        padding: 50px 15px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .section {
        padding: 40px 20px;
        margin: 20px 10px;
    }

    .section.honey-section, .section.who-we-are-section {
        display: block; /* Reset to block on mobile */
    }

    .section h3 {
        font-size: 1.5em;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .gallery-item img {
        max-width: 100%;
        height: 250px;
    }

    .gallery-item img.portrait {
        width: 200px;
        height: 300px;
    }

    .contact-text {
        margin-bottom: 20px;
    }

    .video-container video {
        max-width: 100%;
    }

    .read-more-btn, .visit-website-btn, .back-btn {
        width: 100%;
        text-align: center;
        align-self: auto; /* Reset alignment on mobile */
    }
}