@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --akzent: #b69959;
    /* --dark: #0f0f0f; */
    /* --dark: #726f6f; */
    --dark: #4b4949;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}

.menu-icon {
    display: none !important;
    color: white;
    cursor: pointer;
}

nav {
    background-color: var(--dark);
    padding: 10px 0;
}

.nav-topbar {
    background-color: #201f1f;
    text-align: center;
    padding: 16px 0;
    font-weight: 600;
    z-index: 9999;
    position: relative;
}

.nav-topbar p {
    color: white;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-items a {
    text-decoration: none;
    color: white;
    margin-left: 20px;
    font-weight: 600;
    position: relative;
    font-size: 18px;
}

.nav-items a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    background-color: white;
    transition: all 250ms ease-in-out;
}

.nav-items a:hover::after,
.nav-items a.active::after {
    width: 100%;
    transition: all 250ms ease-in-out;
}

/* HERO */

.hero {
    width: 100%;
    height: 800px;
    position: relative;
}

.hero img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 500;
    max-width: 740px;
}

.hero .content p {
    color: white;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0px 0px 8px #000000;
}

.hero .content a,
.termin-call {
    background-color: var(--akzent);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    transition: all 150ms ease-in-out;
}

.hero .content a:hover,
.termin-call:hover {
    background-color: white;
    color: var(--akzent);
    transition: all 150ms ease-in-out;
}

.termin-call:hover {
    border: 1px solid var(--akzent);
}

.termin-call {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 20px;
}

.termin-call.show {
    display: block;
}

/* SECTION WRAPPER */

.section-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.section-header {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 42px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.section-header::after {
    position: absolute;
    content: '';
    display: block;
    width: 30%;
    height: 2px;
    background-color: var(--akzent);
    bottom: -20px;
    left: 50%;
    transform: translate(-50%, 0);
}

/* WELCOME */

.welcome {
    padding: 80px 0;
}

.welcome h1,
.welcome h2, 
.welcome p {
    text-align: center;
}

.welcome h2 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.welcome p {
    font-weight: 300;
    letter-spacing: 1px;
}

/* LEISTUNGEN */

.leistungen {
    background-color: #f3f3f3;
    padding: 80px 0;
}

.leistungen-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.leistungen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 40px;
}

.leistungen-item img {
    height: 60px;
    width: auto;
}

.leistungen-item p {
    text-align: center;
    margin-top: 20px;
}

.leistungen .title {
    font-size: 20px;
}

.leistungen .desc {
    font-weight: 300;
}

/* PRAXIS */

.praxis {
    padding: 80px 0;
}

.praxis p {
    text-align: center;
    font-weight: 300;
}

.gallery {
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 8px;
}
/* 
.gallery a {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.gallery img {
    width: 100%;
    height: auto;
}

/* FOOTER */

.top {
    background-color: var(--dark);
    padding: 80px 0;
}

.top .inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.top .left {
    display: flex;
    flex-direction: column;
    width: 33%;
}

.top .left a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-weight: 600;
    transition: all 150ms ease-in-out;
}

.top .left a:hover {
    color: var(--akzent);
    transition: all 150ms ease-in-out;
}

.footer-title {
    color: white;
    font-weight: 300;
}

.footer-kontakt {
    display: flex;
    align-items: center;
    margin-bottom: 20px !important;
}

.footer-kontakt i {
    margin-right: 10px;
}

.bottom {
    background-color: var(--akzent);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.bottom a {
    margin: 0 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 150ms ease-in-out;
}

.bottom a:hover {
    color: #e7e7e7;
    transition: all 150ms ease-in-out;
}

/* ÜBER UNS SEITE */

.uber-uns {
    padding: 80px 0;
    background-color: #f3f3f3;
}

.uber-uns img {
    display: block;
    margin: 0 auto 20px auto;
    width: 100%;
    height: auto;
    max-width: 360px;
}

.timeline {
    display: grid;
    grid-template-columns: 8fr 2fr 8fr;
    grid-template-rows: repeat(16, auto);
    width: 100%;
    margin: 0 auto;
    height: 800px;
}

.line {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 17;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 2px;
    height: 100%;
    transform: translate(-50%, 0);
    background-color: var(--akzent);
    z-index: 500;
}

.line span {
    background-color: var(--akzent);
    color: black;
    font-weight: 600;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    height: fit-content;
    width: fit-content;
    position: relative;
    z-index: 600;
}

.jobs {
    grid-row-start: 1;
    grid-row-end: 17;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(16, 1fr);
}

.job-item {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 5px;
}

.job-item p {
    text-align: center;
}

/* LEISTUNGEN SEITE */

.spezialisierungen {
    background-color: #f3f3f3;
}

.spezialisierungen .section-wrapper {
    padding: 40px 0;
}

.spezialisierungen h2 {
    text-align: center;
    margin: 40px 0 20px 0;
}

.leistungen-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.leistungen-wrapper h1 {
    text-align: center;
    margin: 40px 0 20px 0;
}

.leistungen-wrapper p,
.spezialisierungen p {
    text-align: center;
}

/* IMPRESSUM */

.impressum h2 {
    margin-top: 20px;
    margin-bottom: 5px;
}

.impressum h2,
.impressum h3,
.impressum h4,
.impressum p {
    text-align: center;
}