* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    opacity: 0;
    animation: fadeInLuxury 1.5s ease-in-out forwards;
    background-color: #fff; 
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    position: relative;
}

.beschrijving-blok {
    margin-bottom: 20px;
}

.opdrachtgevers-text {
    margin-bottom: 20px;
}


img{
    width: 150px;
}
.logo-container {
    flex: 1;
}

.logo {
    width: 100px;
    height: auto;
}

.nav-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-container ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.nav-container ul li {
    margin-left: 20px;
}

.nav-container ul li a {
    transition: all 0.3s ease;
    color: inherit;
    background-color: transparent;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
}

.nav-container ul li a:hover,
.nav-container ul li a.active {
    color: #ffffff;
    background-color: #000000;
}

.fotos {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.fotos img {
    width: 300px;
    height: auto;
    display: block;
    border-radius: 40px;
}

.fotos2 {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    gap: 60px;
    padding: 20px 0;
}


.fotos2 img {
    width: 400px;
    height: auto;
    display: block;
    border-radius: 40px;
    transition: transform 0.3s ease;
    backface-visibility: hidden;
    transform: translateZ(0); 
}

.fotos2 img:hover {
    transform: scale(1.12);
}



.hoofdtitel {
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    height: 100px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bijtitel {
    font-family: 'Arial', sans-serif;
    text-align: center;
    height: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hoofdbeschrijving {
    font-family: 'Arial', sans-serif;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
    font-size: 18px;
    color: #333;
}

.socials-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.socials {
    padding: 5px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials img {
    width: 60px;
    height: auto;
    border-radius: 50%;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    padding: 10px 0;
    position: relative;
}

.timeline-date {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-content {
    padding-left: 30px;
    border-left: 2px solid #000;
    margin-left: 10px;
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.1em;
    color: #000;
}

.timeline-content p {
    margin: 5px 0;
}

.timeline-content span {
    font-size: 0.9em;
    color: #7f8c8d;
}


.hoofdlijsten {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff; 
    border-radius: 20px; 
    color: #262626; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center; 
}

.hoofdlijsten p {
    font-size: 1.2em;
    line-height: 1.5;
}

.hoofdlijsten ul {
    list-style-type: none;
    padding: 0;
}

.hoofdlijsten li {
    font-size: 1em;
    margin-bottom: 5px;
}


@keyframes fadeInLuxury {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.profile-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    color: #262626;
    border-radius: 10px;
    text-align: center;
}

h2 {
    font-size: 30px;
    color: #262626; 
    margin-bottom: 20px;
}

.profile-details {
    text-align: left;
}

.detail {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.label {
    font-weight: bold;
    color: #262626; 
}

.value {
    font-style:italic;
    
    color: #000000; 
}


.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #333;
}