/* ===== BASIS ===== */
body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 55% 40%,
            rgba(3, 14, 35, 0.2) 0%,
            rgba(13, 46, 110, 0.8) 100%
        ),
        #020617;

     font-family: Arial, sans-serif;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    color: #ffffff;
    margin: 0;
}

p {
    color: #cbd5e1;
}

a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    color: #93c5fd;
}

/* ===== LOGO ===== */
.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;

    background: linear-gradient(135deg, #FFFFFF, #80E0FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    font-size: 16px;
    font-weight: 500;
    color: #5BC0FF;
}

/* ===== HERO ===== */
.hero {
    height: 220px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    height: 160px;
    width: auto;
}

.hero-title {
    font-size: 148px;
    color: #ffffff;
    margin: 0;

    text-shadow:
        0 0 8px rgba(11, 215, 214, 0.6),
        0 0 20px rgba(11, 215, 214, 0.4);
}

.hero-text {
    display: flex;
    flex-direction: column;
    width: 100%;   /* 🔥 BELANGRIJK */
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 0 6px rgba(11, 215, 214, 0.4);
    margin-top: -10px;
    margin-left: auto;   /* 👉 duwt naar rechts */
    text-align: right;
    letter-spacing: 1px;
}

[dir="rtl"] .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

/* ===== NAVBAR ===== */
.navbar {
    margin-top: 15px;
    display: flex;
    padding: 8px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ===== NAV BUTTONS ===== */
.nav-btn {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;

    color: #cbd5e1;
    font-size: 14px;

    transition: all 0.2s ease;
    position: relative;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    transform: translateY(-2px);
}

/* scheidingslijn */
.nav-btn:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.phone {
    display: block;
    margin-left: auto;
    margin-top: 50px;
    margin-right: 100px;
    max-width: 300px;
    width: 100%;
}

.home-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
}

.home-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
}

.home-image {
  flex: 1;
  text-align: right;
}

.home-image img {
  max-width: 300px;
  height: auto;
}

.footer {
    margin-top: 30px;
    padding: 15px 20px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    color: #94a3b8;
    font-size: 14px;
}

.footer-right a {
    color: #cbd5e1;
    margin-left: 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-right a:hover {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(11, 215, 214, 0.6);
}

.coming-soon {
    text-align: center;
    margin-top: 100px;
    font-size: 24px;
}

/* ===== RESPONSIVE (MOBIEL) ===== */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
        padding: 0 16px;
    }

    /* Hero aanpassen */
    .hero {
        height: auto;
        padding: 30px 15px;
    }

    .hero-content {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-title {
        font-size: 15vw; /* schaalt mee met schermbreedte */
        line-height: 1.2;
    }

    /* Navigatieknoppen */
    .navbar {
        padding: 6px;
    }

    .nav-btn {
        padding: 8px 4px;
        font-size: 12px;
    }

    /* Phone afbeelding (als die nog bestaat) */
    .phone {
        margin: 20px auto;
        margin-right: auto;
        max-width: 90%;
    }

    /* Home wrapper (blijft kolom) */
    .home-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px 16px;
    }

    .home-image {
        text-align: center;
    }

    .home-image img {
        max-width: 80%;
    }

    .home-text {
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-right a {
        margin: 0 8px;
    }
}

/* Extra kleine schermen (max 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 12vw;
    }

    .hero-logo {
        height: 70px;
    }

    .nav-btn {
        font-size: 10px;
        padding: 6px 2px;
    }

    .home-image img {
        max-width: 100%;
    }
}

/* Zorg dat alle afbeeldingen netjes schalen */
img {
    max-width: 100%;
    height: auto;
}

.error-404 {
    text-align: center;
    padding: 80px 20px;
}
.error-404 h1 {
    font-size: 8rem;
    margin: 0;
    color: #e74c3c;
}
.error-404 p {
    font-size: 1.2rem;
    margin: 20px 0;
}
.error-404 a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.error-404 a:hover {
    background-color: #2980b9;
}