/* Algemene opmaak */
body {
    font-family: 'Open Sans', Arial, sans-serif; /* Lettertype */
    color: #333; /* Algemene tekstkleur */
    background-image: url(../img/galaxy.jpg);
    background-size: cover;
    background-attachment: fixed;
}

/* Welkom sectie */
.welcome-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem; /* Grootte van de welkomsttitel */
    font-weight: bold;
    color: #8f088b;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
    margin-bottom: 20px; /* Ruimte onder de titel */
}

.welcome-text {
    font-size: 1.25rem; /* Grootte van de welkomsttekst */
    color: #555;
    margin-bottom: 30px; /* Ruimte onder de tekst */
}

/* Kenmerken sectie */
.content-section {
    background-image: url(../img/4k-galaxy-a3qjl9atd2ku58vt.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding: 20px; /* Opvulling rondom */
    border-radius: 5px; /* Afgeronde hoeken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schaduw voor diepte */
}

.section-title {
    color: #4caf50; /* Titelkleur */
    font-size: 1.75rem; /* Grootte van de sectietitel */
    font-weight: bold;
    margin-bottom: 15px; /* Ruimte onder de sectietitel */
}

.feature-list {
    list-style-type: none; /* Geen opsommingstekens */
    color: black; /* Tekstkleur van de lijst */
    padding: 0; /* Geen opvulling */
}

.feature-list li {
    margin-bottom: 10px; /* Ruimte tussen de lijstitems */
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: scale(1.05);
}

.feature-list strong {
    color: #A020F0;
}

/* Contact sectie */
.contact-note {
    font-style: italic; /* Cursieve tekst voor de contactnoot */
    margin-top: 20px; /* Ruimte boven de contactnoot */
}

/* Navigatie */
nav {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #3b5998;
}

nav .navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
    font-weight: bold;
}

nav .nav-link {
    color: #fff !important;
}

/* Container */
.container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animatie */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.transparent-container {
    background: rgba(255, 255, 255, 0.2);
    /* Witte achtergrond met 20% zichtbaarheid */
    backdrop-filter: blur(10px);
    /* Voegt een wazig effect toe */
    border-radius: 10px;
    /* Afgeronde hoeken voor een strakker design */
    padding: 20px;
    /* Ruimte binnen de container */
}
