:root {
    --hsw-green: #207020;
    --hsw-green-dark: #185918;
    --hsw-green-soft: #207020;
    --hsw-accent: #207020;
    --hsw-cream: #f7f3ea;
    --hsw-dark: #101810;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--hsw-dark);
    background: #fff;
}

.site-navbar {
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}

.site-navbar.scrolled {
    background: rgba(255,255,255,.9);
    padding-top: .6rem;
    padding-bottom: .6rem;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: .01em;
    padding: 0;
}

.site-logo {
    display: block;
    width: 230px;
    max-width: 52vw;
    height: auto;
    max-height: 86px;
    object-fit: contain;
    transition: width .25s ease, max-height .25s ease;
}

.site-navbar.scrolled .site-logo {
    width: 190px;
    max-height: 52px;
}

.site-navbar .nav-link {
    color: var(--hsw-dark);
    font-weight: 700;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--hsw-green-soft);
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--hsw-dark);
    background: var(--hsw-accent);
    border-radius: 50%;
}

.social-link {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: var(--hsw-green);
    border: 1px solid rgba(32,112,32,.35);
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.social-link:hover {
    color: #fff;
    background: var(--hsw-green-soft);
    border-color: var(--hsw-green-soft);
}

.home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.5s ease-in-out, transform 6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.34), rgba(0,0,0,.56));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    color: #101810;
    background: rgba(32, 112, 32, .96);
    font-weight: 700;
}

.display-title {
    font-weight: 900;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: .95;
    text-wrap: balance;
}

.section-padding {
    padding: 5rem 0;
}

.bg-cream {
    background: var(--hsw-cream);
}

.btn-primary {
    --bs-btn-bg: var(--hsw-green-soft);
    --bs-btn-border-color: var(--hsw-green-soft);
    --bs-btn-hover-bg: var(--hsw-green);
    --bs-btn-hover-border-color: var(--hsw-green);
}

.btn-warning {
    --bs-btn-bg: var(--hsw-accent);
    --bs-btn-border-color: var(--hsw-accent);
    --bs-btn-hover-bg: var(--hsw-green-dark);
    --bs-btn-hover-border-color: var(--hsw-green-dark);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
}

.category-card,
.content-card,
.brand-card {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    overflow: hidden;
}

.category-card {
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(0,0,0,.12);
}

.category-icon {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    background: var(--hsw-green-soft);
    border-radius: 1rem;
    font-size: 1.35rem;
}

.page-header {
    padding: 9rem 0 4rem;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.35)),
        url("../img/hero-vissers-steiger.jpg") center/cover;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
}

.product-section {
    padding: 2rem;
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 14px 38px rgba(0,0,0,.06);
    height: 100%;
}

.product-section h2 {
    display: flex;
    gap: .7rem;
    align-items: center;
}

.placeholder-gallery {
    min-height: 170px;
    border: 2px dashed rgba(25,61,38,.25);
    border-radius: 1rem;
    background: rgba(25,61,38,.04);
    display: grid;
    place-items: center;
    text-align: center;
    color: #47604e;
    padding: 1.5rem;
}

.brand-card {
    height: 100%;
    padding: 1.5rem;
}

.brand-logo {
    min-height: 112px;
    display: grid;
    place-items: center;
    border-radius: .9rem;
    background: #fff;
    border: 1px solid rgba(32,112,32,.12);
}

.brand-logo img,
.brand-strip-item img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.brand-banner {
    background: #fff;
    border-top: 1px solid rgba(32,112,32,.12);
    border-bottom: 1px solid rgba(32,112,32,.12);
}

.brand-strip-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.brand-strip .slick-track {
    display: flex;
    align-items: center;
}

.site-footer {
    color: #fff;
    background: var(--hsw-dark);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .25rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.check-list {
    padding-left: 0;
    list-style: none;
}

.check-list li {
    margin-bottom: .65rem;
    padding-left: 1.9rem;
    position: relative;
}

.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .05rem;
    color: var(--hsw-green-soft);
}

.form-control.is-invalid,
.form-select.is-invalid {
    background-image: none;
}

@media (max-width: 991.98px) {
    .site-navbar,
    .site-navbar.scrolled {
        background: rgba(255,255,255,.96);
    }

    .site-logo {
        width: 190px;
        max-height: 62px;
    }

    .site-navbar.scrolled .site-logo {
        width: 165px;
        max-height: 46px;
    }

    .hero-content {
        padding-top: 7rem;
    }
}


.footer-credit-link {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-credit-link:hover,
.footer-credit-link:focus {
    color: var(--primary-color);
    text-decoration: none;
}
