* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --border: rgba(239, 231, 210, 15%);
    --text: #efe7d2;
    --text-muted: rgb(245, 242, 234, 0.7);
    --text-inverse: #0a0b0a;
    --background: #0a0b0a;
    --background-muted: rgba(24, 24, 24, 50%);
    --background-primary: #efe7d2;
}

/* Scrollbar track */
/* Scrollbar track (background) */
::-webkit-scrollbar-track {
    background-color: var(--background-muted);
    border-radius: 8px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--text);
    border-radius: 8px;
    border: 2px solid var(--background-muted);
    transition: .3s;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-muted);
}

/* end of scrollbar */
body {
    background-color: var(--background);
    font-family: "Open Sans", sans-serif;
}

img {
    border-radius: 7px;
}

img,
video {
    max-width: 100%;
    max-height: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* heading  */
.heading {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

.heading :where(h2, h4) {
    font-family: "GFS Didot", serif;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--text);
    display: inline-block;
    text-align: center;
    text-wrap: wrap;
}

.heading h2 {
    font-size: 35px;
}

.heading h4 {
    font-size: 25px;
}


.heading span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--border);
    position: relative;
    margin: 0 20px 8px;
}

@media (max-width:767px) {
    .heading h2 {
        font-size: 20px;
    }

    .heading h4 {
        font-size: 18px;
    }

    .heading span {
        margin: 0 5px 8px;
    }
}

/* span decoration */
.heading span::after {
    content: "";
    top: 3px;
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--border);
    background-color: var(--background);
    transform: rotate(45deg) translate(-50%, -50%);
}

.heading span:first-of-type:after {
    left: 0;
}

.heading span:last-of-type:after {
    right: 0;
}

/* small size headings */

/* end heading  */

/* Start Section landing page  */
main {
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 15px;
    color: var(--text);
}


.section {
    width: 50%;
}

@media (max-width:991px) {
    main {
        flex-direction: column;
    }

    .section {
        width: 100%;
    }
}

.section :where(img, video) {
    border-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: calc(100vh - 30px);
}

.section h1 {
    position: absolute;
    left: 40px;
    bottom: 40px;
    font-size: 70px;
    font-weight: normal;
    font-family: "GFS Didot", sans-serif, Arial;
    text-transform: uppercase;
}

@media (max-width:767px) {
    .section h1 {
        font-size: 30px;
    }
}

/* End Section landing page  */

/* Start Header  */

header {
    display: flex;
    background-color: var(--background);
    height: 60px;
    align-items: center;
    gap: 10px;
    width: 550px;
    border-radius: 10px;
    position: fixed;
    left: 40px;
    top: 60px;
    z-index: 1000;
}

@media (max-width:991px) {
    header:not(:has(.show)) {
        left: 50%;
        transform: translateX(-50%);
        top: 50px;
    }
}

header:has(.show) {
    position: static;
}

header .menu-icons {
    background-color: var(--background-muted);
    border: 1px solid var(--border);
    padding: 5px;
    width: 40px;
    height: 30px;
    position: relative;
    margin: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}

header .menu-icons.active {
    position: relative;
    left: 15%;
    top: 100%;
    padding: 20px;
    z-index: 1002;
}

header .menu-icons span {
    background-color: var(--text);
    width: 100%;
    height: 2px;
}

header .menu-icons.active span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

header .menu-icons.active span:first-child {
    transform: rotate(45deg);
}

header .menu-icons.active span:nth-child(2) {
    display: none;
}

header .menu-icons.active span:last-child {
    transform: rotate(-45deg);
}

header .links {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width:767px) {
    header {
        justify-content: space-evenly;
        padding: 20px;
        width: 200px;
    }

    header .links {
        display: none;
    }
}

header .links li {
    padding: 7px 10px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

header .links li.active,
header .links li:hover {
    border-color: var(--border);

    background-color: var(--background-muted);
    border-radius: 6px;
}

header .links li a {
    color: var(--text);
    text-transform: uppercase;
}

header .hidden-nav {
    display: none;
}

header .hidden-nav.show {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--background);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

header .hidden-nav.show ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90%;
    border: 1px solid var(--border);
    border-radius: 15px;
    position: relative;
}

