/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html{
    scroll-behavior: smooth
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    font-family: 'Inter', sans-serif;
    --primary-color: #B59B50;
}

body {
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden;
}

#goto-contact{
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

#goto-lang{
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.coming-soon{
    background-color: var(--primary-color);
    padding: 1rem;
    font-size: 1rem;
}

.main-content{
    overflow-x: hidden;
}

.language-selector{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    font-size: 0.9rem;
    flex-shrink: 1;
    height: 55px;
}

nav a{
    color: white;
}

.header-active a{
    color: black;
}

body {
    scroll-snap-type: y proximity;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex-grow: 1;
    max-width: 100vw;
}



.landing-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 4rem;
    font-size: 48px;
    height: 100%;
}

.landing-section > span {
    text-shadow: 0px 6px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
/*     font-family: 'Archivo Black', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Oswald', sans-serif;
    font-family: 'PT Sans', sans-serif;
    font-family: 'Rubik', sans-serif;
    font-family: 'Secular One', sans-serif; */
}

.luxury {
    color: var(--primary-color);
}

.landing-container img {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.95));
    animation: fade-in 1s ease;
}

.landing-container>span {
    animation: slide-up 1s ease 1s both;
    font-family: 'Lora', serif;
    padding: 1rem;
    text-align: center;
}

.landing-section::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgb(140, 144, 143);
    background-image: url('../assets/61-hor-x2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(0.4);

}

.landing-separator {
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 150%;
    height: 100px;
    background: rgba(181, 155, 80, 0.31);
}

.landing-separator-2 {
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 100px;
    background: rgba(181, 155, 80, 0.31);
}

.section-separator {
    z-index: -1;
    position: absolute;
    bottom: -2px;
    left: -10px;
    width: 150%;
    height: 100px;
    background: var(--primary-color);
    transform: rotate(356deg);
}

.section-separator-2 {
    display: none;
    position: absolute;
    bottom: 0;
    left: -10px;
    width: 150%;
    height: 40px;
    background: rgb(213 185 106);
    transform: translateY(50%) rotate(-1deg);
}

.first-section .container {
    display: grid;
    width: 100%;
    height: 100vh;
    grid-template-rows: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) 1fr;
}

.first-section__image-container {
    padding: 2rem;
}

.first-section__image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.50));
}

.first-section__text-container {
    padding: 2rem;
    margin-top: 2rem;
    display: grid;
    grid-template-rows: min-content 1fr;
    margin-bottom: 6rem;
}

.first-section__text-container h3 {
    color: var(--primary-color);
    font-weight: bolder;
    font-size: 1.25rem;
    margin: 2.5rem;
    margin-top: 0;
    justify-self: center;
    text-align: center;
}

.first-section__text-container div {
    align-self: center;
    font-size: 1.1rem;
    font-family: 'Lora', serif;
}

.second-section .container {
    display: grid;
    height: 700px;
    grid-template-rows: 1fr 1fr;
    margin-top: 4rem;
}

.second-section h2 {
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: bolder;
    justify-self: center;
    padding-top: 3rem;
    margin: auto;
    text-align: center;
}

.second-section__number-container {
    display: grid;
    justify-content: space-around;
    grid-template-columns: 1fr 400px 1fr;
}

.second-section__number-container>div span:first-child {
    color: var(--primary-color);
    font-size: 6rem;
}



.second-section__number-container div {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: bolder;
}

.second-section__number-container>div>span {
    margin-top: 1rem;
    color: rgb(165, 165, 165);
}

.second-section__number-container .elevated {
    transform: translateY(-4rem);
}

.third-section {
    background-color: #fff8e2;
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-rows: min-content minmax(0, 1fr);
    padding-bottom: 6rem;
}

.third-section h2 {
    padding: 4rem;
    font-size: 1.25rem;
    font-weight: bolder;
    color: white;
    isolation: isolate;
    z-index: 2;
}

.container {
    max-width: 1240px;
    margin: auto;
    width: 100%;
}

.third-section__card-container {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-content: space-around;
    align-items: center;
    justify-items: center;
}

.third-section__card-container .card {
    border-radius: 25px;
    padding: 1rem;
    height: 70%;

    max-width: 250px;

    box-shadow: 5px 5px 8px rgba(23, 44, 82, 0.1);
    border-radius: 25px;
    position: relative;
    margin: 1rem;

    overflow: hidden;

    transition: transform 0.25s ease;

    min-height: 350px;
    isolation: isolate;
}

.third-section__card-container .card:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 8px rgba(23, 44, 82, 0.2);
}

