main {
    background-image: linear-gradient(to bottom, rgba(255,192,106,255), rgba(114,77,65,255)), 
    url('../images/tropical-resort.jpg'); /* Add your background here */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-y: auto;
    padding-bottom: 150px;
}
.startText{
    color: white;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}
.startText h1{
    font-size: 2rem;
}
.startText p{
    margin: 0;
    font-size: 1.2rem;
}
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Altijd 2 kolommen */
    gap: 30px; /* Iets meer ruimte tussen de kaarten */
    max-width: 1000px;
    width: 100%;
}
.card {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 30px; /* Grotere padding voor grotere kaarten */
    font-size: 1.1rem; /* Maak de tekst iets groter */
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.08);
}
h2 {
    border-bottom: 2px solid #ffae00;
    padding-bottom: 5px;
}
p {
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: repeat(2, 1fr); /* Nog steeds 2 kolommen */
        gap: 20px;
    }
    .card {
        padding: 20px; /* Iets minder padding */
        font-size: 1rem; /* Kleinere tekst */
    }
    .startText h1 {
        font-size: 1.8rem;
    }
    .startText p {
        font-size: 1.1rem;
    }
}

/* Voor telefoons (max-width 768px) → 1 kolom */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr; /* 1 kolom op mobiele schermen */
    }
    .card {
        padding: 15px; /* Kleinere padding voor betere leesbaarheid */
        font-size: 1rem;
    }
    .startText h1 {
        font-size: 1.5rem;
    }
    .startText p {
        font-size: 1rem;
    }
}