/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Base ===== */
body {
    background-color: #f7f4ef; /* zacht warm wit */
    color: #2b2b2b;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== Top Navigation Bar ===== */
.topbar {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 15px 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 1rem; /* kleiner */
    font-weight: 600;
    font-family: Georgia, "Times New Roman", serif;
    margin-left: -60px;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background-color: #c05621;
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    background-color: #f7f4ef;
    padding: 140px 60px 100px;
    text-align: left;
    position: relative;
}

/* ⭐ UNIFORME GOLF (OVERAL DEZELFDE) */
.hero-banner::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 36px;
    background: url('../torn-edge-grey.svg') repeat-x;
    background-size: contain;
    opacity: 0.45;
}

.hero-banner h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem; /* kleiner */
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem; /* kleiner */
    color: #4a4a4a;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 80px 60px;
    position: relative;
}

/* subtiele kleuren */
.content-section:nth-of-type(2),
.content-section:nth-of-type(4) {
    background-color: #f3f0eb;
}

.content-section:nth-of-type(3) {
    background-color: #f8f5f0;
}

/* ⭐ UNIFORME GOLF ONDER ELKE SECTIE */
.content-section::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 36px;
    background: url('../torn-edge-grey.svg') repeat-x;
    background-size: contain;
    opacity: 0.45;
}

/* ===== TITELS ===== */
.content-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem; /* kleiner */
    margin-bottom: 20px;
    color: #c05621;
}

/* ===== FILE LIST ===== */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.file-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

/* ⭐ FOLDER ICON */
.file-icon {
    width: 40px;
    height: 40px;
    background-image: url('../png-clipart-metroid-icons-orange-folder-icon-thumbnail.png');
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.file-name {
    font-size: 1rem; /* kleiner */
    color: #333;
    font-weight: 600;
}
