/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --dark: #1B1B1B;
    --gold: #B87333;
    --cream: #E1DBD2;
    --olive: #7E7B6C;
    --gray: #8D8D8D;
}

body {
    background: var(--dark);
}

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,
h3 {
    font-family: "Marcellus", serif;
    color: var(--cream);
    font-size: 3vw;
    font-weight: 400;
    text-wrap: balance;
}

p,
li {
    color: var(--gray);
    font-size: 1vw;
    font-weight: 400;
    text-wrap: balance;
}

ul {
    color: var(--gray);
    list-style-position: inside;
}

::selection {
    background: #B8733350;
}

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.title_box {
    display: flex;
    flex-direction: column;
}

.title_box span,
.title_box span a {
    color: var(--gold);
    font-size: 1vw;
    font-weight: bold;
}

.info_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.main_btn {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5vw;
    font-size: 1vw;
    text-wrap: nowrap;
}

.main_btn:hover {
    color: var(--gold);
}

.main_btn i {
    transition: .5s;
}

.main_btn:hover i {
    transform: translateX(25%);
}

.cream_section {
    background: var(--cream);
}

.cream_section h2,
.cream_section h3 {
    color: var(--gold);
}

.cream_section p {
    color: #7E7B77;
}

.cream_section .main_btn {
    color: #7E7B77;
}

.cream_section .main_btn:hover {
    color: var(--gold);
}

.cream_section .title_box span {
    color: var(--olive);
}

.fade {
    opacity: 0;
    transition: opacity .4s ease;
}

.fade.show {
    opacity: 1;
}

@media (max-width: 996px) {
    h1,
    h2,
    h3 {
        font-size: 6vw;
    }
    p,
    li {
        font-size: 3.5vw;
    }
    .title_box span,
    .title_box span a {
        font-size: 3.5vw;
    }
    .info_box {
        gap: 4vw;
    }
    .main_btn {
        gap: 1.5vw;
        font-size: 3.5vw;
    }
}