/* Software download links styling */
.software-section a {
    color: #1faa00;       /* mooie groene kleur */
    text-decoration: none; /* geen onderstreping */
    font-weight: bold;
    transition: color 0.3s;
}

.software-section a:hover {
    color: #0f7a00;       /* iets donkerder groen bij hover */
    text-decoration: underline;
}


/* ===== MAIN NAVIGATION ===== */
.main-nav {
    background: rgba(18, 0, 24, 0.95);
    border-top: 1px solid #3a005a;
    border-bottom: 1px solid #3a005a;
    box-shadow: 0 0 18px rgba(155, 77, 255, 0.25);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 10px 0;
    margin: 0;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #ddd;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 20px;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.05);
}

.main-nav a:hover {
    background: linear-gradient(135deg, #3a005a, #6a0dad);
    color: #fff;
    box-shadow: 0 0 10px rgba(155, 77, 255, 0.6);
    transform: scale(1.05);
}

/* Active page */
.main-nav a.active {
    background: linear-gradient(135deg, #1faa00, #69aa00);
    color: #fff;
    box-shadow: 0 0 12px rgba(31, 170, 0, 0.7);
}


/* ===== RESET & BASIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0b0b0f;
    color: #eaeaea;
    line-height: 1.5;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, #2a003d, #120018);
    padding: 20px;
    border-bottom: 3px solid #6a0dad;
    position: relative;
}

header h1 {
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

header p {
    text-align: center;
    color: #ddd;
}

/* Contact button */
.contact-cta {
    display: inline-block;
    margin: 15px auto 0;
    padding: 6px 14px;          /* nog kleiner */
    background: linear-gradient(135deg, #1faa00, #69AA00);
    color: #fff;
    text-decoration: none;
    font-size: 12px;            /* kleiner lettertype */
    font-weight: 500;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(155, 77, 255, 0.5);
    transition: all 0.25s ease;
}

.contact-cta span {
    position: relative;
    z-index: 2;
}

.contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    opacity: 0;
    transition: 0.25s ease;
}

.contact-cta:hover::before {
    opacity: 1;
}

.contact-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(155, 77, 255, 0.7);
}


/* ===== PRIVACY INFO BOX ===== */
.privacy-note {
    max-width: 260px;
    margin-top: 10px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.4;
    background: rgba(255,255,255,0.05);
    border: 1px dashed #3a005a;
    border-radius: 10px;
    color: #cfcfcf;
    box-shadow: 0 0 10px rgba(155, 77, 255, 0.15);
}

.privacy-note strong {
    color: #9b4dff;
}

/* Container voor stats en privacy naast elkaar */
.stats-wrapper {
    display: flex;
    gap: 20px; /* ruimte tussen boxen */
    flex-wrap: wrap; /* mobiel netjes onder elkaar */
    align-items: flex-start;
}

/* Behoud bestaande stijlen */
.visitor-box {
    flex: 1 1 260px; /* minimaal 260px, groeit mee */
}

.privacy-note {
    flex: 1 1 260px; /* zelfde gedrag */
}



/* ===== VISITOR STATS ===== */
.visitor-box {
    max-width: 260px;
    background: #0d0015;
    border: 1px solid #3a005a;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 0 18px rgba(155, 77, 255, 0.35);
    color: #eaeaea;
    font-size: 13px;
}

.visitor-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    margin-bottom: 10px;
    color: #fff;
}

.visitor-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
    margin-bottom: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
}

.visitor-row strong {
    color: #9b4dff;
}

.visitor-footer {
    text-align: center;
    font-size: 11px;
    color: #aaa;
    margin-top: 8px;
}




.qso-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #fff;
}

.qso-info div {
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.qso-info i {
    color: #9b4dff;
}



/* ===== CONTENT ===== */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.container2 {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}


/* Zoek formulier */
form {
    margin-bottom: 20px;
}

input[type="text"],
input[name="call"] {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #6a0dad;
    background: #111;
    color: #fff;
}

button {
    background: #1faa00;
    color: #fff;
    border: none;
    padding: 5px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #2fd400;
}

/* ===== TABLE ===== */
table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    font-size: 14px;
}

thead {
    background: #3a005f;
}

th {
    padding: 5px;
    color: #fff;
    border-bottom: 2px solid #6a0dad;
}

td {
    padding: 2px;
    border-bottom: 1px solid #222;
    text-align: center;
}

tr:nth-child(even) {
    background: #151515;
}

tr:hover {
    background: #1f002b;
}

/* ===== SEO TEKST ===== */
.seo-text {
    max-width: 1150px;
    margin: 30px auto;
    padding: 20px;
    background: #0d0015;
    border: 1px solid #3a005a;
    border-radius: 10px;
    line-height: 1.6;
    font-size: 14px;
}
.seo-text h2 {
    color: #fff;
    text-align: center;
    font-family: 'Playfair Display', serif;
}


.highlight-note {
    margin-top: 15px;
    color: #7fff00;
    font-family: 'Playfair Display', serif;

}

/* ===== POPUP QSL ===== */
#popup {
    z-index: 999;
}

#popup > div {
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(128,0,255,0.6);
}

#popup button {
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    table {
        font-size: 12px;
    }

    header h1 {
        font-size: 20px;
    }

    #contactBtn {
        position: static;
        margin-bottom: 10px;
    }
}
