/* ****************************** */
/* HERO */
/* ****************************** */

.hero-section {
    position: relative;
    min-height: 80vh;
    background-image: linear-gradient(to right bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.6)),
    url("../images/hero-image.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 95%);
    margin-bottom: 8.6rem;
}

.text-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero-text-primary {
    display: block;
    text-transform: uppercase;
    font-size: 8.6rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    animation: moveInLeft 1s ease-out;
    color: #c15520;
}

.hero-text-secondary {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 4.8rem;
    animation: moveInRight 1s ease-out;
}

@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ****************************** */
/* Services */
/* ****************************** */

.services-section {
    margin: 8.6rem auto;
    text-align: center;
}

.services-heading {
    border-bottom: 1px solid #c15520;
    padding-bottom: 1rem;
}

.service-grid {
    margin: 6.4rem 0;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    row-gap: 4.8rem;
}

.services-blurb {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ph-thin {
    font-size: 5.2rem;
    color: #c15520;
    /*align-self: center;*/
    margin-bottom: 2rem;

}

.services-titel {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3f3f3f;
}

.services-text {
    font-size: 1.6rem;
    color: #424242;
    line-height: 1.7;
}

/* ****************************** */
/* About */
/* ****************************** */

.about-section {
    margin: 8.6rem auto;
    background-color: #c15520;
    border-radius: 10px;
}

.about-div {
    grid-template-columns: 40% 60%;
    min-height: 60rem;
    column-gap: 0;
}

.about-img-div {
    background-image: url("../images/naomi.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: circle(72.1% at 33% 31%);
}

.about-text-div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-box {
    width: 50%;
}

.about-title {
    color: #fff;
    font-size: 3.6rem;
    text-transform: uppercase;
    margin-bottom: 4.8rem;
}

.about-text {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.7;
}

/* ****************************** */
/* Contact */
/* ****************************** */

.contact-section {
    margin: 8.6rem auto;
}

.form-box {
    /*background-color: rgba(193, 85, 32, 0.03);*/
    border-radius: 10px;
    padding: 2rem;
}

.contact-titel {
    text-align: center;
    color: #c15520;
}

.contact-form {

}

.contact-form label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: .4rem;
    color: #c15520;
}

.contact-form input, textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
    font-family: inherit;
    border: none;
    border-radius: 5px;
    background-color: #f9eee9;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #c15520;
    font-weight: 600;
    resize: none;

}

.contact-form input::placeholder {
    color: rgba(193, 85, 32, 0.7);
}

.contact-form textarea::placeholder {
    color: rgba(193, 85, 32, 0.7);
}

.contact-form button {
    font-family: inherit;
}

/* ****************************** */
/* Footer */
/* ****************************** */

.section-footer {
    background-color: #c15520;
    color: #fff;
    font-size: 1.2rem;
}

.footer-div {
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.logo {
    width: 7.4rem;
    padding: 0 0;
}

.logo-header {
    width: 20rem;
    padding: 0 0;
}

footer div div {
    padding: 1.2rem 0;
}

.link:hover {
    color: #00002d;
}
