/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --orange: #f37424;
    --orange2: #e3570c;
    --yellow: #fff100;
    --green: #7bba29;
    --purple: #772379;
    --blue: #58cae8;
    --red: #c10741;
    --gray: #606060;
}

@font-face {
    font-family: "Taberna";
    src: url("../media/woff/tabernascript.woff");
}

@font-face {
    font-family: "Appelstroop";
    src: url("../media/woff/appelstroop.woff");
}

@font-face {
    font-family: "Mixed Breed";
    src: url("../media/woff/mixedbreed.woff");
}

@font-face {
    font-family: "Janda Manatee";
    src: url("../media/woff/jandamanatee.woff");
}

body {
    background: white;
}

body.noscroll {
    overflow: hidden;
}

img,
svg {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button {
    cursor: pointer;
    transition: .25s;
}

h1,
h2 {
    font-family: "Mixed Breed";
    font-size: 3.5vw;
    font-weight: 300;
    line-height: 1;
}

h1 span,
h2 span {
    font-family: "Mixed Breed";
    font-weight: 300;
}

p,
li {
    color: var(--gray);
    font-size: 1vw;
    font-weight: 400;
    text-align: justify !important;
}

ul {
    color: var(--gray);
    list-style-position: inside;
}

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.subtitle {
    width: fit-content;
    color: var(--red);
    font-family: "Taberna";
    font-size: 1.7vw;
    font-weight: bold;
    padding: .5vw 1vw;
    border-radius: .25vw;
    background: var(--yellow);
}

.main_btn {
    color: white;
    font-size: 1vw;
    font-weight: 500;
    padding: .75vw 1.5vw;
    border: .15vw solid var(--red);
    border-radius: 10vw;
    background: var(--red);
}

.main_btn:hover {
    transform: scale(.95);
    color: var(--red);
    background: none;
}

.nd_btn {
    position: relative;
    color: white;
    font-size: 1vw;
}

.nd_btn:hover {
    color: var(--yellow);
    transform: scale(.95);
}

.nd_btn::before {
    content: "";
    position: absolute;
    bottom: -.25vw;
    left: 0;
    width: 100%;
    height: .1vw;
    background: white;
    transition: .25s;
}

.nd_btn:hover::before {
    background: var(--yellow);
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 8vw;
    }
    p,
    li {
        font-size: 3.5vw;
    }
    .subtitle {
        font-size: 4.5vw;
        padding: 1.5vw 3vw;
        border-radius: .5vw;
    }
    .main_btn {
        font-size: 3.5vw;
        padding: 3vw 6vw;
        border: .5vw solid var(--orange);
        border-radius: 10vw;
    }
    .main_btn:hover {
        transform: scale(.95);
        color: var(--orange);
        background: none;
    }
    .nd_btn {
        font-size: 3.5vw;
    }
    .nd_btn::before {
        bottom: -1vw;
        height: .25vw;
    }
}


/* ---HEADER STYLES--- */

header {
    position: relative;
    z-index: 99;
}

header .desk_box .bar_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5vw 3vw;
}

header .desk_box .contact_box {
    width: 68%;
    display: flex;
    justify-content: space-between;
    gap: 10vw;
}

header .desk_box .contact_box a {
    font-size: .9vw;
}

header .desk_box .social_box {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.3vw;
}

header .desk_box .social_box i {
    font-size: 1.2vw;
}

header .desk_box .ti-brand-tripadvisor {
    font-size: 1.5vw !important;
}

header .desk_box .bar_box a {
    color: var(--gray);
}

header .desk_box .bar_box a:hover {
    color: var(--orange);
}

header .desk_box .header_box {
    display: grid;
    grid-template-columns: 15% 70% 15%;
    padding: 0 3vw;
}

header .logo_box {
    padding: .5vw 0;
}

header .logo_box a {
    width: 50%;
}

header .logo_box a:hover {
    transform: scale(.95);
}

