/* Reset */
/* ===== Root defaults ===== */
:where(html) {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

/* ===== Body ===== */
:where(body) {
  margin: 0;
  font-family: system-ui, sans-serif;
}

/* ===== Headings & text ===== */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Remove default margins on common elements */
:where(p, h1, h2, h3, h4, h5, h6, figure, blockquote, dl, dd) {
  margin: 0;
}

/* ===== Links ===== */
:where(a) {
  background-color: transparent;
  text-decoration-skip-ink: auto;
}

/* ===== Images ===== */
:where(img, picture, video, canvas, svg) {
  display: block;
  max-width: 100%;
}

/* ===== Forms ===== */
:where(button, input, select, textarea) {
  font: inherit;
  margin: 0;
}

:where(button) {
  text-transform: none;
}

:where(button, [type="button"], [type="reset"], [type="submit"]) {
  -webkit-appearance: button;
}

:where(fieldset) {
  padding: 0.35em 0.75em 0.625em;
}

:where(legend) {
  padding: 0;
}

/* Remove inner spin buttons in number inputs (Chrome/Safari) */
:where(input[type="number"])::-webkit-inner-spin-button,
:where(input[type="number"])::-webkit-outer-spin-button {
  height: auto;
}

/* ===== Tables ===== */
:where(table) {
  border-collapse: collapse;
}

/* ===== Misc ===== */
:where([hidden]) {
  display: none !important;
}

:where(abbr[title]) {
  text-decoration: underline dotted;
}

/* vars */
:root {
    --white: #fff;
    --black: #000;
    --grey: #7C7C7C;
    --grey-dark: #575757;
    --grey-light: #e0e0e0;
    --grey-medium: #9b9b9b;
    --green: #336752;
    --yellow: #DDA927;
    --font-base: "montserrat", sans-serif;
    --font-header: "museo-slab", serif;
    --shadow: 0 0 28px 0 rgba(0, 0, 0, .1);
    --max-width: 1200px;
}


html {
    box-sizing: border-box;
    interpolate-size: allow-keywords;
    scroll-behavior: smooth;
}

@supports (scrollbar-gutter: stable) {
	html {
		overflow-y: auto;
		scrollbar-gutter: stable;
	}
}

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

html,
body {
    color: var(--grey-dark);
    font-size: 16px;
    font-family: var(--font-base);
    font-weight: 300;
    line-height: 1.6;;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-snap-type: none;
    overflow-x: clip;
    width: 100vw;
}

body {
    &.no-scroll {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

video {
    height: auto;
    width: 100%;
}

img {
    height: auto;
    max-width: 100%;
    width: 100%;
}

label,
a,
button,
select,
input[type="submit"] {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-header);
    font-weight: normal;
    line-height: 1;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(34px, 8vw, 34px);
}

h2 {
    font-size: clamp(28px, 7vw, 30px);
}

h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: .5rem;
}

h4 {
    font-size: 16px;
    text-transform: uppercase;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

a {
    color: var(--black);
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

a:hover,
 a:active {
        outline: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

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

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="submit"],
textarea,
select {
    font-size: 14px;
    padding: .5rem 1rem;
    background-color: var(--white);
    border-radius: 0;
    border: 1px solid var(--grey);
    line-height: 1.3;
    -webkit-appearance: none;
    width: 100%;

}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    border: 1px solid  var(--green);
    border-radius: 0;
    outline: unset;
}

select {
    background: url('images/icons/icon-chevron.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 10px;
    max-width: 100%;
}

select:focus-visible {
    border-color: var(--yellow);
    outline: none;
}

input[type=submit] {
    /* @include button(); */
}

input[type=checkbox] {
    appearance: none;
    border: 1px solid var(--grey);
    border-radius: 0;
    font-size: 20px;
    height: 1em;
    min-width: 1rem;
    position: relative;
    width: 1em;
}
input[type=checkbox]:checked {
    background-image: url('images/icons/icon-checkbox.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 86%;
    border-color: var(--grey);
}

input[type=radio] {
    accent-color: var(--yellow);
    align-items: center;
    appearance: none;
    background: var(--white);
    border: 1px solid var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    height: 20px;
    width: 20px;
}

input[type=radio]:before {
    background-color: transparent;
    border-radius: 50%;
    color: transparent;
    content: '';
    font-size: 15px;
    display: inline-flex;
    height: 15px;
    width: 15px;
}

input[type=radio]:checked:before {
	background-color: var(--yellow);
}

textarea {
    resize: vertical;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

iframe,
object,
embed {
    max-width: 100%;
}

button {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

button::-moz-focus-inner {
    border: 0;
}

button:disabled {
    opacity: .5;
}


ul {
    margin: 0;
    padding: 0;
}

ol {
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 1rem;
}

p:empty {
    margin: 0;
}

blockquote,
q {
    quotes: '\201C""\201D""\2018""\2019';

    &:before {
        content: open-quote;
    }

    &:after {
        content: close-quote;
    }

    p {
        display: inline;
    }
}

hr {
    border: 0;
    display: block;
    height: 1px;
    width: 100%;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

::selection {
    background-color: #F1C40F;
    color: #000;
}

.u-accessible-hide,
.screen-reader-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}


/* components */
.bold {
    font-weight: 500;
}

.button {
    background-color: var(--green);
    border: 0;
    border-radius: 30px;
    color:  white;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1;
    padding: 12px 1.8rem;
    text-align: center;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
}

.button:hover {
    text-decoration: none;
    box-shadow: 0 .4rem .6rem rgba(0, 0, 0, .15);
    transform: translateY(-.15rem) scale(1.025);
}

.btn--secondary {
    background-color: var(--yellow);
    color: var(--black);
}

.btn--phone {
    align-items: center;
    display: flex;
    font-weight: 500;
    gap: .5rem;
    justify-content: center;
    padding: 7px 1.2rem;
}

.btn--phone svg {
    fill: var(--black);
    font-size: 16px;
}

.btn--small {
    padding: .5rem 1.6rem;
}

.btns--inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 480px) {
    .btns--inline {
        flex-direction: row;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

[class^="icon-svg-"],
[class*="icon-svg-"] {
    fill: var(--black);
    height: 1em;
    transition: all .4s ease;
    width: 1em;
    vertical-align: bottom;
}

[class^="icon-svg-"]:hover,
[class*="icon-svg-"]:hover {
    pointer-events: all;
}

.icon-svg--footer {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.icon-svg--email {
    font-size: 22px;
    margin-bottom: -2.6px;
}

.icon-svg--logo {
    fill: var(--green);
    height: 24px;
    width: 100px;
    margin-right: 6px;
}

.icon-svg--tab {
    fill: var(--grey);
}

/* CSS icons */
.icon--close {
    height: 20px;
    padding: 1rem;
    width: 20px;
    z-index: 20;
    position: relative;
}

.icon--close:before,
.icon--close:after {
    background: var(--green);
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    width: 20px;
}

.icon--close:before {
    transform: rotate3d(0, 0, 1, 45deg);
}

.icon--close:after {
    transform: rotate3d(0, 0, 1, -45deg);
}

.eyebrow {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: .5rem;
    text-align: right;
}

.list--unstyle { 
    list-style: none;
    padding: 0;
    margin: 0;
}

.list--inline {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* site */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 46px;
}

.site-branding {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.site-title {
    margin: 0;
}

.site-content {
    flex: 1;
    margin-top: 2rem;
}

.header {
    left: 0;
    padding: .5rem 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: background-color .3s ease;
    width: 100vw;
    z-index: 5;
}

.header .inner {
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 1rem;
    width: 100%;
}
    
.header__text {
    margin-top: 4rem;
}

.header .btn--phone,
.header .site-title {
    transition: all .3s ease;
}

.header.fixed {
    background: var(--green);
}

.header.fixed .site-title a {
    color: white;
}

.header.fixed .icon-svg--logo {
    fill: var(--white);
    height: 20px;
    width: 84px;
}

.header.fixed .btn--phone {
    background-color: transparent;
    color: var(--white);
    padding: 0;
}

.header.fixed .btn--phone svg {
    fill: var(--white);
}

.header.fixed .menu__icons .button {
    padding: 0;
    border: 0;
}
   
.header .site-branding {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    /* padding-right: 3rem; */
}

@media (min-width: 768px) {
    .header .site-branding {
        padding-right: 0;
    }
}

.header .logo {
        align-items: center;
        display: flex;
        font-weight: 500;
        margin: 1rem 0 0;
        text-transform: none;
    }

.header .heading {
    max-width: 950px;
    line-height: 1.1;
}

.header .heading span {
    position: relative;
    display: inline-block;
    color: var(--black);
    transition: color .8s ease;
}

.header .heading span:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(94deg, #F1C40F, #EDAF2F, #F17D0F);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity .8s ease;
}

.header .heading span:hover::after {
    opacity: 1;
}

.header .heading span:hover {
    color: transparent;
}

.header .heading span.animate-gradient:after {
    opacity: 1;
}

.header .subheading {
    font-size: 20px;
    margin-bottom: 1.5rem;
    max-width: 1050px;
}

@media (min-width: 768px) {
    .header .subheading {
        font-size: 26px;
    }
}

/*  */
.hero {
    background-color: #FAFAFA;
    padding: 80px 0 1rem;
    margin-top: -50px;
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0 2rem;
    }
}

.hero__heading .eyebrow {
    font-size: 16px;
    font-family: "din-arabic", sans-serif;
    font-weight: 500;
}

@media (min-width: 768px) {
    .hero__text {
        display: flex;
        align-items: center;
    }
}

.hero__text .text {
    margin-bottom: 2rem;
}

.hero__heading h1 {
    font-size: 28px;
}


@media (min-width: 480px) {
    .hero__heading h1 {
        font-size: 34px;
    }

    .hero__heading {
        width: max-content;
    }

    .hero__heading h1 {
        font-size: 34px;
        width: max-content;
    }

    .hero__text .text {
        margin-bottom: 2rem;
        max-width: 480px;
    }

    .hero__text .eyebrow {
        max-width: 480px;
    }
}

.hero__text,
.hero__img {
    margin: 0 auto;
}

.hero__img {
    max-width: 500px;
    position: relative;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero__inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
    }

    .hero__text,
    .hero__img {
        margin: 0;
    }

    .hero__img {
        max-width: unset;
        order: 2;
    }
}

.hero .rellax img {
    width: 100%;
}

.construction {
    box-shadow: var(--shadow);
    margin: 3rem 0;
    padding: 3rem 1.5rem;
    position: relative;
    text-align: center;
}

.construction h2 {
    font-size: 25px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .construction {
        margin: 3rem 0;
        padding: 5rem 3rem;
    }

    .construction h2 {
        font-size: 30px;
    }
}

.construction:before {
    content: '';
    display: inline-block;
    position: absolute;
    height: 100%;
    left: 0;
    width: 8px;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        var(--green) 0,
         var(--green) 15px,
        var(--yellow) 15px,
        var(--yellow) 30px
    );
}

.footer {
    color: var(--white);
    display: flex;
    flex-direction: column;
    font-size: 14px;
    overflow: hidden;
    position: relative;
}
    
.footer__wrapper {
    background-color: var(--green);
    position: relative;
}

.footer__wrapper:after {
    content: '';
    background-image: url('images/damascus-star.svg');
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 360px;
    opacity: .07;
    position: absolute;
    right: -180px;
    top: 50px;
    transform: rotate(40deg);
    width: 360px;
    z-index: 1000;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem 5rem;
}

.footer__main {
    border-bottom: .5px solid rgba(var(--white), .5);
    gap: 3rem;
    padding-bottom: 2rem;
}

.footer__terms {
    border-top: .5px solid rgba(255, 255, 255, .5);
    padding-top: 1rem;
}

@media (min-width: 768px) {
    .footer__inner {
        padding: 4rem 1rem 5rem;
    }

    .footer__main {
        display: flex;
        justify-content: space-between;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}

.footer__nav {
    margin-bottom: 1rem;
}

.footer__contact {
    display: flex;
    flex: 1;
    gap: 1rem;
    flex-direction: column;
}

@media (min-width: 560px) {
    .footer__contact {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .footer__contact {
        justify-content: flex-end;
        gap: 5rem;
    }
}

.footer__contact .item {
    display: flex;
    line-height: 1.6;
}

.footer__contact .item.contact {
    display: block;
}

.footer__contact .item:last-child {
    font-weight: 500;
}

@media (min-width: 768px) {
    .footer__contact .item:last-child {
        text-align: right;
    }
}

.footer__contact .button {
    margin-bottom: .5rem;
}

.footer a:not(.button) {
    color: var(--white);
}

.footer a:not(.button):hover {
    text-decoration: underline;
}

.footer .list--inline {
    justify-content: center;
}

.footer .copyright {
    font-size: 12px;
}

.footer .address,
.footer .opening {
    position: relative;
}

.footer .opening .inner {
    align-items: center;
    display: flex;
}

@media (min-width: 480px) {
    .footer .opening {
        align-items: flex-start;
    }
}
    
.footer .address .icon-svg--location,
.footer .opening .icon-svg--calendar {
    fill: var(--white);
    font-size: 16px;
    margin-right: .5rem;
}

.footer .address .icon-svg--location {
    position: relative;
    top: 4px;
}
    
.footer__map {
    margin-top: 2rem;
    max-height: 260px;
    overflow: hidden;
    position: relative;
}
        
.footer__map img {
    height: 115vw;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

@media (min-width: 480px) {
    .footer__map img {
        height: 100%;
        max-height: 260px;
    }
}

.footer__map .map__link {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
    position: absolute;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    top: 8px;
    left: 8px;
    color: rgba(var(--grey), .9);
    font-size: 13px;
    font-weight: 500;
}

.footer__map .map__link svg {
    margin-left: 4px;
}

.perks {
    padding: 0 1rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.perks li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--grey);
}

.perks .icon-svg--perks {
    font-size: 42px;
    fill: var(--grey-medium);
}

@media (min-width: 480px) {
    .perks {
        flex-direction: row;
        gap: 7vw;
        padding: 3rem 1rem;
    }

    .perks .icon-svg--perks {
        font-size: 56px;
    }
}
