/* Algemene stijlen */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1); /* Gradient kleuren */
    background-size: 400% 400%; /* Zorg dat de achtergrond groot genoeg is voor animatie */
    animation: gradientAnimation 15s ease infinite; /* Animatie voor de achtergrond */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Gradient animatie */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container */
.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    width: 90%;
    max-width: 1200px;
    z-index: 1; /* Zorg dat de inhoud boven de achtergrond staat */
}

/* Achtergrond sectie */
.background {
    width: 60%;
    background: rgba(255, 255, 255, 0.8); /* Transparante witte achtergrond */
    border-radius: 20px; /* Grotere afgeronde hoeken */
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Diepere schaduw */
    text-align: center;
}

.browser-window {
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Browser venster */
.browser-window {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtiele schaduw */
}

/* Browser bar */
.browser-bar {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: #f1f1f1;
    margin-bottom: 20px;
}

.browser-bar .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
}

.browser-bar .dot.red {
    background: #ff5f56;
}

.browser-bar .dot.yellow {
    background: #ffbd2e;
}

.browser-bar .dot.green {
    background: #27c93f;
}

/* Content */
.content {
    padding: 20px;
    font-size: 1.2em;
}

.content h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.gastenboek-button {
    display: inline-block;
    padding: 12px 30px;
    background: red;
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    border-radius: 25px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.gastenboek-button:hover {
    background: linear-gradient(90deg, #0f0e0d, #e22807); /* Donkerdere gradient bij hover */
    transform: translateY(-3px); /* Knop beweegt iets omhoog bij hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Versterkte schaduw bij hover */
}

.gastenboek-button .arrow {
    margin-right: 10px; /* Ruimte tussen pijl en tekst */
    font-size: 1.2em; /* Grootte van de pijl */
    transition: transform 0.3s ease; /* Soepele overgang bij hover */
}

/* Styling voor de afbeelding */
.foreground {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85); /* Lichtere achtergrond voor een luchtiger gevoel */
    border-radius: 25px; /* Aangepaste afgeronde hoeken voor een modernere look */
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1), 0px 10px 15px rgba(0, 0, 0, 0.05); /* Diepere schaduwen voor meer diepte */
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Zachte overgangseffecten voor interactiviteit */
}

.foreground:hover {
    transform: scale(1.05); /* Maakt de afbeelding iets groter bij hover */
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15), 0px 15px 25px rgba(0, 0, 0, 0.1); /* Sterkere schaduw bij hover */
}

.foreground-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Iets subtielere afgeronde hoeken voor de afbeelding */
    border: 5px solid rgba(255, 255, 255, 0.6); /* Subtiele witte rand rondom de afbeelding */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15); /* Zachte schaduw rond de afbeelding zelf */
}

/* Styling voor het body element */
html, body {
    height: 100%;
}

/* Media queries voor tablets */
@media (max-width: 768px) {
    .background {
        width: 90%;
        padding: 15px;
    }

    .foreground {
        margin-top: 15px;
    }
}

/* Media queries voor mobiele apparaten */
@media (max-width: 480px) {
    .background {
        width: 100%;
        padding: 10px;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .gastenboek-button {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .foreground {
        margin-top: 10px;
    }

    .foreground-image {
        display: none; /* Verberg de afbeelding op zeer kleine schermen */
    }
}

/* Voor tablets en kleinere schermen */
@media (max-width: 1024px) {
    .landing-page {
        flex-direction: column;
        padding: 15px;
    }

    .background {
        width: 80%;
        padding: 20px;
    }

    .foreground {
        margin-top: 20px;
        width: 100%;
    }

    .foreground-image {
        max-width: 80%;
        height: auto;
    }
}

/* Voor mobiele apparaten */
@media (max-width: 768px) {
    .background {
        width: 90%;
        padding: 15px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .gastenboek-button {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .foreground-image {
        max-width: 100%;
        height: auto;
    }
}

/* Voor zeer kleine schermen (zoals smartphones) */
@media (max-width: 480px) {
    .background {
        width: 100%;
        padding: 10px;
    }

    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .gastenboek-button {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .foreground {
        margin-top: 10px;
    }

    .foreground-image {
        display: none; /* Verberg de afbeelding op zeer kleine schermen */
    }
}