header .hidden-nav.show ul span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--border);
}

header .hidden-nav.show ul span:first-of-type {
    top: 10%;
}

header .hidden-nav.show ul span:last-of-type {
    bottom: 10%;
}

header .hidden-nav.show ul span::before,
header .hidden-nav.show ul span::after {
    content: "";
    top: 3px;
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--border);
    background-color: var(--background);
    transform: rotate(45deg) translate(-50%, -50%);
}

header .hidden-nav.show ul span::before {
    left: 0;
}

header .hidden-nav.show ul span::after {
    right: 0;
}

header .hidden-nav.show ul li {
    font-size: 40px;
    text-transform: uppercase;
    margin: 15px 0;
}

header .hidden-nav.show ul li a {
    color: var(--text-muted);
    position: relative;
    transition: .3s;
}

@media (max-width:767px) {
    header .hidden-nav.show ul li {
        font-size: 25px;
    }

    header .hidden-nav.show ul span:first-of-type {
        top: 20%;
    }

    header .hidden-nav.show ul span:last-of-type {
        bottom: 20%;
    }

}

header .hidden-nav.show ul li a:hover {
    color: var(--text);
}

/* links hovering effects */
header .hidden-nav.show ul li a:hover::after,
header .hidden-nav.show ul li a:hover::before {
    animation: width forwards .5s;
}

header .hidden-nav.show ul li a::after {
    content: '';
    position: absolute;
    background-color: var(--text);
    width: 0;
    bottom: 0;
    z-index: 10;
    left: 50%;
    height: 1px;
}

header .hidden-nav.show ul li a::before {
    content: '';
    position: absolute;
    background-color: var(--text);
    width: 0;
    bottom: 0;
    z-index: 10;
    right: 50%;
    height: 1px;
}


/* End Header  */

/* Start Main page  */

.main .main-video {
    flex: 2.2 1;
}

