
body {
    margin: 0;
    font-family: "Georgia", serif;
    background: linear-gradient(#f4ead9, #efe3c7);
    color: #333;
    line-height: 1.6;
}

header {
    background: #7c8620;
    color: white;
    padding: 10px 15px;
    text-align: center;
}

header h1 {
    margin: 5px 0;
    font-size: 26px;  /* optioneel iets kleiner */
}

header p {
    margin: 2px 0 8px 0;
}

nav {
    margin-top: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

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

.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    text-align: center;
}

.section {
    margin-bottom: 40px;
}

.lotus {
    text-align: center;
    font-size: 26px;
    margin: 20px 0;
}

button {
    padding: 7px 14px;
    margin: 5px;
    border: none;
    background: #5e650f;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #9da834;
}

footer {
    text-align: center;
    padding: 25px;
    background: #e6d8bb;
    margin-top: 50px;
    font-size: 14px;
}

@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }
}

/* ===== GALLERY ===== */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Zachte meditatie-achtige hover */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
