* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --oranje: #EB592D;
    --lichtgrijs: #E3E3E3;
    --grijs: #969FA3;
    --donkergrijs: #5E6973;
    --offBlack: #2F2D2D;
    --offWhite: #F5F5F5;
}

body{
    font-family: 'Ponnala', 'poppins', sans-serif;
}

nav a {
    text-decoration: none;
    color: var(--oranje);
}

nav a:hover {
    color: var(--offBlack);
    text-decoration: underline;
}

nav {
    display: flex;
    align-items: center;
    padding: 8px;
    position: relative;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    color: var(--oranje);
}

.lang-options {
    display: none;
    position: absolute;
    background-color: var(--offWhite);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 100;
    min-width: 100px;
    color: var(--offBlack);
}

.lang-options a {
    display: block;
    padding: 5px 10px;
    color: var(--offBlack);
    text-decoration: none;
}

.lang-options a:hover {
    background-color: #f0f0f0;
    color: var(--oranje);
}

.language-dropdown:hover .lang-options {
    display: block;
}

.clients{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.client{
    width: 220px;
    display: flex;
    transition: 0.3s ease;
}

.client a{
    width: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--oranje);
    border-radius: 20px;
    padding: 20px;
}

.client img{
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.client img:hover{
    transform: scale(1.05);
    transition: 0.3s ease;
}

.client p{
    margin-top: auto;
    text-align: center;
    font-size: large;
}

H1{
    font-size: 50px;
}

H2{
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logo img{
    width: 100px;
}

.navRight{
    margin-left: auto;
    display: flex;
    gap: 20px;
    background-color: var(--offWhite);
    align-items: center;
    padding: 20px 30px;
    border-radius: 30px;
    justify-content: flex-end;
}

.navRight a{
    white-space: nowrap;
}

.orangeLine{
    width: 500px;
    height: 4px;
    background-color: var(--oranje);
    border-radius: 20px;
    margin-top: -20px;
    margin-bottom: 20px;
    margin-left: -550px;
}

.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
}

.section .line{
    width: 857px;
    height: 5px;
}

.project{
    background-color: var(--offBlack);
    color: var(--offWhite);
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project p{
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
}

.projectdisplay{
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2% 4%;
}

.projectdisplay img{
    min-width: 80%;
}

.sectionTgt{
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.sectionTgt p{
    width: 40%;
    margin-left: 20px;
}

.sectionTgt img{
    width: 300px;
    height: auto;
}

.oranje{
    color: var(--oranje);
}

.btn{
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--oranje);
    color: var(--offWhite);
    text-decoration: none;
    border-radius: 100px;
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
    letter-spacing: -0.196px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.offerte{
    background-color: var(--offWhite);
    color: var(--offBlack);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offerte p{
    max-width: 700px;
    text-align: center;
    margin-bottom: 40px;
}

form{
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

input,
textarea{
    width: 100%;
    padding: 18px 25px;
    border-radius: 15px;
    border: 1px solid var(--grijs);
    background-color: var(--lichtgrijs);
    font-size: 16px;
    outline: none;
}

input:focus,
textarea:focus{
    border-color: var(--oranje);
    box-shadow: 0 0 0 3px rgba(235, 89, 45, 0.096);
    color: var(--oranje);
}

input:focus::placeholder,
textarea:focus::placeholder{
    color: var(--oranje);
    opacity: 0.6;
}

textarea{
    min-height: 220px;
    resize: none;
}

.formRow{
    display: flex;
    gap: 20px;
    width: 100%;
}

.formRowFile{
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.formRowFile input[type="file"]{
    width: auto;
    padding: 16px 25px;
    background-color: var(--donkergrijs);
    color: var(--offWhite);
    border-radius: 15px;
    border: none;
    cursor: pointer;
}

.customFile{
    background-color: var(--donkergrijs);
    color: var(--offWhite);
    padding: 18px 25px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    min-width: 220px;
    transition: 0.3s ease;
}

.customFile:hover{
    background-color: var(--oranje);
}

.customFile input{
    display: none;
}

.fileText{
    white-space: nowrap;
}

.language-dropdown{
    position: relative;
    display: inline-block;
}

.lang-btn{
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 10px 15px;
}

.lang-options{
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    display: none;
    flex-direction: column;
    min-width: 120px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.lang-options a{
    padding: 10px 15px;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
}

.lang-options a:hover{
    background: #f5f5f5;
}

.language-dropdown:hover .lang-options{
    display: flex;
}

.lang-options{
    opacity: 0;
    transform: translateY(10px);
    transition: 0.2s;
    pointer-events: none;
}

.language-dropdown:hover .lang-options{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

form button{
    margin-top: 40px;
    padding: 20px 40px;
    background-color: var(--oranje);
    color: var(--offWhite);
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background-color: var(--offBlack);
    color: var(--offWhite);
}

.footerLeft{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer a:hover{
    text-decoration: underline;
}

.footerRight{
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-left: auto;
}

.footerrLeft{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.footerrRight img{
    width: 200px;
    height: auto;
    display: block;
}

footer a{
    color: var(--oranje);
    text-decoration: none;
    display: inline-block;
}

.projectdisplay img{
    display: none;
}

form button:hover, .btn:hover{
    background-color: var(--donkergrijs);
    color: var(--offWhite);
    transition: 0.3s ease;
}

/* HAMBURGER */
.hamburger{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin-left: auto;
}

.hamburger span{
    width: 25px;
    height: 3px;
    background-color: var(--oranje);
    border-radius: 10px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 900px){
    nav{
        align-items: flex-start;
    }

    .hamburger{
    display: flex;
    position: absolute;
    top: 28px;
    right: 28px;
    z-index: 1001;
}

    .navRight{
    position: absolute;
    top: 10px;
    left: 20px;
    right: 20px;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 22px;
    background-color: var(--offWhite);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 1000;
}

    .navRight.active{
        display: flex;
    }

    .navRight a{
        width: 100%;
        padding: 2px 0;
    }

    .language-dropdown{
        width: 100%;
        margin-top: 4px;
    }

    .lang-btn{
        width: 100%;
        text-align: left;
        padding: 2px 0;
    }

    .lang-options{
        position: static;
        width: 100%;
        margin-top: 6px;
        box-shadow: none;
        border-radius: 12px;
        overflow: hidden;
    }

    .sectionTgt{
        flex-direction: column;
        text-align: center;
    }

    .sectionTgt p{
        width: 100%;
        margin-left: 0;
    }

    .orangeLine{
        width: 220px;
        margin-left: 0;
    }

    h1{
        font-size: 34px;
        text-align: center;
    }

    h2{
        font-size: 28px;
        text-align: center;
    }

    .clients{
        display: flex;
        flex-direction: row;
    }

    .client{
        max-width: 40%;
    }
    .formRow,
    .formRowFile{
        flex-direction: column;
    }

    footer{
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footerRight{
        margin-left: 0;
        flex-direction: column;
        align-items: center;
    }

    .footerrLeft{
        text-align: center;
    }

    footer img{
        width: 50px;
    }
}