.third-section__card-container .card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.25s ease;
}

.third-section__card-container .card .darken-card {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 25px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.726) 100%);
    transition: background-image 0.25s ease;
}

.third-section::before {
    
    content: '';
    position: absolute;
    top: -13px;
    left: 0;
    background-color: var(--primary-color);
    z-index: 1;
    width: 150%;
    height: 200px;
    transform-origin: top left;
    transform: translateX(-100px) rotate(356deg);
}


.third-section__card-container .content {
    display: grid;
    grid-template-rows: 80% 20%;
    height: 100%;
    align-items: end;
    color: white;
}

.third-section__card-container .content .header {
    display: flex;
    justify-content: space-between;

    margin: 1rem 0;
    font-weight: bolder;
}

.third-section__card-container .content .header .number {
    color: var(--primary-color);
    filter: drop-shadow(0px 0px 4px rgb(0, 0, 0));
}


.third-section__card-container .content .description {
    align-self: center;
}

.third-section__card-container .card:hover img {
    transform: scale(1.2);
}

.footer {
    background-color: rgb(57, 53, 59);
    color: white;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer h3 {
    font-weight: bolder;
    color: var(--primary-color);
    padding: 1rem 0;
}

.icon {
    width: 15px;
    transition: fill 0.2s ease;
}

.text-with-icon:hover .icon {
    fill: var(--primary-color);
}

.text-with-icon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: white;
    fill: white;
    padding: 0.5rem 0;
}

.text-with-label {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: white;
    fill: white;
    padding: 0.5rem 0;
}

.text-with-label .label {
    color: rgba(255, 255, 255, 0.664);
    transition: color 0.2s ease;
}

.text-with-label:hover .label {
    color: var(--primary-color);
}

.text-with-icon a {
    text-decoration: none;
    color: white;
}


.text-with-icon a:hover {
    text-decoration: underline;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    transition: background-color 0.1s ease-in;
    transition-property: color, background-color, filter;
}

.nav-header>div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    color: white;
    padding: 1rem;
    
}

.nav-header .logo-container {
    display: none;
}

.header-active {
    background-color: white;
    box-shadow: 0px 4px 16px rgba(78, 78, 78, 0.281);
}

.header-active>div {
    color: black;
}

.header-active .globe {
    filter: invert(100%);
}

.header-active .logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 00;
}

.main-logo-name {
    color: var(--primary-color);
    font-weight: bold;
}

.upcoming-section {
    position: relative;

}

.upcoming-section>.container {
    display: grid;
    justify-items: center;
}

.upcoming-section__title {
    color: white;
    font-size: 2rem;
    padding: 4rem 0;
}

.upcoming-section__background {
    position: absolute;
    z-index: -1;
    width: 100%;
}

.upcoming-section__info-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    background-color: white;
    padding: 2rem;
    margin: 2rem;
    margin-top: 0;
    box-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
}


.upcoming-section__info-container>img {
    width: 100%;
}

.upcoming-section__info-list {
    background-color: #f4f4f4;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.upcoming-section__info-list>span {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

.info-container__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 1rem 0;
    color: rgb(104, 104, 104);
    font-weight: bold;
}

.info-container__download {
    border: none;
    font-weight: bold;
    outline: 1px solid transparent;
    outline-offset: -1px;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, var(--primary-color) 50%, white 50%);
    color: white;
    padding: 1rem;
    cursor: pointer;
    transition-property: background-position, color, border;
    transition-duration: 0.3s;
}

.info-container__download:hover {
    outline: 1px solid rgb(110, 110, 110);
    background-position: 100% 0;
    color: rgb(24, 24, 24);
}


@media screen and (max-width: 640px) {
    .upcoming-section__info-container {
        grid-template-columns: 1fr;
        grid-template-rows: min-content 1fr;
        box-shadow: none;
        margin: 0;
    }

    .footer {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(0, 1fr));
        justify-items: center;
        align-items: center;
    }
    

    .second-section h2{
        padding: 0;
        font-size: 4rem;
    }

    .first-section .container{
        grid-template-columns: 1fr;
        
    }

    .second-section .container{
        height: unset;
        grid-template-rows: min-content 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .second-section__number-container{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 4rem;
    }

    .second-section__number-container .elevated{
        transform: none;
    }

    .card.slide-up{
        animation-delay: 0s;
    }

    .elevated.slide-up{
        animation-duration: 0s;
    }

    .second-section__number-container>div span:first-child{
        font-size: 5rem;
    }
}