/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #fdf6e3;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #8ba39b; /* foresty green/grey vibe */
    color: #fff;
    padding: 2rem;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header p {
    font-style: italic;
}

nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
    border-color: #8ba39b;
}

footer {
    background-color: #8ba39b;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
