* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';

}

.site-header {
    margin: 2rem auto 0;
    max-width: 64rem;
    width: 100%;
    background-color: white;
    display: flex;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    justify-content: center;
}

.logo-link__image {
    max-height: 4rem;
    width: auto;
    height: 100%;
}


@media (min-width: 32rem) {
    .logo-link__image {
        max-height: 6rem;
    }
}

.navigation {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.navigation__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navigation__menu-link {
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.block-gallery {
    background-color: rgb(141,26,21, 0.8);
}

.block-gallery__figures {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    flex-direction: column;
    justify-content: space-between;
    max-width: 100rem;
}

@media (min-width: 32rem) {
    .block-gallery__figures {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (min-width: 64rem) {
    .block-gallery__figures {
        grid-template-columns: repeat(4, 1fr);
        margin: 4rem auto;
        padding: 4rem;
    }
}
.block-gallery__figure {
    line-height: 0;
    border: 1px solid transparent;
    display: inline-flex;
}

.block-gallery__image {
    width: 100%;
    object-fit: fill;
    height: 100%;
}

.block-text {
    margin: 2rem;
    max-width: 64rem;
}

@media (min-width: 64rem) {
    .block-text {
        margin: 2rem auto;
    }
}

.block-text header {
    max-width: 48rem;
}

.block-text header > * {
    font-size: 3rem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    color: #444;
    margin-bottom: 2rem;
}

.text__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 48rem;
}

.text__content p {
    font-weight: 200;
    line-height: 150%;
    font-size: 0.9rem;
}

.block-cover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 80vh;
}

.block-cover > img {
    max-height: 80vh;
    max-width: 100%;
    width: 100vw;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    opacity: 0.5;
}

.block-cover header > * {
    line-height: 150%;
    font-size: 5rem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
}

.block-image {
    margin: 2rem;
}
@media (min-width: 64rem) {
    .block-image {
        margin: 2rem auto;
    }
}

.block-image > img {
    max-width: 100%;
    height: auto;
    width: 100vw;
}

.block-call_to_action {
    margin: 2rem;
    max-width: 64rem;

    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;

    background-color: rgb(141,26,21, 0.8);
}
@media (min-width: 64rem) {
    .block-call_to_action {
        margin: 2rem auto;
    }
}

.block-call_to_action header > * {
    font-size: 3rem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    margin-bottom: 2rem;
}

.block-call_to_action a {
    padding: 1rem;
    background-color: white;
    color: #a44844;
    text-decoration: none;
    font-size: 0.9rem;
}

.information {
    margin: 2rem;
    max-width: 64rem;
    display: grid;
    gap: 4rem;
    border: 1px solid rgba(68, 68, 68, .1);
    padding: 2rem;
}
@media (min-width: 64rem) {
    .information {
        margin: 2rem auto;
        grid-template-columns: 1fr 1fr;
    }
}

.opening__content {
    font-weight: 200;
    line-height: 150%;
    font-size: 0.9rem;
}

.opening__content-day {
    display: flex;
    justify-content: space-between;
    height: 2rem;
}

@media (min-width: 64rem) {
    .opening__content {
        max-width: 20rem;
    }
}

.opening__title {
    font-size: 2rem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    color: #444;
    margin-bottom: 2rem;
}

.offers__content {
    font-weight: 200;
    line-height: 150%;
    font-size: 0.9rem;
}

.offers__title {
    font-size: 2rem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
    color: #444;
    margin-bottom: 2rem;
}

.offers__content-offer {
    display: flex;
    justify-content: space-between;
    height: 2rem;
}

@media (min-width: 64rem) {
    .offers__content {
        max-width: 20rem;
    }
}

.contact {
    margin: 2rem;
    max-width: 20rem;
}

.contact__title {

}

.contact__content {
    font-size: 0.9rem;
}

.contact__link {
    color: #444;
    text-decoration: none;
    font-weight: 600;
}

.contact__link:hover {
    text-decoration: underline;
}

@media (min-width: 64rem) {
    .contact {
        margin: 2rem auto;
        text-align: center;
    }
}