/* Algemeen */
body {
    font-family: 'Raleway', sans-serif;
    background: #ffffff;
    color: #606060;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h1,h2,h3 {
    font-weight: 300;
}

p {
    line-height: 1.6;
}

/* Updates sectie */
.album {
    padding: 50px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2f5d50;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Update kaart */
.update-card {
    background: #f7f5f2;
    border: 2px solid #8b5e3c;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.update-card:hover {
    transform: translateY(-5px);
}

/* Meta info */
.update-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: #2f5d50;
}

/* Badges */
.badge-hike {
    background: #6b8e23;
    color: #fff;
    border-radius: 40px;
    padding: 4px 10px;
    font-size: 0,10rem;
}

/* Afbeeldingen */
.update-img-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin-top: 10px;
}
.update-imgpf {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
}

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

/* Update tekst */
.update-card h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #2f5d50;
}

.update-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

  @media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .update-img {
        max-width: 100px; /* kleiner op mobiel */
    }
    .update-imgpf {
        max-width: 150px; /* voor pfp */
    }
}

