:root {
    --body-color: #EDE9E6;
    --brand-color: #2f4d71;

    --navbar-color: #080c20;
    --navbar-hover: #b5a7e0;
    
    --article-title: black;
    --article-subtitle: #2d2b36;
    --article-bodytext: #211d2c;
}
/* =============== */
/* FONTS */
/* =============== */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

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

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

.body-color { background-color: var(--body-color); }

/* =============== */
/* NAVBAR */
/* =============== */
.navbar,
.navbar-menu,
.navbar-burger {
    background-color: var(--navbar-color);
}

.navbar-item {
    color: white;
    font-family: SpaceGrotesk;
    text-transform: uppercase;
    font-size: 14px;
    padding-inline: 18px;
    text-align: center;
    align-items: center;
}

.navbar-item:hover {
    background: fixed;
    color: var(--navbar-hover);
    font-weight: bold;
}

/* =============== */
/* FOOTER */
/* =============== */

.footer {
    background-color: var(--navbar-color);
    color: white;
}

.footer p strong {
    color: white;
}

.footer p a {
    text-decoration: none;

    color: white;
}

/* =============== */
/* ARTICLE */
/* =============== */
@media (orientation: landscape) and (min-width: 760px) {

    .article {
        margin-left: 320px;
        max-width: 820px;
    }

    .headline-section {
        width: 1000px;
        max-width: 1400px;
    }

    .headline-img { max-width: 520px; }

}

@media (orientation: portrait) {

    .article { padding-inline: 12px; }
    .headline-section { padding-inline: 12px; }
    .headline-img { padding-inline: 1px; }
}

.headline-img {
    border-radius: 8px;
}

.article-title {
    font-family: 'SofiaSans';
    font-weight: bold;
    color: var(--article-title);
}
.article-subtitle {
    font-family: 'SpaceGrotesk';
    color: var(--article-subtitle);
}

.article > p {
    font-family: 'Inter';
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--article-bodytext);
}

.article img {
    border-radius: 8px;
}

.article a {
    color: var(--article-bodytext);
    text-decoration: underline;
    text-decoration-color: var(--article-bodytext);
}

.article ul {
    list-style-type: square;
    list-style-position: inside;
    margin-left: 16px;
    margin-bottom: 16px;
}

.article blockquote {
    background-color: #dedede;
    border-left: 6px solid var(--brand-color);
    border-radius: 6px;
}

/* =============== */
/* INDEX HERO */
/* =============== */
.hero-background {
    background-image: url('../img/index-hero.avif');
}

.hero-text,
.hero-subtitle {
    color: white;
}

.hero-text {font-family: SofiaSans; }

.hero-subtitle {
    font-family: Inter;
    margin-top: 17px;
}

/* =============== */
/* INDEX LATEST NEWS */
/* =============== */
p { font-family: Inter; }

.latest-news {
    margin-top: 24px;
}

.tuxedo-general-title {
    margin-top: 46px;
    font-family: SofiaSans;
}

.card-title {
    font-family: SofiaSans;
}

@media (orientation: portrait) {

    .latest-news,
    .brand-hook {
        padding-inline: 12px;
    }
}

/* =============== */
/* REASON TO STAY */
/* =============== */
.badge-color {
    color: var(--brand-color);
}

/* =============== */
/* ABOUT US */
/* =============== */
.about-section {
    @media (orientation: landscape) and (min-width: 760px) {
        margin-left: 320px;
        max-width: 820px;
    }
    @media (orientation: portrait) {
        padding-inline: 12px;
    }
}

.about-section {
    margin-top: 140px;
    margin-bottom: 26px;
    padding-bottom: 240px;
}

.about-section p {
    padding: 24px;
    padding-bottom: 32px;
}