@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --bs-primary: #006021;
    --bs-primary-rgb: 0, 96, 33;
    --bs-secondary: #5f5e5e;
    --bs-body-color: #1a1c1c;
    --bs-body-bg: #f9f9f9;
    
    --surface: #f9f9f9;
    --on-surface: #1a1c1c;
    --surface-container-lowest: #ffffff;
    --surface-container: #eeeeee;
    --surface-container-high: #e8e8e8;
    --surface-container-highest: #e2e2e2;
    --outline-variant: #bfcabb;
    --outline: #6f7a6d;
    --tertiary: #505252;
    --on-surface-variant: #3f493e;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 32px 32px;
}

h1, h2, h3, h4, h5, h6, .font-headline {
    font-family: 'Hanken Grotesk', sans-serif;
}

.font-label {
    font-family: 'JetBrains Mono', monospace;
}

.bg-surface-container-lowest { background-color: var(--surface-container-lowest); }
.bg-surface-container { background-color: var(--surface-container); }
.bg-surface-container-high { background-color: var(--surface-container-high); }
.bg-surface-container-highest { background-color: var(--surface-container-highest); }

.text-on-surface-variant { color: var(--on-surface-variant); }
.border-outline-variant { border-color: var(--outline-variant) !important; }
.border-outline { border-color: var(--outline) !important; }
.border-tertiary { border-color: var(--tertiary) !important; }

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    border-radius: 0;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #004d1a;
    border-color: #004d1a;
}

.btn-dark {
    border-radius: 0;
    font-weight: 700;
}
.logo{
    max-width: 150px;
}
.navbar-brand .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.nav-link.active {
    color: var(--bs-primary) !important;
    font-weight: bold;
    border-bottom: 2px solid var(--bs-primary);
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.card-brand {
    border-radius: 0;
    border: 1px solid var(--outline-variant);
    transition: all 0.3s;
}

.card-brand:hover {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.brand-img-wrap {
    margin: -2rem -2rem 1.5rem -2rem;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.brand-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-control {
    border-radius: 0;
    background-color: var(--surface-container);
    border: 1px solid var(--bs-body-color);
    padding: 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 96, 33, 0.25);
    border-color: var(--bs-primary);
}

.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    transition: transform 0.3s;
}

.fab:hover {
    transform: scale(1.1);
}