﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: Montserrat, sans-serif;
    background-color: rgba(249, 249, 250, 0.8);
}

    body > form {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}


.header {
    font-family: Arial;
    font-size: 25px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: rgb(45, 82, 128);
    z-index: 3;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.header-logo img {
    position: absolute;
    height: 80px;
    width: auto;
    display: block;
    top: 10px;
    left: 10px;
}

.header-logotekst img {
    position: absolute;
    height: 70px;
    width: auto;
    display: block;
    top: 15px;
    left: 90px;
}


.header-companyname {
    position: absolute;
    font-size: 45px;
    top: 10px;
    left: 57px;
    font-weight: bold;
    font-family: Montserrat, sans-serif;
}

    .header-companyname:hover {
        color: rgb(108,144,184);
        cursor: pointer;
    }

.header-slogan {
    position: absolute;
    font-size: 20px;
    top: 60px;
    left: 45px;
    font-family: Montserrat, sans-serif;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinning-cogwheel {
    position: fixed;
    animation: spin 2.5s linear infinite;
    display: block;
    width: 40px;
    top: 17px;
    left: 10px;
}

.nav-bar {
    display: flex;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: right;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.5s ease, color 0.5s ease;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav-items {
    list-style-type: none;
    font-family: Montserrat, sans-serif;
}

.scrolled {
    background-color: rgba(255, 255, 255, 1);
}

.nav-item {
    float: right;
}

    .nav-item a {
        position: relative;
        display: block;
        text-align: center;
        padding: 30px 16px;
        text-decoration: none;
        color: var(--TechnificentColor);
        transition: color 0.3s ease;
        font-weight: 600;
    }

        .nav-item a span {
            display: inline-block;
            position: relative;
        }

        .nav-item a:hover {
            color: rgb(108,144,184);
        }

        .nav-item a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 20px; /* Adjust for spacing */
            transform: translateX(-50%) scaleX(0);
            transform-origin: center;
            height: 3px;
            width: 78%;
            border-radius: 2px;
            background-color: var(--TechnificentColor);
            transition: transform 0.3s ease;
        }

/* Hover effect */
.nav-bar .nav-item a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* The sliding underline */
.nav-underline {
    position: absolute;
    bottom: 25px; /* adjust depending on padding */
    height: 3px;
    background-color: var(--TechnificentColor);
    width: 0;
    left: 2000px;
    transition: all 1s ease;
    pointer-events: none;
    border-radius: 2px;
}

.toggle_btn {
    font-size: 2.5rem;
    padding: 20px;
    cursor: pointer;
    display: none;
}

    .toggle_btn:hover {
        color: rgb(108,144,184);
    }

.dropdown_menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 0;
    top: 100px;
    width: 300px;
    height: 0;
    background: rgba(255,255,255, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 0 0 10px 10px;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .dropdown_menu.open {
        height: 220px;
    }

    .dropdown_menu .nav-items {
        margin-left: -40px;
        margin-top: 15px;
    }

    .dropdown_menu .nav-item {
        float: none;
        display: none;
        align-items: center;
        justify-content: center;
        line-height: 1.6;
    }

        .dropdown_menu .nav-item.open {
            display: flex;
        }

        .dropdown_menu .nav-item a {
            padding: 0;
        }

@media (max-width: 1100px) {
    .nav-bar .nav-items {
        display: none;
    }

    .nav-bar .toggle_btn {
        display: block;
    }
}

@media (min-width: 1100px) {
    .dropdown_menu, .dropdown_menu .nav-item {
        display: none;
    }
}


.body-content {
    /*position: absolute;
    top: 0;
    left: 0;
    width: 100%;*/
}

/* ===================================
   TECHNIFICENT — Footer
   =================================== */

.footer-tech {
    background: rgb(0, 82, 128);
    padding: 4rem 0rem 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: Montserrat, sans-serif;
    margin-top: auto;
    width: 100%;
}

.footer-tech-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Brand column */
.footer-tech-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.footer-tech-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 1rem;
}

.footer-tech-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}

/* Column headings */
.footer-tech-col h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.2rem;
    margin-top: 0;
}

/* Contact items */
.footer-tech-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-tech-contact-item:hover {
        color: #ffffff;
    }

.footer-tech-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Navigation list */
.footer-tech-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-tech-nav li a {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        padding-left: 1rem;
        position: relative;
        transition: color 0.3s ease;
    }

        .footer-tech-nav li a::before {
            content: '⬢';
            position: absolute;
            left: 0;
            color: rgb(255, 111, 0);
        }

        .footer-tech-nav li a:hover {
            color: #ffffff;
        }

/* Bedrijfsgegevens list */
.footer-tech-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-tech-details li {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.75);
        padding-left: 1rem;
        position: relative;
    }

        .footer-tech-details li::before {
            content: '⬢';
            position: absolute;
            left: 0;
            color: rgb(255, 111, 0);
        }

/* Bottom bar */
.footer-tech-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 600px) {
    .footer-tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 20px;
        margin-right: 20px;
    }
}