header .desk_box .nav_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .desk_box .nav_box .items_box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

header .desk_box .nav_box a {
    font-family: "Mixed Breed";
    position: relative;
    color: var(--orange);
    font-size: 1.2vw;
    text-align: center;
}

header .desk_box .nav_box a::before {
    content: "";
    position: absolute;
    bottom: -.25vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: .1vw;
    border-radius: 1vw;
    background: var(--orange);
    transition: .25s;
}

header .desk_box .nav_box a.active::before,
header .desk_box .nav_box a:hover::before {
    width: 100%;
}

header .desk_box .language_box {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
}

header .desk_box .language_box a {
    color: var(--orange);
    white-space: nowrap;
}

header .desk_box .language_box span {
    color: var(--orange);
    font-size: 1vw;
}

header .desk_box .order_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .desk_box .button_box {
    width: 100%;
    padding: 1vw;
    border-radius: 2vw 2vw 0 0;
}

header .desk_box .order_box a {
    width: 100%;
    color: white;
    font-size: 1vw;
    font-weight: 500;
    text-align: center;
    padding: 1vw;
    border: .15vw solid var(--orange);
    border-radius: 2vw;
    background: var(--orange);
}

header .desk_box .order_box a:hover {
    transform: scale(.95);
    color: var(--orange);
    background: none;
}

header .mobile_box {
    display: none;
}

.scroll_btn {
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    width: 3vw;
    height: 3vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border: .15vw solid white;
    border-radius: 50%;
    background: var(--orange);
    transition: .25s;
    cursor: pointer;
    user-select: none;
    z-index: 98;
}

.scroll_btn:hover {
    transform: scale(.9);
}

.scroll_btn i {
    color: white;
    font-size: 1.5vw;
}

@media (max-width: 996px) {
    header .desk_box {
        display: none;
    }
    header .mobile_box {
        position: relative;
        display: block;
    }
    header .mobile_box .logo_box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 3vw;
        z-index: 1;
    }
    header .mobile_box .logo_box a {
        width: 25%;
    }
    header .mobile_box .bar_box {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 6vw;
        display: flex;
        flex-direction: column;
        gap: 2vw;
        z-index: 1;
    }
    header .mobile_box .bar_item {
        width: 10vw;
        height: .75vw;
        background: var(--orange);
        transition: .25s;
    }
    header .mobile_box .active_sidebox .bar_item {
        background: white;
    }
    header .mobile_box .active_sidebox .bar_item:nth-child(1) {
        transform: rotate(45deg) translate(2vw, 1.75vw);
    }
    header .mobile_box .active_sidebox .bar_item:nth-child(2) {
        opacity: 0;
    }
    header .mobile_box .active_sidebox .bar_item:nth-child(3) {
        transform: rotate(-45deg) translate(2vw, -1.75vw);
    }
    header .mobile_box .menu_box {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10vw;
        padding: 10vw;
        background: var(--green);
        background-image: url("../media/svg/pattern.svg");
        background-repeat: repeat;
        animation: background_animation 60s alternate infinite;
        transform: translateY(100%);
        transition: .25s;
    }
    header .mobile_box .active_sidebox .menu_box {
        transform: translateY(0);
    }
    header .mobile_box .nav_box,
    header .mobile_box .contact_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }
    header .mobile_box .nav_box a,
    header .mobile_box .contact_box a {
        position: relative;
        color: white;
        font-size: 4vw;
        text-align: center;
    }
    header .mobile_box .nav_box a {
        font-family: "Mixed Breed";
        font-size: 6vw;
    }
    header .mobile_box .nav_box a.active {
        color: var(--yellow);
    }
    header .mobile_box .nav_box a::before,
    header .mobile_box .language_box a::before {
        content: "";
        position: absolute;
        bottom: -1.5vw;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: .4vw;
        border-radius: 1vw;
        background: white;
        transition: .25s;
    }
    header .mobile_box .nav_box a.active::before,
    header .mobile_box .nav_box a:hover::before,
    header .mobile_box .language_box a.active::before,
    header .mobile_box .language_box a:hover::before {
        width: 100%;
        background: var(--yellow);
    }
    header .mobile_box .main_btn {
        color: var(--green);
        border: .5vw solid white;
        background: white;
    }
    header .mobile_box .language_box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3vw;
    }
    header .mobile_box .language_box a {
        position: relative;
        font-family: "Mixed Breed";
        font-size: 5vw;
        color: white;
    }
    header .mobile_box .language_box a.active {
        color: var(--yellow);
    }
    header .mobile_box .language_box span {
        color: white;
    }
    header .mobile_box .main_btn:hover {
        color: white;
        background: none;
    }
    header .mobile_box .social_box {
        display: flex;
        gap: 5vw;
        align-items: center;
    }
    header .mobile_box .social_box a {
        color: white;
        font-size: 5vw;
    }
    .scroll_btn {
        bottom: 5vw;
        right: 5vw;
        width: 10vw;
        height: 10vw;
        border: .5vw solid white;
    }
    .scroll_btn i {
        font-size: 5vw;
    }
}


