/* -----------------------------------------------------------
   BASISSTIJL – Bij Maan
----------------------------------------------------------- */

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f7f5f2;
    color: #2f2f2f;
    letter-spacing: 0.2px;
}

main {
    padding-bottom: 2rem;
}

/* -----------------------------------------------------------
   HEADER & NAVIGATIE
----------------------------------------------------------- */

header {
    background: #ffffff;
    border-bottom: 1px solid #eae6e1;
    padding: 1.2rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    font-weight: 600;
    color: #2f2f2f;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #2f2f2f;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #8c7f75;
}

/* -----------------------------------------------------------
   RESPONSIVE MASONRY GALLERY
----------------------------------------------------------- */

.gallery {
    column-count: 3; /* default */
    column-gap: 1.5rem;
    padding: 2rem;
}

@media (max-width: 600px) {
    .gallery { column-count: 2; }
}

@media (min-width: 601px) and (max-width: 900px) {
    .gallery { column-count: 3; }
}

@media (min-width: 901px) and (max-width: 1400px) {
    .gallery { column-count: 4; }
}

@media (min-width: 1401px) {
    .gallery { column-count: 5; }
}

/* -----------------------------------------------------------
   FOTO-CARDS
----------------------------------------------------------- */

.photo {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;

    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.photo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;

    transition: transform 0.35s ease;
    cursor: zoom-in;
}

.photo:hover img {
    transform: scale(1.03);
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

footer {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-top: 1px solid #ddd;
}

/* -----------------------------------------------------------
   UPLOADPAGINA – Drag & Drop
----------------------------------------------------------- */

.upload-box {
    border: 2px dashed #d8cfc4;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: 0.25s ease;
    margin: 2rem;
    color: #2f2f2f;
}

.upload-box:hover {
    border-color: #8c7f75;
    background: #f7f5f2;
}

.upload-box.dragover {
    border-color: #2f2f2f;
    background: #eae6e1;
}

.upload-item {
    margin: 15px 2rem;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* -----------------------------------------------------------
   PROGRESS BARS
----------------------------------------------------------- */

.progress {
    height: 8px;
    background: #eae6e1;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-bar {
    height: 8px;
    width: 0%;
    background: #8c7f75;
    transition: width 0.2s ease;
}