/* ===============================
   HEADER LAYOUT
================================ */

.site-header {
    position: relative;
    background-image: url("/pictures/header-bg.jpg");

    /* 🔁 herhaal */
    background-repeat: repeat;

    /* 📐 hele afbeelding zichtbaar */
    background-size: contain;

    /* 📍 netjes bovenin */
    background-position: top left;

    padding: 30px 40px 10px;
    border-bottom: 1px solid rgba(245, 217, 139, 0.3);
}

/* overlay voor donkere dekking */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.site-header * {
    position: relative;
    z-index: 2;
}

/* LOGO + TITEL op één rij */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* LOGO links */
.header-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header-logo img {
    height: 180px;
    width: auto;
}

/* TITEL gecentreerd */
.header-title {
    text-align: center;
}
.header-title h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    font-weight: normal;
    margin: 0;
}

/* =========================
   MENU
   ========================= */

nav {
    background: #111;
    border-bottom: 1px solid rgba(212,175,55,0.4);
}

nav ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

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

/* =========================
   HERO
   ========================= */

.hero {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}
/* =========================
   FOOTER
   ========================= */

footer {
    position: relative;
    text-align: center;
    padding: 40px 20px 30px;
    margin-top: 80px;
    color: #d4af37;
    animation: footerFade 1.5s ease-out;
}

/* Luxe gouden lijn */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,1),
        transparent
    );
    box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* Tekststijl */
footer p {
    font-size: 14px;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

/* Fade-in animatie */
@keyframes footerFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   PAGE CONTENT
   ========================= */

.content {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

/* subtle admin link (PWA style) */
.admin-softlink{
  position: fixed;
  right: 10px;
  bottom: 8px;

  font-size: 11px;
  letter-spacing: .04em;
  text-transform: lowercase;

  color: rgba(255,255,255,0.25);
  text-decoration: none;

  z-index: 99999;
}

.admin-softlink:hover{
  color: rgba(255,255,255,0.6);
}
