body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}

header {
    background: #005f73;
    color: white;
    padding: 0.5rem 0; /* Verlaag de verticale padding */
}

.flight-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #005f73;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flight-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.top-div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.top-div h1 {
    font-size: 1.5rem; /* Verklein de tekstgrootte van de titel */
    margin: 0;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.Home {
    background: url('images/travel.jpg') no-repeat center center/cover;
    height: 80vh; /* Verkleind naar 80vh */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.Home-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.Home-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    background: #005f73;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.Home-button:hover {
    background: #94d2bd;
    color: #005f73;
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 4rem auto; /* Extra ruimte onder features */
}

.feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Zorg dat de knop naar beneden schuift */
    align-items: center;
    background: white;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%; /* Alle kaarten hebben dezelfde hoogte */
}

.feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: auto; /* Zorg dat de tekst niet over de knop heen staat */
}

.feature-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: white;
    background: linear-gradient(90deg, #005f73, #008891);
    border: none;
    border-radius: 15px; /* Maak de knoppen ovaal */
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Grotere schaduw voor een meer 3D-effect */
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.feature-button:hover {
    background: linear-gradient(90deg, #008891, #005f73); /* Omgekeerde kleurverloop bij hover */
    transform: translateY(-3px); /* Laat de knop een beetje zweven */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3); /* Versterk het schaduweffect */
}

.feature-button:active {
    transform: translateY(0); /* Druk de knop in bij klikken */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Verminder schaduw bij klikken */
}

footer {
    background: #333;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr); /* Twee kolommen */
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-section {
        text-align: center;
    }
}

