/* latin */
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Prompt'), local('Prompt-Regular'), url(https://fonts.gstatic.com/s/prompt/v4/-W__XJnvUD7dzB2KYNodREEjew.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Prompt';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Prompt Bold'), local('Prompt-Bold'), url(https://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C2_8IaWMuUZctdg.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'HerrVonMuellerhof';
    font-style: normal;
    font-display: swap;
    src: url("HerrVonMuellerhoff-Regular.otf") format("opentype");
}


body {
    background-color: black;
}

/*topbar

contains logo, menu, contact banner*/

.header{
    display: grid;
    grid-template: 124px/ repeat(3, 554.667px);
    -webkit-box-shadow: 0 0 50px 0 rgba(255,255,255,0.3);
    box-shadow: 0 0 50px 0 rgba(255,255,255,0.3);
}

.header * {
    max-height: calc(124px - 10px - 10px);
    padding-top: 10px;
    padding-bottom: 10px;
}

.menu {
    max-height: 40px;
    grid-row: 1;
    grid-column: 3;
    padding-right: 35px;
    align-self: center;
    justify-self: end;
}

.contact {
    color: white;
    font-family: Prompt;
    font-size: 20px;
    grid-row: 1;
    grid-column: 3;
    align-self: center;
    justify-self: center;
}

.logo {
    grid-row: 1;
    grid-column: 1;
    height: calc(124px - 5px - 10px);
    padding-left: 20px;
    padding-top: 5px;
}

.name {
    grid-row: 1;
    grid-column: 1;
    align-self: center;
    justify-self: center;
    color: white;
    font-family: HerrVonMuellerhof;
    font-size: 45px;
}

/* index */

.object-container {
    display: grid;
    padding: 50px;
    grid-template-rows: 67px  1fr;
}

.object-container h1 {
    color: white;
    font-family: sans-serif;
    font-size: 36px;
    height: 42px;
    margin-top: 0;
    margin-bottom: 25px;
    align-self: center;
    display: grid;
}

.object-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 367.25px);
    grid-gap: 37px;
}

.object {
    display: grid;
    background-color: beige;
    height: 293.58px;
    width: 367.25px;
    grid-template-columns: 217.25px 150px;
    grid-template-rows: 206.58px 30px 52px;
    border-radius: 10px;
    filter: brightness(0.8);
    transition: all 250ms ease;
}

.object:hover {
    filter: brightness(1);
}

.image {
    height: 206.58px;
    width: 367.25px;
    object-fit: cover;
    display: grid;
    grid-row: 1 / 1;
    grid-column: 1 / 3;
    border-radius: 10px;
}

h3 {
    color: black;
    font-family: sans-serif;
    font-size: 18px;
    align-self: center;
    margin: 0;
}

.object-price {
    justify-self: right;
    padding-right: 10px;
    align-self: center;
}

.object-price h3 {
    font-size: 16px;
}

.object-price h3:before {
    content: "€ ";
}

.object-title {
    align-self: center;
}
.object-title h3 {
    padding-left: 10px;
}

.tag-wrapper {
    font-family: sans-serif;
    font-size: 14px;
    padding: 12px 5px 1px;
    grid-row: 3;
    grid-column: 1 / 3;
}

.tag {
    display: inline-block;
    border: 1px solid rgba(170, 78, 7, 0.69);
    border-radius: 10px;
    background: rgba(170, 78, 7, 0.69);
    text-align: center;
    padding: 5px 20px 5px 20px;

}