/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

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

/* Body */
body {
    font-family: Arial, sans-serif;
    color: #ffffff;

    background-image: url("/portfolio/eurovision/image/5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}

/* Donkere overlay */
body::before {
    content: "";
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    z-index: -1;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;

    margin: 40px auto;

    text-align: center;
}

/* ===================== */
/* TITEL AFBEELDING */
/* ===================== */

.title img {
    max-width: 100%;
    height: auto;

    display: block;

    margin: 0 auto 40px auto;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.6))
        drop-shadow(0 0 20px rgba(255,0,150,0.6))
        drop-shadow(0 0 40px rgba(0,200,255,0.6));
}

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

.years {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 20px;
}

/* Homepage knoppen */
.year {
    display: block;

    width: 350px;

    padding: 25px 20px;

    font-size: 45px;
    font-weight: normal;

    text-decoration: none;

    color: #ffffff;

    border-radius: 20px;

    text-align: center;

    transition: 0.3s;

    font-family: 'Great Vibes', cursive;

    text-shadow:
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,0,150,0.8),
        0 0 40px rgba(0,200,255,0.8);

    background: transparent;
}

.year:hover {
    transform: scale(1.05);

    text-shadow:
        0 0 20px rgba(255,255,255,1),
        0 0 40px rgba(255,0,150,1),
        0 0 60px rgba(0,200,255,1);
}

/* Links */
a {
    color: #ffffff;
}

/* ===================== */
/* SEMI FINAL TABEL */
/* ===================== */

.semi-table {
    width: auto;

    margin: 0 auto;

    border-collapse: collapse;

    background: rgba(0, 0, 0, 0.45);

    border-radius: 15px;

    overflow: hidden;

    font-family: "Bookman Old Style", Georgia, serif;
}

/* Headers */
.semi-table th {
    padding: 18px 25px;

    font-size: 22px;

    background: rgba(255,255,255,0.08);

    color: #ffffff;

    text-align: left;
}

/* Cellen */
.semi-table td {
    padding: 18px 25px;

    font-size: 20px;

    border-bottom: 1px solid rgba(255,255,255,0.1);

    text-align: left;
}

/* Flag groter */
.semi-table td:first-child {
    font-size: 28px;
}

/* Final kolom centreren */
.semi-table th:last-child,
.semi-table td:last-child {
    text-align: center;
}

/* Hover */
.semi-table tr:hover {
    background: rgba(255,255,255,0.05);
}

/* Qualified */
.qualified {
    background: rgba(61, 220, 132, 0.25);
}

/* ===================== */
/* NAVIGATIE */
/* ===================== */

.bottom-nav {
    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

/* Kleine navigatie knoppen */
.nav-button {
    padding: 10px 20px;

    font-size: 16px;

    font-family: "Bookman Old Style", Georgia, serif;

    color: #ffffff;

    text-decoration: none;

    background: rgba(0, 0, 0, 0.45);

    border: 1px solid rgba(255,255,255,0.15);

    border-radius: 12px;

    transition: 0.3s;

    backdrop-filter: blur(4px);

    text-shadow:
        0 0 10px rgba(255,255,255,0.5);
}

.nav-button:hover {
    background: rgba(255,255,255,0.08);

    transform: scale(1.05);

    box-shadow:
        0 0 15px rgba(255,255,255,0.25),
        0 0 25px rgba(255,0,150,0.2);
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    .semi-table {
        width: 100%;
    }

    .semi-table th,
    .semi-table td {
        padding: 12px;

        font-size: 16px;
    }

    .semi-table td:first-child {
        font-size: 22px;
    }

    .year {
        width: 100%;

        font-size: 35px;
    }

    .nav-button {
        font-size: 14px;
        padding: 8px 14px;
    }
}