@font-face {
    font-family: 'LIGHT';
    src: url('./fonts/TT Interphases Pro Trial Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
        font-family: 'BOLD';
        src: url('./fonts/Montserrat-ExtraBold.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
}

@font-face {
    font-family:'Malisha' ;
    src: url(fonts/Coolvetica\ Rg.otf);
}

body {
    font-family: 'LIGHT', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #faeddd;
    color: #000000; 
    line-height: 1.6;
}

header {
    font-size: 20px;
    padding: 1rem;
    position: relative;
    top: 0;
    z-index: 100;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul {
    color: rgb(74, 6, 43);
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: auto; /* Dit duwt de lijst helemaal naar rechts */
    gap: 20px;
}


header nav ul li {
    color: rgb(98, 3, 41);
    margin: 0 15px;
}

header nav ul a {
    font-family: 'Malisha';
    color: rgb(98, 3, 41);
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.3s;
}

header nav ul li a:hover {
    color: #cfaa91;
    transition: 0.5s;
}

.titelnaam{
padding-left: 50px;
}

h1 {
    font-family: 'Malisha';
    font-size: 70px;
    color: #4a062b;
    margin-bottom: 10px;
    text-align: left;
}

h3{
    padding-left: 50px;
    padding-right: 50px;
}
h2 {
    font-size: 50px;
    color: #4a062b;
    margin-bottom: 10px;
    text-align: center;
}

/* Video-container */
.video-container {
    position: relative;
    width: 100%;
    align-items: center;
    margin: 40px auto;
    padding-bottom: 56.25%; /* Houdt de verhouding 16:9 */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Outfit-secties */
.outfit-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    gap: 20px;
    position: relative;
    background-color: #faeddd;
}

.outfit-section:nth-child(even) {
    flex-direction: row-reverse;
}

.outfit-section img.main-image {
    width: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.outfit-section img.schets-image {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    z-index: 2;
}

.outfit-section:nth-child(even) img.schets-image {
    left: auto;
    right: 10%;
}

.outfit-section .description {
    width: 40%;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
}

.outfit-section .description h1 {
    font-size: 28px;
    color: #4a062b;
    margin-bottom: 10px;
}

.description img{
width: 500px;
position: relative;
}

.outfit-section .description p {
    margin-top: 0;
    color: #333;
}

/* Hover Effect op schets */
.outfit-section img.schets-image:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

footer{
    text-align: center;
    background-color: faeddd;
    color: #4a062b;
    padding: 1rem 0;
}

.socials{
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.socials img{
padding: 10px;
width: 30px;
height: 30px;
}

/* Responsiviteit */
@media screen and (max-width: 768px) {
    .outfit-section {
        flex-direction: column;
        text-align: center;
    }

    .outfit-section img.main-image,
    .outfit-section img.schets-image {
        width: 80%;
        margin: 0 auto;
    }

    .outfit-section img.schets-image {
        position: relative;
        top: -20px;
        left: 0;
    }

    .outfit-section .description {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .outfit-section img.schets-image {
        width: 70%;
        top: 5%;
    }

    .outfit-section img.main-image {
        width: 90%;
    }

    .outfit-section .description h1 {
        font-size: 22px;
    }

    .outfit-section .description p {
        font-size: 16px;
    }
}
