:root {
    --dark: #060b13;
    --gold: #AD834D;
    --gold-transparent: rgba(173, 131, 77, .3);
    --gold-hover: #ffcd57;
    --black: #0B1215;
    --white: #fffafa;
    --grey: #6b6b6b;
    --max-width: 1200px;
}

* {
    font-family: Jost;
    text-decoration: none;
    border: none;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
    background-color: var(--white);
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

.top-spacer {
    width: 100%;
    height: 100px;
}

h2 {
    margin-bottom: 80px;
    margin-top: 0;
    text-align: center;
    position: relative;
    font-weight: 300;
    width: 100%;
    font-size: 48px;
}

h2::after {
    content: '';
    height: 3px;
    display: block;
    width: 200px;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
}

.icon {
    width: 100%;
    height: 100%;
}

.social-container {
    width: 32px;
    height: 32px;
}

.phone-icon-container {
    width: 24px;
    height: 24px;
}

.phone-text {
    font-size: 16px;
    color: var(--gold);
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-network svg {
    width: 100%;
    height: 100%;
}

.base-container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.base-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hidden {
    transition: transform .4s, opacity .4s;
    opacity: 0;
    transform: translateY(10%);
}

header {
    width: 100%;
    background-color: var(--dark);
    height: 100px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    opacity: .95;
    z-index: 500;
}

.header-container {
    padding-top: 0;
    padding-bottom: 0;
}

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

.header-logo-container {
    aspect-ratio: 1 / 1;
    height: 100%;
}

.header-logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.header-informations-container {
    display: flex;
    height: 100%;
    box-sizing: border-box;
    padding-top: 24px;
    padding-bottom: 24px;
    align-items: center;
    gap: 24px;
}

.header-book-button {
    box-sizing: border-box;
    color: var(--black);
    background-color: var(--gold);
    padding: 12px 24px;
    border-radius: 0;
    transition: .2s;
    font-size: 16px;
    cursor: pointer;
    font-weight: 400;
}

.header-book-button:hover {
    background-color: #ffcd57;
}

.booking-modal-container {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: brightness(.3);
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 32px 24px;
    z-index: 9999;
}

.booking-modal-container.visible {
    display: flex;
}

.booking-modal-content {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    max-height: 800px;
    background-color: white;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
}

.booking-modal-content iframe {
    width: 100%;
    flex-grow: 1;
    border-radius: 8px;
}

.booking-modal-close {
    margin-left: auto;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.hero-container {
    padding: 0;
    height: 100vh;
}

.main-picture {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.wysiwyg.description {
    font-size: 20px;
    font-weight: 300;
    color: var(--grey);
}

.wysiwyg.description p {
    font-size: 24px;
}

.schedules-container {
    background-color: var(--dark);
}

.clock-container {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px auto;
}

.schedules-title {
    color: var(--gold);
}

.wysiwyg.schedules {
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
}

.wysiwyg.schedules p {
    font-size: 20px;
    color: var(--white);
    margin-top: 16px;
    margin-bottom: 0;
    box-sizing: border-box;
}

.wysiwyg.schedules h3 {
    font-size: 28px;
    color: var(--gold);
    font-weight: 300;
    margin-top: 28px;
    box-sizing: border-box;
    margin-bottom: 0;
}

.pictures-columns-container {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.pictures-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.picture {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.menu {
    background-color: var(--dark);
}

.menu-title {
    color: var(--gold);
}

.menu-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-card {
    border-radius: 12px;
    border: solid var(--gold-transparent) 1px;
    width: 100%;
    box-sizing: border-box;
    padding: 48px;
    transition: .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-card:hover {
    border-color: var(--gold);
}

.menu-card-tag {
    box-sizing: border-box;
    padding: 8px 16px;
    border-radius: 24px;
    background-color: var(--gold-transparent);
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 48px;
}

.menu-card-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.menu-card-part-title {
    color: var(--grey);
    margin: 0;
    font-size: 18px;
    font-weight: 300;
}

.menu-price {
    font-size: 32px;
    color: var(--gold);
    font-weight: 300;
}

.menu-card-separator {
    width: 100%;
    height: 1px;
    background-color: var(--gold-transparent);
    margin: 40px 0;
}

.wysiwyg.menu-details {
    margin-top: 48px;
}

.wysiwyg.menu-details p {
    color: var(--grey);
}

.chief-title {
    text-align: left;
}

.chief-title::after {
    left: 0;
    transform: none;
}

.chief-content {
    display: flex;
    position: relative;
}

.chief-picture-container {
    width: 40%;
    box-sizing: border-box;
    padding-right: 48px;
}

.chief-picture {
    width: 100%;
    position: sticky;
    top: calc(48px + 100px);
}

.chief-text-container {
    width: 60%;
}

.wysiwyg.chief-text p {
    color: var(--grey);
}

.wysiwyg.chief-text a {
    color: var(--grey);
    text-decoration: underline;
}

footer {
    background-color: var(--dark);
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-social-networks-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.legal-button {
    color: var(--gold);
}

.legal-button:hover {
    text-decoration: underline;
}

.copyrights {
    text-align: right;
    width: 100%;
    color: var(--gold);
}

@media all and (max-width: 768px) {
	header {
		height: 80px;
	}
	
	.top-spacer {
    	height: 80px;
	}
	
	.chief-picture {
    	top: calc(48px + 80px);
	}
	
    h2 {
        font-size: 36px;
    }

    .booking-modal-container {
        padding: 18px 12px;
    }

    .booking-modal-content {
        padding: 18px 12px;
        gap: 16px;
        border-radius: 12px;
    }

    .wysiwyg.chief-text p,
    .wysiwyg.description p,
    .wysiwyg.menu-details p,
    .wysiwyg.schedules p {
        font-size: 18px;
    }

    .wysiwyg.chief-text h3,
    .wysiwyg.description h3,
    .wysiwyg.menu-details h3,
    .wysiwyg.schedules h3 {
        font-size: 20px;
    }

    header .social-container {
        display: none;
    }

    .menu-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .chief-content {
        flex-direction: column-reverse;
    }

    .chief-picture-container {
        display: flex;
        justify-content: center;
    }

    .chief-picture-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin-top: 24px;
    }

    .chief-picture {
        width: 100%;
        position: static;
        top: calc(48px + 100px);
        max-width: 400px;
    }

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

    .chief-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .chief-text-container {
        width: 100%;
    }
}

@media all and (max-width: 500px) {
    .header-book-button {
        padding: 10px 14px;
        font-size: 16px;
    }

    header .phone-text {
        font-size: 12px;
    }

    header .phone-icon-container {
        width: 16px;
        height: 16px;
    }
}

@media all and (max-width: 425px) {
    .pictures-columns-container {
        grid-template-columns: 1fr;
    }
}
