/* ============================================================
   STYLE2.CSS — CLEAN, SAFE, NON-CONFLICTING VERSION
   ============================================================ */

/* ------------------------------
   GLOBAL LINK COLORS (SCOPED)
   ------------------------------ */
body a:link {
    text-decoration: none;
    color: #621004;
}

body a:active {
    text-decoration: none;
    color: #0099ff;
}

body a:visited {
    text-decoration: none;
    color: #621004;
}

body a:hover {
    text-decoration: none;
    color: #0000ff;
}

/* ------------------------------
   BODY
   ------------------------------ */
body {
    background-color: #b6ae94;
    font-family: calibri, verdana, arial, helvetica, "times new roman", serif;
    font-style: normal;
    text-align: justify;
    color: #000000;
    margin: 0 20px 20px 20px;
}

/* ------------------------------
   HEADINGS
   ------------------------------ */
h2 {
    font-family: verdana, arial, helvetica, "times new roman", serif;
    font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 16px;
    margin: 0;
}

/* ------------------------------
   NAVIGATION (UPDATED & CENTERED)
   ------------------------------ */
.navbar {
    font-family: verdana, arial, helvetica, "times new roman", serif, calibri;
    font-size: 14px;
    font-weight: bold;             /* Bold text */
    color: #ffffff;
    background-color: #656156;
    border: 1px solid #000000;
    height: 28px;

    display: flex;
    justify-content: center;        /* Center items horizontally */
    align-items: center;            /* Center items vertically */
    gap: 40px;                      /* Space between menu items */

    margin: 0;
    padding: 0 10px;
}

/* Links inside navbar */
.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;              /* Ensure links are bold */
}

.navbar a:hover {
    color: #ffcc66;                 /* Nice hover colour */
}

/* ------------------------------
   CONTENT CENTER
   ------------------------------ */
.content-center {
    font-family: verdana, arial, helvetica, "times new roman", serif, calibri;
    font-weight: normal;
    font-size: 14px;
    text-align: justify;
    line-height: 18px;
    color: #000000;
    margin: 5px 20px 20px 20px;
}

/* ------------------------------
   CUSTOM UL CLASS (RENAMED)
   ------------------------------ */
.list-custom {
    font-family: verdana, arial, helvetica, "times new roman", serif, calibri;
    font-style: normal;
    font-size: 14px;
    color: #000000;
    text-align: justify;
    line-height: 18px;
    margin: 0 5px 0 -20px;
}

/* ------------------------------
   IMAGE PADDING CLASSES
   ------------------------------ */
.indexpics,
.couplepics {
    padding: 2px 15px 2px 5px;
}

.akademiepics {
    padding: 0 10px 5px 0;
}

.personeel {
    padding: 10px 10px 10px 0;
}

/* ------------------------------
   THUMBNAIL BORDERS
   ------------------------------ */
.wallpaper img {
    border: 2px solid #F0DCB9;
}

.wallpaper:hover img {
    border: 2px solid #d45703;
}

.wallpaper:hover {
