/* GLOBAL */
* { box-sizing: border-box; }

body {
    margin: 0;
    background: #000;
    color: #ddd;
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo links, nav rechts */
    padding: 15px 30px;
    background: #000;
    border-bottom: 2px solid #ff2b2b;
}

header .logo {
    display: flex;
    align-items: center;       /* logo + tekst verticaal centreren */
}

header .logo img {
    height: 50px;              /* pas hier je logohoogte aan */
    margin-right: 15px;        /* ruimte tussen logo en tekst */
}

header .logo h2 {
    color: #ff2b2b;
    font-size: 24px;
    margin: 0;
    white-space: nowrap;       /* voorkomt dat tekst onder logo valt */
}


/* NAVBAR */
nav {
    background: #000;
    border-bottom: 1px solid #ff2b2b;
    padding: 15px;
    text-align: center;
}

nav a {
    color: #ff2b2b;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}

nav a:hover { text-shadow: 0 0 10px red; }
nav a.active { border-bottom: 2px solid #ff2b2b; padding-bottom: 4px; }

/* HERO SECTION */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #140000, #000 70%);
}

.hero h1 {
    font-size: 48px;
    color: #ff2b2b;
    text-shadow: 0 0 20px red;
}

.hero p {
    max-width: 700px;
    margin: auto;
}

/* CARDS & PLANS */
.card, .plan {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #101010;
    box-shadow: 0 0 30px #000;
    border: 1px solid #ff2b2b;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover, .plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(255,0,0,0.4);
}

/* BUTTONS */
button, .cta-btn {
    background: black;
    color: #ff2b2b;
    border: 2px solid #ff2b2b;
    padding: 15px 35px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

button:hover, .cta-btn:hover {
    background: #ff2b2b;
    color: black;
    box-shadow: 0 0 20px red;
}

/* TEXT */
h1, h2, h3 { 
    color: #ff2b2b; 
    text-shadow: 0 0 10px rgba(255,0,0,0.3); 
}

p, li { color: #ddd; }

/* FOOTER */
footer {
    border-top: 2px solid #ff2b2b;
    padding: 25px;
    text-align: center;
    margin-top: 80px;
    border-radius: 0 0 12px 12px;
}
