
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;

    color: #333;
}

/* ************************** NAVIGATION AREA... ***************************** */
/*
header {
    background: #f5f5f5;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    font-weight: bold;  
    font-size: 24px;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
*/
/* General styles */
header {
    background: #f5f5f5;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
    font-weight: bold;  
    font-size: 24px;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Mobile menu toggle */
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    margin-left: auto; /* Push the button to the right */
    padding-right: 10px; /* Optional: add some spacing from the right edge */
}

/* Responsive styles */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide menu by default */
        flex-direction: column;
        font-size: 24px;
        background: #fff;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        right: 0;
        border: 1px solid #ddd;
        width: 200px;
    }

    nav ul.show {
        display: flex; /* Show menu when toggled */
    }

    .menu-toggle {
        display: block; /* Show toggle button on mobile */
    }
}

/* ************************** NAVIGATION AREA... ***************************** */


.hero {
    text-align: center;
    background: #f9f9f9;
    padding: 50px 20px;
}

/*
.hero h2 {
    font-size: 20px;
    color: #4a5937;
}
*/

.hero h1 {
    font-size: 48px;
    margin: 20px 0;
    color: #4a5937;
}

/*
.hero button {
    padding: 10px 20px;
    background: #4a5937;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
*/
.button {
    border: 2px solid #4a5937; /* Green border */
    background-color: transparent; /* Same as the underlying section */
    color: #4a5937; /* Green font color */
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.button:hover {
    background-color: #4a5937; /* Green background color */
    color: #fff; /* White font color (or match the section's background color) */
}    


.albums {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    background: #fff;
    width: 50%;
    margin: 0 auto;
}

.album {
    text-align: center;
}

.album img {
    width: 300px;
    height: auto;
    /*border-radius: 8px;*/
}

.album h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #4a5937;
}

.about {
    text-align: center;
    padding: 50px 20px;
    background: #4a5937;
    color: white;
    width: 70%;
    margin: 40px auto;
    /*border-radius: 10px;*/
}
.about h2{
    text-transform: uppercase;
    font-size: 24px;
}
.about a{
    color: white;
}

.full-width-image {
    width: 100%;
    height: 400px; /* Adjust the height as per your screenshot */
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without stretching */
    display: block;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 20px;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 24px; /* Adding margin above footer */
}

.contact h2 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info {
    width: 45%; /* Left-hand area */
    text-align: left;
}

.contact-info p {
    margin: 10px 0;
}

form {
    width: 45%; /* Right-hand area */
}

form input,
form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background: #4a5937;
    color: white;
    border: none;
    cursor: pointer;
}

.footer {
    background: #4a5937; /* Same green color as "Hello There" section */
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    margin-top: 20px; /* Add spacing above the footer */

    /* Fixed positioning */
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;  /* Ensure footer spans full width */
}

.social-icons a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
}

/* ##################### */

.text-box {
    background-color: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text */
    padding: 20px;
    margin: 20px auto;
    /*border-radius: 10px;*/
    max-width: 600px;
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.text-box ul {
    list-style-type: disc;
    margin-left: 20px;
}

.text-box-history {
    background-color: #f8f9fa; /* Light gray background */
    color: #333; /* Dark text */
    /*padding: 20px;*/
    margin: 20px auto;
    /*border-radius: 10px;*/
    max-width: 768px;
    /*box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);*/
    text-align: left;
}
.text-box-history p {
    margin-left: 0px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
    max-width: 70vw; /* Maximum 70% of the viewport width */
    margin: 0 auto; /* Center the gallery horizontally */
}

.gallery-item {
    overflow: hidden;
    /*border-radius: 8px;*/
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}