.main .links-video {
    flex: 0.5 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

@media (max-width:991px) {

    .main .links-video {
        flex-direction: row;
    }

}


main .boxholder .box {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

@media (max-width:767px) {

    .main .links-video {
        flex-direction: column;
        gap: 20px;
    }

    main .boxholder .box {
        width: 100%;
    }

    main .boxholder .box img {
        width: 100%;
    }

}

main .boxholder .box img {
    border-radius: 10px;
    filter: grayscale(0.4);
    transition: 0.3s;
}

main .boxholder .box:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

main .boxholder .box p {
    padding: 5px 7px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    border-top-left-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    color: var(--text);
}

main .boxholder .box p span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid var(--border);
    line-height: 25px;
    background-color: var(--background-muted);
    color: var(--text);
    text-align: center;
    overflow: hidden;
}

main .boxholder .box:hover p span i {
    animation: arrow 0.7s forwards;
}

/* End Main page  */

/* Start Reservation  */

.reservation p {
    font-size: large;
    text-align: center;
    opacity: 0.8;
}

.reservation .right {
    flex: 1 0;
}

.reservation .reserve {
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 20px 40px;
    gap: 15px;
}

.reservation .reserve form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.reservation .reserve form>input {
    width: 500px;
    height: 50px;
    color: var(--text);
    font-size: medium;
    background-color: var(--background-muted);
    padding: 15px;
    border-radius: 7px;
    border: 1px solid var(--border);
    outline: none;
}

.reservation .reserve form>input:focus {
    border: 1px solid rgba(255, 232, 203, 0.692);
}

.reservation .reserve form .extra {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 7px;
}


.reservation .reserve form .extra input {
    width: calc(485px / 3);
    padding: 10px;
    color: var(--text);
    font-size: medium;
    background-color: var(--background-muted);
    padding: 15px;
    border-radius: 7px;
    outline: none;
    border: 1px solid var(--border);
}

@media (max-width:767px) {
    .reservation .reserve form {
        width: 100%;
    }

    .reservation .reserve form input {
        width: 90%;
    }

    .reservation .reserve form .extra {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .reservation .reserve form .extra input {
        width: 90%;
    }
}

.reservation .reserve form .extra input:focus {
    color: var(--text);
    border: 1px solid rgba(255, 232, 203, 0.692);
}

.reservation .reserve form .submit {
    background-color: var(--background-primary);
    text-transform: uppercase;
    padding: 5px;
    cursor: pointer;
    color: black;
    transition: 0.3s;
}

.reservation .reserve form .submit:hover {
    background-color: #f5e3b7;
}

/* End Reservation  */

/* start contact */
/* contact information */
@media (max-width:1330px) {
    .contact {
        flex-direction: column;
    }

    .contact .section {
        width: 100%;
    }
}

.contact .right {
    flex: 1 0;
    padding: 0 10px;
    text-align: center;
    margin: 0;
}

.contact .heading {
    margin: 5px 0;
}

.contact .heading h4 {
    font-size: 22px;
}

.contact .heading span {
    margin: 0 5px 8px;
}

.contact .info {
    flex: 1 0;
    padding: 0 10px;
    height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50% 60px;
    gap: 15px;
}

@media (max-width:767px) {
    .contact .info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.contact .info>div {
    background-color: var(--background);
    border-radius: 7px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* opening times */
.contact .opening {
    border: 1px solid var(--border);
    text-align: center;
    line-height: 2.2;
}

.contact .opening p {
    color: var(--text-muted);
}

/* cards */

.contact .info .images {
    width: 100%;
    padding: 10px;
    overflow: hidden;
    gap: 20px;
}

.contact .info .images div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact .info .images img {
    object-fit: contain;
    flex: 1 0;
    width: calc(50% - 30px);
    transition: 0.3s;
    filter: brightness(0.9);
}

.contact .info .images img:hover {
    transform: scale(1.05);
    filter: brightness(1);
}

.contact .box {
    width: 100%;
}

@media (max-width:767px) {
    .contact .boxholder .box {
        height: 300px;
    }
}

/* contact */
.contact .touch {
    border: 1px solid var(--border);
    padding: 10px;
}

.contact .touch p {
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    line-height: 2;
    padding: 7px 0;
}

.contact .touch p .follow i {
    margin-left: 15px;
    cursor: pointer;
    transition: 0.4s;
    font-size: 20px;
}

.contact .touch p .follow i:hover {
    transform: scale(1.3);
}

.contact footer {
    grid-column: span 2;
    margin: 0;
}

/* blog */
.blog .section {
    position: fixed;
    top: 10px;
    width: calc(50% - 30px);
}


.blog>.right {
    width: 50%;
    margin-left: auto;
}

@media (max-width:991px) {
    .blog .section {
        position: static;
        width: 100%;
    }

    .blog>.right {
        width: 100%;
    }
}

.blogs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
    border: 1px solid var(--border);
}

.blogs .heading {
    padding-bottom: 40px;
}

.blogs .blog {
    display: flex;
    gap: 30px;
    line-height: 1.5;
    align-items: center;
}

@media (max-width:767px) {
    .blogs .blog {
        flex-direction: column;
        align-items: center;
        border: 1px solid var(--border);
        padding: 15px;
        border-radius: 10px;
        background-color: var(--background-muted);
    }

}

.blogs .blog .left {
    transition: 0.5s;
    flex: 1 0;
}

.blogs .blog .left:hover {
    transform: scale(1.05);
}

.blogs .blog .right {
    flex: 2 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blogs .blog h3 {
    font-weight: normal;
    font-size: 22px;
    font-family: "GFS Didot", serif;
    line-height: 1.2;
}

.blogs .blog .right p:not(.date) {
    color: var(--text-muted);
}

.blogs .blog .right .date {
    font-size: small;
}

@media (max-width:767px) {
    .blogs .blog .right {
        text-align: center;
    }

    .blogs .blog .right .date {
        display: none;
    }

}

.blogs .blog .right .date span {
    display: inline-block;
    width: 50px;
    background-color: var(--border);
    height: 1px;
    position: relative;
    transform: translateY(-50%);
    margin-right: 30px;
}

.blogs .blog .right .date span:before {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    z-index: 10;
    border: 1px solid var(--border);
    background-color: var(--background);
    transform: rotate(45deg);
    top: -8px;
    left: 2px;
}

/* Start Menu  */
.menu .section {
    position: fixed;
    top: 10px;
    width: calc(50% - 30px);
}


.menu .right {
    margin-left: auto;
    width: 50%;
}

@media (max-width:991px) {
    .menu .section {
        position: static;
        width: 100%;
    }

    .menu .right {
        width: 100%;
    }

}

.menu .menu-section {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding-top: 10px;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.menu ul li a {
    padding: 7px 10px;
    border: 1px solid var(--border);
    background-color: var(--background-muted);
    cursor: pointer;
    color: var(--text);
    text-transform: uppercase;
    border-radius: 6px;
}

.menu .food {
    padding: 20px 20px 30px;
}

.menu .food .heading {
    padding-bottom: 20px;
}

.menu .food .food-box {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 15px 0;
}


.menu .food .food-box .text {
    text-align: left;
    margin-right: 20px;
}

.menu .food .food-box .text h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-size: 22px;
    justify-content: space-between;
    font-weight: normal;
}

@media (max-width:767px) {
    .menu .food .food-box {
        flex-direction: column;
        border: 1px solid var(--border);
        padding: 15px;
        border-radius: 10px;
        background-color: var(--background-muted);
    }

    .menu .food .food-box .text {
        text-align: center;
    }

    .menu .food .food-box .text h4 {
        justify-content: center;
        gap: 30px;
    }

}

.menu .food .food-box .text p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* End Menu  */

/* start about */



.about .right {
    display: grid;
    width: 50%;
    grid-template-columns: 50% 50%;
    grid-template-rows: 35% 15% 35% 60px;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
    height: calc(100vh - 20px);

}

@media (max-width:1330px) {
    .about {
        flex-direction: column;
    }

    .about .section {
        width: 100%;
    }

    .about .right {
        width: 100%;
        height: 100%;
    }
}

.about .right>div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    height: 100%;
    overflow: hidden;
}

@media (max-width:767px) {
    .about .right {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .about .right>div {
        width: 100%;
    }
}

.about .right .heading h4 {
    font-size: 22px;
    /* text-align: center; */
}

.about .right div p {
    color: var(--text-muted);
}

.about .right .reviews {
    flex-direction: row;
    grid-column: span 2;
    gap: 20px;
}

.about .right .reviews .review {
    text-align: center;
    flex: 1 0;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

@media (max-width:767px) {
    .about .right .reviews {
        flex-direction: column;
        border: 1px solid var(--border);
        background-color: var(--background-muted);
        padding: 15px;
        border-radius: 10px;
    }

    .about .right .reviews .review {
        width: 90%;
    }

}

.about .right .reviews h3 {
    font-family: "GFS Didot", serif;
    font-weight: normal;
}

.about .right .reviews p {
    font-size: 14px;
}


.about .right .image {
    border-radius: 5px;
    overflow: hidden;
}

.about .right img {
    width: 100%;
    filter: brightness(.9);
    transition: .3s;
}

.about .right img:hover {
    filter: brightness(1);
    transform: scale(1.05);
}

.about .right .text {
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 10px;
    line-height: 1.7;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about .right footer {
    grid-column: span 2;
}

@media (max-width:767px) {
    .about footer {
        width: 100%;
    }
}

/* Start Footer  */
footer {
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 10px;
    margin-top: 20px;
}

/* End Footer  */

/* Animation  */
/*links on hidden nav hovering animation   */
@keyframes width {
    to {
        width: 50%;
    }
}

/* arrows in boxes */
@keyframes arrow {

    0%,
    100% {
        transform: translate(0);
    }

    40% {
        transform: translateX(20px);
    }

    45% {
        transform: translate(0, 30px);
    }

    50% {
        transform: translate(-20px, 0);
    }
}