@font-face {
    font-family: "Open Sans";
    src: url("../fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
}
:root {
    --white: #FFFFFF;
    --black: #000000;
    --gray: #f9f9f9;
    --main: #cc4618;
    --secondary: #2c2a26;
    --coral: #FF8978;
}

html, body {
    box-sizing: border-box;
    background-color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

h1, h2 {
    background: var(--black);
    display: inline;
    color: var(--white);
    padding: 5px 20px;
}

h1 {
    font-weight: 800;
    font-size: 75px;
    margin: 0 0 5px 0;
}

h2 {
    font-weight: 600;
    font-size: 35px;
}

h3 {
    font-size: 35px;
    font-weight: 800;
    padding: 20px 0 60px 0;
}

h3 i {
    margin: 0 10px 0 0;
}

h2 span {
    font-weight: 400;
}

h1::after {
    content: "";
    display: block;
}

h4 {
    font-size: 25px;
    color: var(--black);
    font-weight: 600;
    margin: 0 0 25px 0;
}

h3::after, h4::after {
    content:"";
    display: block;
    height: 3px;
    width: 50px;
    margin: 5px 0 0 0;
    background: var(--main);
}

h3::after {
    margin: 5px 0 0 55px;
}

a {
    text-decoration: none;
    color: var(--black);
}

.center {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 30px;
}

.flex {
    display: flex;
}

.header {
    background: var(--white);
    padding: 15px 0;
    height: 194px;
    border-bottom: 10px solid var(--main);
}

.header .center {
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    max-width: 113px;
}

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.cta-button {
    background: var(--main);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background: var(--black);
}

.languages {
    text-align: center;
    position: relative;
}

.language {
    cursor: pointer;
    color: var(--black);
    font-size: 18px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language i {
    margin: 0 0 0 5px;
}

.language-list {
    width: 64px;
    position: absolute;
    top: 35px;
    left: -10px;
    z-index: 999;
    list-style: none;
    border-top: 2px solid var(--black);
    display: none;
}

.language-list a {
    display: block;
    padding: 10px 20px;
    text-align: center;
    color: var(--black);
    background: var(--gray);
    font-size: 16px;
    text-transform: uppercase;
}

.language-list.active {
    display: block;
}

.language.open i {
    transform: rotate(180deg);
}

.section-right-header {
    gap: 40px;
    align-items: center;
}

.section-hero-image {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
    height: calc(100vh - 194px);
    overflow: hidden;
}

.section-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

.intro .center {
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    border-bottom: 10px solid var(--main);
    padding: 0 100px;
}

.main-content {
    position: relative;
    top: -100px;
    max-width: 1200px;
    background: var(--white);
    border-top: 10px solid var(--main);
}

.main-content .cta-button {
    display: block;
    margin: 50px 0 0 0;
}

.opening-hours-container, .time-range {
    justify-content: space-between;
    gap: 20px;
}

.opening-hour-table {
    flex: 1;
    background: var(--gray);
    padding: 20px;
}

.time-range {
    padding: 15px 10px;
    border-bottom: 3px solid var(--white);
    gap: 0;
    font-size: 17px;
}

.time-range:last-child {
    border: 0;
}

.time {
    line-height: 160%;
}

.day {
    font-weight: 600;
}

.decoration-image {
    position: relative;
    text-align: right;
    top: 35px;
}

.section-footer {
    justify-content: space-between;
}

.section-footer p {
    line-height: 180%;
}

.footer {
    border-top: 10px solid var(--black);
    background: var(--gray);
    padding: 0 0 30px 0;
}

.footer .logo {
    background: var(--gray);
    margin: -50px 0 0 0;
    padding: 0 20px;
    max-width: 153px;
}

.footer .logo img {
    filter: drop-shadow(0px 0px 4px #000);
}

.footer > .center {
    border: 3px solid var(--black);
    margin: 60px auto 0 auto;
    padding: 20px 30px;
    position: relative;
    max-width: 1200px;
}

.last-line {
    margin: 30px 0 0 0;
}

.copyright {
    align-items: center;
    gap: 8px;
}

.copyright a.flex {
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.copyright span {
    color: var(--coral);
}

.privacy li {
    list-style: none;
}

.privacy a:hover {
    text-decoration: underline;
}

.privacy li::after {
    content: "|";
    margin: 0 5px;
}

.privacy li:last-child::after {
    content: "";
    margin: 0;
}

.email {
    color: var(--main);
    text-decoration: underline;
}

.tel {
    cursor: text;
}

@media only screen and (max-width: 1200px) {
    .center {
        padding: 0 20px;
    }

    h1 {
        font-size: 45px;
    }

    .section-hero-image {
        height: calc(50vh);
    }

    .intro .center {
        padding: 0 20px;
    }

    .main-content {
        top: 0;
        border-top: 0;
    }

    .footer > .center {
        border: 0;
    }

}

@media only screen and (max-width: 980px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 25px;
        padding: 20px 0;
    }

    h4 {
        font-size: 22px;
    }

    .opening-hours-container {
        flex-direction: column;
    }

    .section-right-header {
        flex-direction: column;
        align-items: end;
    }

    .cta-button {
        display: block;
        font-size: 16px;
    }

    .section-hero-image {
        height: calc(30vh);
    }

    .section-footer {
        flex-direction: column;
        padding: 0;
        text-align: center;
    }

    .footer > .center {
        margin-top: 0px;
    }

    .footer .logo {
        margin: 20px auto;
        order: 1;
    }

    .contact {
        order: 3;
    }

    .address {
        order: 2;
    }

    .copyright {
        border-bottom: 3px solid var(--black);
        padding: 0 0 10px 0;
        justify-content: space-between;
    }

    ul.flex {
        justify-content: center;
    }

    .privacy {
        padding: 10px 0 0 0;
    }
}