/* =========================
   BASIS
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    background: #ffffff;
    color: #24324b;
}

.container {
    width: min(1400px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

header {
    height: 90px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #edf4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1d63ff;
    font-size: 22px;
}

.logo h2 {
    font-size: 26px;
    color: #26324f;
    font-weight: 800;
}

.logo span {
    color: #1d63ff;
}


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

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    color: #28344f;
    transition: .3s;
}

nav a:hover {
    color: #1d63ff;
}


/* =========================
   ALGEMENE BUTTON
========================= */

.button {
    background: #1d63ff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.button:hover {
    background: #0d4fe6;
}


/* =========================
   HERO
========================= */

.hero {
    padding: 120px 0;
    background-image: url("https://vaccinatiepaspoort.com/images/achtergrond.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    gap: 60px;
}

.hero-grid > div:first-child {
    transform: translateY(-80px);
}

.hero-grid > div:last-child {
    display: flex;
    justify-content: flex-end;
}


/* =========================
   TAG
========================= */

.tag {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 9px 16px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    color: #1d63ff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 22px;
}


/* =========================
   HOOFDTEKST
========================= */

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 22px;
}

h1 span {
    color: #1d63ff;
    display: block;
}

.hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 30px;
}


/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;
    gap: 18px;
}

.btn {
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
}

.btn-primary {
    background: #1d63ff;
    color: white;
}

.btn-primary:hover {
    background: #0d4fe6;
}

.btn-secondary {
    border: 2px solid #1d63ff;
    color: #1d63ff;
}

.btn-secondary:hover {
    background: #1d63ff;
    color: white;
}


/* =========================
   FEATURES
========================= */

.features {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.feature i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1d63ff;
    color: white;
}


/* =========================
   HERO CARD
========================= */

.hero-card {
    background: #1d63ff;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    padding: 45px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateX(120px);
}

.hero-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: white;
}

.hero-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
    color: white;
}

.hero-card .button {
    display: inline-flex;
    background: white;
    color: #1d63ff;
}

.hero-card .button:hover {
    background: #edf4ff;
    color: #0d4fe6;
}


/* =========================
   VEELGESTELDE VRAGEN
========================= */

.veelgestelde-vragen {
    width: min(900px, 92%);
    margin: 80px auto;
}

.veelgestelde-vragen h2 {
    text-align: center;
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.2;
    color: #26324f;
    font-weight: 800;
}

.veelgestelde-vragen .intro {
    text-align: center;
    color: #6b7280;
    margin: 0 auto 30px;
    max-width: 700px;
    line-height: 1.6;
}


/* =========================
   FAQ ITEM
========================= */

.faq-item {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px;
    border: none;
    background: white;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #24324b;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #24324b;
}

.icon {
    font-size: 22px;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    display: block;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #1d63ff;
    color: white;
    padding: 70px 0 25px;
    margin-top: 4px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-logo .logo-icon {
    background: rgba(255, 255, 255, .15);
    color: white;
}

.footer-logo h2,
.footer-logo span {
    color: white;
}

.footer-brand > p {
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h3 {
    font-size: 17px;
    margin-bottom: 22px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 13px;
}

.footer-column a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.footer-column a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

.footer-contact i {
    color: white;
    width: 18px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .25);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: white;
    color: #1d63ff;
    transform: translateY(-3px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .hero-grid {
        gap: 40px;
    }

    h1 {
        font-size: 46px;
    }

    .hero-card {
        transform: translateX(50px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}


/* =========================
   MOBIEL
========================= */

@media (max-width: 950px) {

    nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid > div:first-child {
        transform: none;
    }

    h1 {
        font-size: 40px;
    }

    .hero {
        padding: 60px 0;
    }

    header {
        height: 80px;
    }

    .hero-grid > div:last-child {
        justify-content: center;
    }

    .hero-card {
        padding: 40px 30px;
        transform: none;
        margin: 0 auto;
    }

    .veelgestelde-vragen {
        margin: 60px auto;
    }
}


/* =========================
   KLEINE MOBIEL
========================= */

@media (max-width: 600px) {

    .logo h2 {
        font-size: 21px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    header .button {
        display: none;
    }

    h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .features {
        gap: 20px;
    }

    .hero-card {
        width: 300px;
        height: 300px;
        padding: 35px 25px;
        background: #1d63ff;
        border-radius: 50%;
        transform: none;
        margin: 0 auto;
    }

    .hero-card h2 {
        font-size: 21px;
        margin-bottom: 8px;
        color: white;
    }

    .hero-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: white;
    }

    .hero-card .button {
        display: inline-flex;
        background: white;
        color: #1d63ff;
        padding: 12px 22px;
    }

    .hero-card .button:hover {
        background: #edf4ff;
        color: #0d4fe6;
    }

    /* FAQ MOBIEL */

    .veelgestelde-vragen {
        width: 92%;
        margin: 50px auto;
    }

    .veelgestelde-vragen h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .veelgestelde-vragen .intro {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 16px;
        font-size: 15px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0 16px 16px;
        font-size: 14px;
    }

    /* FOOTER MOBIEL */

    .footer {
        padding: 55px 0 20px;
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-social {
        margin-top: 5px;
    }
}
