/* Base styles */
body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #5D8AA8; /* A soft teal/blue */
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #4A7D94;
}

header img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

section {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5em;
    margin: 0;
}

h2 {
    font-family: 'Merriweather', serif;
    font-size: 2em;
    color: #5D8AA8; /* Matching soft teal/blue */
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0 0 20px 0;
    padding: 0;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    max-width: 200px;
    max-height: 200px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    margin: 10px 0 5px;
}

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

form input[type="submit"] {
    width: auto;
    background-color: #5D8AA8; /* Matching soft teal/blue */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 20px;
}

form input[type="submit"]:hover {
    background-color: #4A7D94;
}

@media (max-width: 768px) {
    .thumbnail {
        max-width: 150px;
        max-height: 150px;
    }

    header {
        padding: 10px;
    }

    nav ul li {
        display: block;
        margin: 5px 0;
    }

    nav ul li a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .thumbnail {
        max-width: 100px;
        max-height: 100px;
    }

    header h1 {
        font-size: 18px;
    }

    nav ul li a {
        font-size: 12px;
    }
}