/* ---FOOTER STYLES--- */

footer .footer_box {
    display: grid;
    grid-template-columns: 20% 26% 29% 25%;
    padding: 3vw;
}

footer .footer_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

footer .footer_item:nth-child(1) {
    gap: 2vw;
}

footer .logo_box {
    width: 50%;
}

footer .logo_box:hover {
    transform: scale(.95);
}

footer .social_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

footer .social_box a {
    color: var(--gray);
}

footer .social_box i {
    color: var(--gray);
    font-size: 1.2vw;
    transition: .25s;
}

footer .social_box a:hover i {
    color: var(--orange);
}

footer .ti-brand-tripadvisor {
    font-size: 1.5vw !important;
}

footer .legal_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

footer .legal_box a {
    color: var(--gray);
    font-size: .7vw;
}

footer .legal_box a:hover {
    color: var(--orange);
}

footer .legal_box span {
    font-size: .8vw;
}

footer h2 {
    color: var(--orange);
    font-size: 2vw;
}

footer a {
    color: var(--gray);
    font-size: 1vw;
}

footer a:hover {
    color: var(--orange);
}

footer .bar_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 1vw 3vw;
}

footer .bar_box a {
    color: var(--gray);
    font-size: .8vw;
}

footer .bar_box a:hover {
    color: var(--orange);
}

footer .bar_box span {
    color: var(--gray);
    font-size: .8vw;
}

@media (max-width: 996px) {
    footer .footer_box {
        grid-template-columns: 1fr;
        gap: 10vw;
        padding: 5%;
    }
    footer .footer_item {
        align-items: center;
        gap: 5vw;
    }
    footer .footer_item:nth-child(1) {
        gap: 10vw;
    }
    footer .logo_box {
        width: 35%;
    }
    footer .social_box {
        gap: 5vw;
    }
    footer .social_box i {
        font-size: 5vw;
    }
    footer .ti-brand-tripadvisor {
        font-size: 6vw !important;
    }
    footer .legal_box {
        gap: 5vw;
    }
    footer .legal_box a {
        text-align: center;
        font-size: 3vw;
    }
    footer .legal_box span {
        font-size: 2.5vw;
    }
    footer h2 {
        font-size: 6vw;
        text-align: center;
    }
    footer a {
        font-size: 3.5vw;
        text-align: center;
    }
    footer p {
        text-align: center;
    }
    footer .bar_box {
        gap: 2vw;
        padding: 5vw 1vw;
    }
    footer .bar_box a {
        font-size: 2.5vw;
    }
    footer .bar_box span {
        font-size: 3vw;
    }
}


/* ---ANIMATIONS--- */

@keyframes zoomIn {
    from {
        transform: scale(.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes background_animation {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}