/*:root {*/
/*    --site-bg: #f6f1e7;*/
/*    --site-header: #d8c6a3;*/
/*    --site-footer: #d8c6a3;*/
/*    --site-text: #2f2b25;*/
/*    --site-accent: #8a6a3f;*/
/*}*/

:root {
    --site-header: #bfb78e;
    --site-bg: #fff7cf;
    --site-footer: #bfb78e;
    --site-text: #3d381e;
    --site-link: #1e1b55;
    --site-accent: #7270aa;
}

html,
body {
    min-height: 100%;
}

.site-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--site-bg);
    color: var(--site-text);
}

.site-header {
    background: var(--site-header);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.navbar-brand,
.nav-link {
    color: var(--site-text);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--site-accent);
}

.hero-section {
    background: linear-gradient(rgba(20, 20, 20, 0.65), rgba(20, 20, 20, 0.65)),
    url('https://images.unsplash.com/photo-1528715471579-d1bcf0ba5e83?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

main {
    flex: 1;
}

.site-footer {
    background: var(--site-footer);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.card {
    border: none;
}

.min-vh-10 {
    min-height: 10vh;
}

.min-vh-20 {
    min-height: 20vh;
}

.overlay {
    position: absolute;
    inset: 0;
}

h1, h2, h3 {
    letter-spacing: -0.5px;
}

p {
    line-height: 1.8;
}
