:root {
    --primary-color: #314D38;
    --secondary-color: #ECD0A6;
    --secondary-color-RGB: 236, 208, 166;
    --secondary-color-light: #FCF7EF;
    --tertiary-color: #B9F697;
    --quaternary-color: #C48A80;
    --quaternary-color-text: #B46A5D;
    --quinary-color: #FCD21D;
    --summer-drinks-color: #006F8B;
}

html {
    font-size: 100%;
    /* 16px */
}

html, body {
    overscroll-behavior: none;
    overflow-x: hidden;
}

/* Gyst */
@font-face {
    font-family: 'Gyst';
    src: url('../fonts/53658.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gyst';
    src: url('../fonts/53659.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Chaloops */
@font-face {
    font-family: 'Chaloops';
    src: url('../fonts/789.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chaloops';
    src: url('../fonts/790.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Chauncy Pro */
@font-face {
    font-family: 'Chauncy Pro';
    src: url('../fonts/791.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Chauncy Pro';
    src: url('../fonts/792.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chauncy Pro';
    src: url('../fonts/793.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Chauncy Pro';
    src: url('../fonts/794.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bollity';
    src: url('../fonts/Bollity.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    color: var(--primary-color);
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
}
h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 300;
    line-height: normal;
    font-size: clamp(1rem, 1.7vw, 2rem);
}

main {
    padding: 0;
}

.meoHeader {
    font-family: 'Gyst', sans-serif !important;
    font-variation-settings: 'wght' 400;
}

.btn {
    color: var(--secondary-color-light);

    &:visited {
        color: var(--secondary-color-light);
    }

    &:hover {
        color: var(--tertiary-color);
    }

    font-family: "Rubik",
    sans-serif;
    font-size: 1.7rem;
    display: inline-block;
    font-size: clamp(1.3rem, 2vw, 2rem);
    border-radius: 10px;
    text-transform: uppercase;
    font-variation-settings: 'wght' 450;
}

.nav-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    transition: transform 0.3s ease;
    background-color: #ffffff;
}

header {
    padding: clamp(2rem, 3vw, 3rem);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.3rem;
}

header .nav-menu li a.active,
header .nav-menu li a.active:hover,
header .nav-menu li a.active:visited,
header .nav-menu li a.active:visited:hover
{
    color: var(--secondary-color);
}

header.light a {
    color: #ffffff;
}

header.dark a {
    color: var(--primary-color);
}


header.dark a:visited {
    color: var(--primary-color);
}

header.dark a:visited:hover {
    color: var(--quaternary-color-text);
}

header.dark .hamburger[aria-expanded="false"] .hamburger-icon {
    background-color: var(--primary-color);
}

header.dark .hamburger[aria-expanded="true"] .hamburger-icon {
    background-color: #ffffff;
}

header.dark .nav-menu li a.active,
header.dark .nav-menu li a.active:hover,
header.dark .nav-menu li a.active:visited,
header.dark .nav-menu li a.active:visited:hover {
    color: var(--quaternary-color-text);
}

header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header li {
    display: inline;
    margin-right: 1rem;
}

footer.full {
    background-color: var(--primary-color);
    color: #ffffff;
}

footer.half {
    background-color: #ffffff;
    color: var(--primary-color);
}
footer.half a{
    color: var(--primary-color);
}

footer.half .footer-container {
    background-color: var(--secondary-color-light);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-items: center;
    padding: clamp(2rem, 3.5vw, 4rem) clamp(1rem, 2vw, 3rem)
}

.footer-title {
    font-family: 'Gyst', sans-serif !important;
    font-variation-settings: 'wght' 400;
    margin-bottom: .6rem;
    font-size: 1.3rem;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin-bottom: .5rem;
}

.footer-item ul li a,
.footer-item a {
    text-decoration: none;
}

footer.full a {
    text-decoration: none;
    color: #ffffff;
}

footer.full .footer-item a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

footer.half .footer-item a:hover {
    text-decoration: underline;
    color: var(--quaternary-color-text);
}

footer.half .footer-logo {
    align-self: center;
}

footer .napTitle{
    font-family: Bollity;
    font-kerning: none;
    color: var(--secondary-color);
}

footer .napTitle .name-line-1{
    font-family: Bollity;
    font-size: 1.6rem;
}

footer .napTitle .name-line-2{
    font-weight: inherit;
    font-family: 'Rubik';
    font-size: 1rem;
    text-transform: uppercase;
    display: block;
}

.footer-item p {
    font-size: 1em;
    line-height: 1.5;
    margin: 10px 0;
}

.social-icons {
    display: flex;
    justify-content: end;
    align-items: start;
}

.social-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
}

.social-icons svg {
  fill: white;
  width: 24px;
  height: 24px;
}
.social-icons a:hover svg {
  fill: var(--secondary-color);
}

.footer-NAP {
    text-align: right;
}

.contact-info p a {
    color: var(--quinary-color);
    text-decoration: none;
}

footer .footer-item.info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

footer .footer-item strong {
    font-weight: 700;
}

footer .footer-item strong.days {
    color: var(--secondary-color);
}

.nav-menu {
    font-family: "Rubik", sans-serif;
    font-weight: 480;
    font-size: 1rem;
    display: flex;
    gap: 1.5rem;
    list-style: none;
    text-transform: uppercase;
}

.booking-btn a{
    padding: .8rem 1rem;
    border-radius: 2px;
    color: var(--primary-color) !important;
    background-color: var(--quinary-color);
}
.booking-btn a:visited{
    color: var(--primary-color) !important;
}
.booking-btn a:hover,
.booking-btn a:visited:hover {
    color: var(--quaternary-color-text) !important;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}
header.dark .nav-menu a:hover {
    color: var(--quaternary-color-text);
}

footer .address {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.napSchema>* {
    margin-bottom: clamp(.5rem, 1.5vw, 1.5rem);
}


footer .copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem 0;
    text-align: center;
}
   
footer.full .copyright {
    background-color: var(--primary-color);
}

footer.half .copyright {
    background-color: var(--secondary-color-light);
}

@media (max-width: 1024px) {
    .footer-container {
        gap: 3rem 0;
    }

    footer .social-icons {
        order: 5;
        grid-column: 1 / 5;
    }
}

@media (max-width: 880px) {

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100vw;
        background-color: #0a100cf2;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: -10;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 10vh;
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger[aria-expanded="true"] .hamburger-icon:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger[aria-expanded="true"] .hamburger-icon:nth-child(2) {
        opacity: 0;
    }

    .hamburger[aria-expanded="true"] .hamburger-icon:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    footer .social-icons {
        order: 4;
        grid-column: 1 / 5;
    }

    footer .footer-NAP {
        order: 5;
        grid-column: 1 / 5;

        .napSchema {
            text-align: center;
        }

        .address {
            text-align: center;
            display: block;
        }

    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: center;

        .info {
            grid-column: 1 / 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            justify-items: center;
        }

        footer .social-icons,
        footer .footer-NAP {
            grid-column: 1/3;
        }
    }

    footer.half .footer-logo {
        grid-column: 1 / 3;
    }
        footer .napTitle {
    text-align: center;    }

}