body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

header {
    background-color: white;
    padding: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 3.75rem;
    width: auto;
}

.logo span {
    color: black;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.nav-header a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: black;
}

.nav-header img {
    width: 24px;
    height: 24px;
}

.nav-header span {
    color: black;
}

main {
    background-image: url('img/achtergrond.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: calc(100vh - 160px);
    position: absolute;
    top: 100px;
    left: 0;
}

main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.content-blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding-top: 1rem;
    position: relative;
    z-index: 3;
}

.info-block {
    border-radius: 10px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.info-block h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-size: 2.5rem;
}

.info-block p {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.top-block {
    width: 700px;
}

.bottom-blocks {
    display: flex;
    gap: 10rem;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin-top: 12rem;
}

.bottom-block {
    width: 190px;
    height: auto;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 2rem;
    cursor: pointer;
}

.bottom-block h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 120px;
    color: white;
}

.bottom-block:hover {
    transform: scale(1.1);
}

.bottom-block:hover * {
    color: #FFD700 !important;
    text-shadow: 0 0 20px #FFD700,
                 0 0 40px #FFD700,
                 0 0 60px #FFD700;
}

.main-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.lantaarnpaal {
    position: absolute;
    height: 105%;
    width: auto;
    bottom: -15%;
    z-index: 1;
    filter: contrast(150%) brightness(35%) saturate(110%);
    mix-blend-mode: screen;
}

.lantaarnpaal-links {
    left: 30%;
}

.lantaarnpaal-rechts {
    right: 30%;
    transform: scaleX(-1);
}


.defect-page .lantaarnpaal-links {
    left: 15%;
}

.defect-page .lantaarnpaal-rechts {
    right: 15%;
}

.form-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 4rem;
    width: 100%;
    justify-content: center;
}

.input-lantaarnpaalnummer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.input-lantaarnpaalnummer label {
    color: white;
    font-size: 1.1rem;
}

.input-lantaarnpaalnummer input {
    padding: 0.8rem;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
    width: 200px;
    font-family: 'Poppins', sans-serif;
}

.map-container {
    width: 450px;
    height: 350px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    order: -1;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.next-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 1rem;
    width: 200px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.next-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgb(255, 217, 0);
}

button, input, select {
    font-family: 'Poppins', sans-serif;
}

footer {
    background-color: black;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 25%;
    padding-left: 1.5rem;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.copyright img {
    width: 24px;
    height: 24px;
}

.cookie-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding-left: 0.25rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 1rem;
    width: 35%;
    justify-content: flex-end;
}

.footer-button {
    background-color: #202020;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
}

.footer-button:hover {
    background-color: #2d2d2d;
    text-decoration: none;
}

.social-icons img {
    width: 35px;
    height: 35px;
}

.social-icons a {
    display: block;
    padding: 3px;
}

.social-icons a:hover {
    opacity: 0.8;
}

