
:root {
    --bg: #060915;
    --panel: rgba(255, 255, 255, 0.04);
    --panel-strong: rgba(255, 255, 255, 0.07);
    --text: #e8edf6;
    --muted: #c1c8d9;
    --accent: #f97316;
    --accent-2: #60a5fa;
    --border: rgba(255, 255, 255, 0.12);
    --glow: 0 25px 100px rgba(96, 165, 250, 0.25);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Space Grotesk', 'Instrument Sans', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.18), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.14), transparent 30%),
        linear-gradient(180deg, #0b1228 0%, #060915 60%);
    color: var(--text);
}

a { color: inherit; text-decoration: none; }

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(6, 9, 21, 0.9), rgba(6, 9, 21, 0.6));
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #111827, #1f2937);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: var(--glow);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
}

nav a {
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

nav a:hover {
    background: var(--panel-strong);
    color: var(--text);
    transform: translateY(-1px);
}

.page {
    flex: 1 1 auto;
    padding: 48px 0 80px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.12);
    color: #dce9ff;
    font-weight: 600;
    border: 1px solid rgba(96, 165, 250, 0.4);
}

h1 {
    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.1;
    margin: 14px 0;
}

p.lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--panel);
    color: var(--text);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #fb923c, #f97316);
    border: none;
    color: #0b0f1d;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.35);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--glow); }

.card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted);
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 12px 0 18px;
}

.section-title h2 { margin: 0; font-size: 26px; }

.muted { color: var(--muted); margin: 0; }

.highlight-card {
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.22), transparent 40%);
    pointer-events: none;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.stat:last-child { border-bottom: none; }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(96, 165, 250, 0.12), rgba(249, 115, 22, 0.12));
    box-shadow: 0 12px 36px rgba(0,0,0,0.35);
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

.gallery-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.25);
    color: var(--text);
    border: 1px solid var(--border);
    font-weight: 700;
    letter-spacing: 0.01em;
    width: fit-content;
}

.gallery-card small { color: var(--muted); }

.socials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: var(--panel);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(96, 165, 250, 0.2));
    color: var(--text);
    font-weight: 800;
    border: 1px solid var(--border);
    text-transform: uppercase;
}

.social-card:hover { transform: translateY(-3px); border-color: rgba(249, 115, 22, 0.7); }

footer {
    padding: 24px 0 32px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    background: rgba(6,9,21,0.9);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list li {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
}

.list li:last-child { border-bottom: none; }

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

@media (max-width: 720px) {
    nav ul { gap: 8px; }
    nav a { padding: 8px 10px; }
    .page { padding-top: 28px; }
}

/* Old website css */
.item-1 {
    background: url("/images/HFC-WMC-2017.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}
.item-2 {
    background: url("/images/HFC-concours.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
}
.item-3 {
    background: url("/images/solo-vooruit.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.page-tile {
    text-align: center;
    background-size: cover;
    background-position-x: center;
    background-repeat: no-repeat;
    box-shadow:inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}
.page-tile:hover {
    box-shadow:inset 0 0 0 2000px rgba(0, 0, 0, 0.8);
}
/* Index page tile images */
.facebook-tile {
    background-image: url('/images/facebook.jpeg');
    background-position: center;
}
.instagram-tile {
    background-image: url('/images/instagram.jpeg');
}
.twitter-tile {
    background-image: url('/images/twitter.jpeg');
}
.linkedin-tile {
    background-image: url('/images/linkedin.png');
}
@media screen and (max-width: 992px) {
    .carousel,
    .carousel-item {
        height: 400px;
    }
    .twitter-tile,
    .linkedin-tile {
        background-position: center;
    }
}
@media screen and (min-width: 993px) {
    .carousel,
    .carousel-item {
        height: 800px;
    }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
    .page-tile-col {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}
@media screen and (min-width: 1250px) {
    .page-tile-col {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}
/* Tile sizes */
@media screen and (max-width: 575px) {
    .page-title {
        margin-top: 20px;
    }
    .page-tile {
        height: 100px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        line-height: 100px;
        font-size: 15px;
    }
}
@media screen and (min-width: 576px) and (max-width: 1500px) {
    .page-tile {
        height: 150px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        line-height: 150px;
        font-size: 20px;
    }
}
@media screen and (min-width: 1501px) {
    .page-tile {
        height: 250px;
        margin-top: 50px;
        margin-bottom: 20px;
        border-radius: 30px;
        line-height: 250px;
        font-size: 40px;
    }
}
