:root {
    --gold-primary: rgb(183, 157, 94);
    --gold-hover: rgb(226, 196, 125);
    --white-primary: rgb(255, 255, 255);
    --grey-primary: rgb(106, 106, 105);
    --grey-secondary: #fff;
    --base-text: 16px;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--grey-primary);
    line-height: calc(1em + 8px);
}

body {
    max-width: 100vw;
    overflow-x: hidden;
}
.font-novecento {
    font-family: "novecento-sans", sans-serif!important;
}

.nav-menu {
    display: flex;
    list-style-type: none;

    text-transform: uppercase;
    color: var(--white-primary);
    font-size: var(--base-text);
    font-family: "novecento-sans", sans-serif;
    font-weight: 800;
    letter-spacing: 5px;
}

.nav-menu > li {
    color: var(--white-primary);
}

h1, h1 > span {
    color: var(--gold-primary);
    font-size: 70px;
    font-family: "novecento-sans", sans-serif;
    font-weight: 300;
    line-height: 100%;
}


h2 {
    text-transform: uppercase;
    color: var(--gold-primary);
    font-size: var(--base-text);
    font-family: "novecento-sans", sans-serif;
    font-weight: 800;
    letter-spacing: 2px;

    padding-bottom: 2rem;
}

.letter-spacing-1 {
    letter-spacing: 2px;
}
 
h3 {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-size: var(--base-text);
    color: var(--grey-primary);
    text-decoration: underline;

    padding-bottom: 1rem;
}

p {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-size: var(--base-text);
    color: var(--grey-primary);
}

a {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-size: var(--base-text);
    color: var(--gold-primary);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--gold-hover);
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.mb-1 {
    margin-bottom: .75rem;
}

main ul {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: var(--base-text);
    list-style-type: none;
    padding-left: 16px;
}

main li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--white-primary);
    font-weight: bold;
}

main li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--grey-primary);
    position: absolute;
    top: 14px;
    left: -16px;
    transform: translate(-50%, -50%);
}

.hero {
    position: relative;
}

.hero-img {
    width: 100%;
}
.hero-wrapper {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.d-block {
    display: block;
}

.mt-2 {
    margin-top: 10px;
}

.container {
    max-width: 926px;
    width: 100%;
    margin: 0 auto;
}

.base-article {
    padding-bottom: 6rem;
}

.ptb-80 {
    padding: 80px 0;
}

.pb-160 {
    padding-bottom: 160px;
}

.color-white {
    color: var(--white-primary);
}

footer {
    background-color: var(--grey-primary);
    padding: 40px 0;
}

.text-center {
    text-align: center;
}

.dot {
    display: block;
    background-color: var(--white-primary);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin-right: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Aniamtions */
.o-me {
    opacity: 0;
    transition: all .5s ease;
}

.fadein-top {
    transform: translateY(-10px);
}

.content-visible{
    opacity: 1;
    transform: translate(0);
}

.fs-14px {
    font-size: 14px;
}

@media (max-width: 1120px) {
    .ptb-80 {
        padding: 40px 0;
    }

    .container {
        padding: 0 40px;
    }

    .base-article {
        padding-bottom: 3rem;
    }

    .mb-xs-0 {
        margin-bottom: 0;
    }
}

@media (max-width: 1028px) {
    .hero-wrapper {
        position: relative;
        transform: translate(0);
    }
    
    .nav-link {
        color: var(--gold-primary);
    }

    .dot {
        background-color: var(--gold-primary);
    }

    .hero-img {
        margin-bottom: 40px;
    }
    
}

@media (max-width: 600px) {
    .container {
        padding: 0 24px;
    }

    * {
        --base-text: 16px;
    }

    h1, h1 > span {
        font-size: 46px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .dot {
        width: 100%;
        height: 1px;
        margin: 4px 0;
    }
        
}