:root {
    --header-height: 80px;
    --footer-height: 90px
}

body {
    font-family: 'Roboto', sans-serif;
}

p, h2, h4 {
    padding-top: 10px;
    padding-bottom: 10px;
}

/*#region Header*/

.headerAlgemeen {
    background-color: rgb(0, 0, 0);
    width: 100%;
    height: var(--header-height);
}

body {
    height: 100%;
    margin: 0;
}

.menuContainer {
    padding: 25px;
    float: right;
}

.menuItem {
    font-size: x-large;
    margin-right: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(255, 254, 254);
}

.adjustLogo {
    height: 100%
}

/*#endregion Header*/

.articleAboutMe {
    display: grid;
    grid-template-columns: auto auto;
    gap: 50px;
    align-items: center;
    padding: 50px 20%;
    background-color: #e2e2e2;
}

.linkContactMeTextFix {
    color: rgb(0, 0, 0);
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 1.5rem;
  }

  .contactMe {
    background-color: #e2e2e2;
    text-align: center;
    padding: 30px;
  }


/*#region Home Page*/

.cvPromotion {
    background-image: url(../beeld/background1.jpg);
    height: calc(100vh - var(--header-height) - var(--footer-height));
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    color: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    flex-direction: column;

    p { 
        text-align: center;
    }
}

.firstText {
    font-size: 4rem;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.linkCvTextFix {
    color: rgb(255, 255, 255);
    transition: all 0.1s ease-in-out;
    font-size: 2rem  
}

.linkCvTextFix:hover {
    color: rgb(255, 245, 151);
    transition: all 0.3s ease-in-out;
    font-size: 2rem  
}

.imageJim {
    border-radius: 50%;
    width: 100%;
    height: auto;
}

.headText {
    font-size: 2.5rem;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0;
}

.linkAboutMeTextFix {   
    color: rgb(0, 0, 0);
    transition: all 0.1s ease-in-out;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.linkAboutMeTextFix:hover {   
    color: rgb(56, 50, 0);
    transition: all 0.3s ease-in-out;
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
  }

  .iframe-container iframe{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /*#endregion Home Page*/

  /*#region CV*/

  .cvHero {
    background-image: url(../beeld/background3.jpg);
    height: calc(100vh - var(--header-height) - var(--footer-height));
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.articleAboutMe.additionalGrey {
    background-color: rgb(12, 12, 12);
    color: white;
}

/*#endregion CV*/

/*#region Contact*/

.container {
    background-color: #ffffff;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 20px;
}

.contactResponsiveness {
    background-color: #e2e2e2;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    overflow-y: auto;
}

.container h2 {
    text-align: center;
}

.container h4 {
    text-align: center;
    font-weight: 300
}

.formGroup {
    margin-bottom: 20px;
}

.formGroup label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.formGroup input[type="text"],
.formGroup input[type="tel"],
.formGroup input[type="date"],
.formGroup input[type="time"],
.formGroup input[type="email"],
.formGroup textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.formGroup textarea {
    height: 150px;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #816a00;
    transition: all 0.1s ease-in-out;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn:hover {
    transition: all 0.3s ease-in-out;
    background-color: #caa500;
}
  
  /*#endregion Form*/

  /*#region Footer*/

footer {
    display: flex;
    justify-content: center;
    background-color: black;
    height: var(--footer-height);
    color: white;
}

.iconSocials {
    margin-top: 35px;
    margin-right: 10px;
}

.copyright {
    margin-top: 35px;
    text-align: right;
    float: right;       
}

  /*#endregion Footer*/

  /*Media inquiry*/

@media screen and (max-width: 600px) {
    .articleAboutMe {
        grid-template-columns: auto;
    }

}

@media print {
    .headerAlgemeen,
    .contactMe {
        display: none
    }
    .articleAboutMe img {
        display: none;
    }
    .articleAboutMe {
        gap: 0;
        padding: 40px;
    }
    .articleAboutMe.additionalGrey {
        color: black;
    }
    .pageBreak {
        page-break-before: always;
    }
}