*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.container {
    max-width: 1500px;
    margin-inline: auto;
    padding-inline: 120px;
}

@media screen and (min-width: 1920px) {
    .container {
        max-width: 1920px;
    }
}

@media screen and (max-width: 1200px) {
    .container {
        padding-inline: 36px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-inline: 16px;
    }
}

.text-center {
    text-align: center;
}

h1 {
    font-size: 40px;
    font-weight: 300;
    line-height: 150%;
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
}

p,
section.gallery .flipbook a {
    font-size: 16px;
    font-weight: 300;
    line-height: 180%;
}

.bold {
    font-weight: 700;
}

.semibold {
    font-weight: 600;
}

a.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 50vmax;
    padding: 10px 16px;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
}

a.btn.btn-primary {
    background-color: #06B169;
    color: #fff;
}

a.btn.btn-primary:hover {
    background-color: #04804c;
}

a.btn.btn-secondary {
    background-color: #fff;
    color: #06B169;
}

a.btn.btn-secondary:hover {
    background-color: #e6e6e6;
}

header {
    background-color: #1C3214;
    overflow-x: hidden;
}

header .container {
    padding-inline: unset;
    padding-left: 120px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    header .container {
        flex-direction: column;
        justify-content: center;
        padding-inline: 32px;
        gap: 32px;
    }
}

header .container .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block: 80px 120px;
    gap: 32px;
}

@media screen and (max-width: 1200px) {
    header .container .text {
        padding-bottom: unset;
    }
}

header .container .text nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (max-width: 1200px) {
    header .container .text nav {
        gap: unset;
    }
}

header .container .text nav .logo img {
    height: 32px;
}

@media screen and (max-width: 576px) {
    header .container .text nav .logo img {
        height: 24px;
    }
}

header .container .text nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

header .container .text nav ul li {
    list-style: none;
}

@media screen and (max-width: 1200px) {
    header .container .text nav ul {
        flex-direction: row;
    }
}

header .container .text nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    line-height: 150%;
}

header .container .text .cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    max-width: 512px;
}

@media screen and (max-width: 1200px) {
    header .container .text .cta {
        max-width: unset;
    }
}

@media screen and (max-width: 768px) {
    header .container .text .cta h1 {
        font-size: 32px;
    }
}

header .container .text .cta .actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

header .container .text .cta .actions a {
    flex-shrink: 0;
}

header .container .images {
    padding: 24px 0 24px 24px;
    display: grid;
    grid-template-columns: 0.65fr 0.35fr;
    grid-template-rows: 0.31fr 0.38fr 0.31fr;
    gap: 24px;
    flex-shrink: 0;
}

@supports (-webkit-hyphens: none) {
    @media screen and (min-width: 1200px) {
        header .container .images {
            height: min(100vw - 32px, 1048px) !important;
        }
    }
}

@media screen and (max-width: 1500px) {
    header .container .images {
        margin-right: -24px;
    }
}

@media screen and (max-width: 1200px) {
    header .container .images {
        margin-right: unset;
        padding-inline: unset;
    }
}

@media screen and (max-width: 768px) {
    header .container .images {
        max-height: 50vh;
        overflow: hidden;
    }
}

@media screen and (max-width: 576px) {
    header .container .images {
        gap: 12px;
    }
}

header .container .images img {
    border-radius: 32px;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

header .container .images img.dining {
    grid-column: 1/5;
    grid-row: 1/2;
}

header .container .images img.bathroom {
    grid-column: 1/4;
    grid-row: 2/3;
}

header .container .images img.kitchen {
    grid-column: 1/4;
    grid-row: 3/4;
}

header .container .images img.outdoor {
    grid-column: 4/5;
    grid-row: 2/4;
}

header .container svg {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    opacity: 5%;
    pointer-events: none;
}

@media screen and (max-width: 1200px) {
    header .container svg {
        max-width: 90vw;
        bottom: unset;
        top: -5%;
    }
}

section.gallery {
    scroll-margin-top: 80px;
    padding-block: 80px 220px;
}

section.gallery .text {
    display: flex;
    flex-direction: column;
}

section.gallery .flipbook {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.gallery .flipbook .flipbook-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
}

@media screen and (max-width: 576px) {
    section.gallery .flipbook .flipbook-container {
        min-height: unset;
        aspect-ratio: 1/1.12;
    }
}

@media screen and (max-width: 360px) {
    section.gallery .flipbook .flipbook-container {
        min-height: unset;
        aspect-ratio: 1/1.22;
    }
}

section.gallery .flipbook .flipbook-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

section.gallery .flipbook a {
    font-weight: 600;
    text-decoration: none;
    color: #0C0D0E;
    display: block;
    text-align: right;
    margin-right: 32px;
}

section.reserve {
    position: relative;
}

section.reserve .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding-inline: unset;
    padding-left: 120px;
}

@media screen and (max-width: 1200px) {
    section.reserve .container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-inline: 0;
        align-items: unset;
    }
}

section.reserve .container .text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 572px;
}

@media screen and (max-width: 1200px) {
    section.reserve .container .text {
        padding-inline: 32px;
    }
}

section.reserve .container .text .cta-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

section.reserve .container .text .cta-text a.logo img {
    filter: invert(1);
}

section.reserve .container .text .cta-text__subtext {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

section.reserve .container .text .contacts ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

section.reserve .container .text .contacts ul li {
    list-style: none;
}

section.reserve .container .text .contacts ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    color: #0C0D0E;
    font-size: 16px;
    font-weight: 600;
    line-height: 180%;
}

section.reserve .container .text a.btn {
    width: -moz-fit-content;
    width: fit-content;
}

section.reserve .container .background {
    width: 100%;
    height: 1000px;
    background: url("./../images/dining_large.webp") no-repeat center/cover;
}

@media screen and (max-width: 1200px) {
    section.reserve .container .background {
        height: 734px;
    }
}

@media screen and (max-width: 1024px) {
    section.reserve .container .background {
        height: 500px;
    }
}

section.reserve svg {
    position: absolute;
    left: 50%;
    bottom: -16%;
    transform: translateX(-50%);
    opacity: 5%;
    pointer-events: none;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    section.reserve svg {
        max-width: 90vw;
        bottom: unset;
        top: -18%;
    }
}

@media screen and (max-width: 576px) {
    section.reserve svg {
        top: -28%;
    }
}

footer {
    background-color: #1C3214;
    padding-block: 50px 130px;
    color: #fff;
}

footer .container {
    display: flex;
    align-items: center;
    gap: 116px;
}

@media screen and (max-width: 768px) {
    footer .container {
        flex-direction: column;
        gap: 40px;
        align-items: unset;
    }
}

footer .container .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 416px;
}

footer .container .text p,
footer .container .text section.gallery .flipbook a,
section.gallery .flipbook footer .container .text a {
    font-size: 13px;
}

footer .container .contacts ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .container .contacts ul li {
    list-style: none;
}

footer .container .contacts ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 180%;
}

/*# sourceMappingURL=styles.css.map */
