@font-face {
    font-family: 'YesevaOne';
    src: url('font/YesevaOne-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Lato';
    src: url('font/Lato-Regular.ttf') format('truetype');
}

:root {
    --spa-accent-color: #656258;
    --spa-heading-color: var(--spa-accent-color);
    --spa-text-color: var(--spa-accent-color);
    --spa-text-color-other: #32312c;
    --spa-bg-content: #fff;
    --spa-bg-content-mobile: #f7f7f7;
    --spa-bg-footer: #eeedea;

}

/* ================================ ALLGEMEIN ================================ */
body {
    font-family: Lato;
    color: var(--spa-text-color);
    background-color: var(--spa-bg-content);
    
    font-size: 1.125rem;  /* REM-Schriftgröße ist üblicherweise 16px, hiermit setzen wir es auf 18px */
    line-height: 1.5;

}

@media only screen and (max-width: 768px) {
    body {
        background-color: var(--spa-bg-content-mobile) !important;
    }
}

a {
    color: var(--spa-text-color);
    text-decoration: none;
}


/* ================================ HEADER ================================ */
header {
    /* background-image: url("./../img/header-bg.jpg");
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.5); */
    background-image: url("./../img/APSARA_Header.jpg");
    background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

nav li {
    text-transform: uppercase;
}

.logo {
    font-size: 3.5rem;
} 

/* ================================ ÜBERSCHRIFTEN ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: YesevaOne;
    text-transform: uppercase;
    color: var(--spa-heading-color);
}

h2 {
    font-size: 2.125rem;
    padding-bottom: 1.5rem;
}

.name {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}


/* ================================ INTRO ================================ */

/* ================================ ÜBER UNS ================================ */
@media only screen and (max-width: 768px) {
    .text p {
        text-align: center;
    }
}

/* ================================ DAS TEAM ================================ */
.team-member {
    margin-bottom: 1.5rem;
}

.contact-image {
    width: 175px;
    margin: auto;
    margin-bottom: 1rem;

    /* Platzhalter auf Kundenwunsch ausgeblendet */
    display: none !important;
}

.image-placeholder {
    max-height: 200px;
}

.team-member .member-name {
    font-weight: 600;
}

/* ================================ KONTAKT ================================ */
@media only screen and (max-width: 768px) {
   
    .shrink {
        font-size: .8rem;
    }
}


/* ================================ FOOTER ================================ */
footer {
    background-color: var(--spa-bg-footer);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}