/* =========================
   Brand Variables
========================= */

:root {
    --forest: #0f2e1d;
    --sand: #d9c7a4;
    --offwhite: #f7f5f2;
    --charcoal: #1a1a1a;
}

/* =========================
   Global Styles
========================= */

body {
    padding-top: 70px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--offwhite);
    color: var(--charcoal);
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    letter-spacing: 1px;
}

/* =========================
   Navbar
========================= */

.navbar {
    background-color: var(--forest) !important;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--sand) !important;
    font-weight: 500;
}

.nav-link:hover {
    color: white !important;
}

/* =========================
   Brand Logo
========================= */

.brand-logo {
    height: 60px;
    width: auto;
}

/* =========================
   Hero Section
========================= */

.hero {
    background: url('/assets/img/hero.jpg') center center / cover no-repeat;
    height: 100vh;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 46, 29, 0.65); /* forest overlay */
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-weight: 300;
}

/* =========================
   Buttons
========================= */

.btn-primary {
    background-color: var(--sand);
    border: none;
    color: var(--forest);
    font-weight: 600;
    padding: 12px 28px;
}

.btn-primary:hover {
    background-color: #cbb98e;
    color: var(--forest);
}

/* =========================
   Sections
========================= */

section {
    padding: 80px 0;
}

.bg-forest {
    background-color: var(--forest);
    color: var(--offwhite);
    padding: 100px 0;
}

.bg-forest h2 {
    letter-spacing: 2px;
    font-weight: 700;
}

.bg-sand {
    background-color: var(--sand);
}

.text-forest {
    color: var(--forest);
}

/* =========================
   Footer
========================= */

footer {
    background-color: var(--charcoal);
    color: var(--sand);
}
