/* Scout Manager Marketing Site — Custom Styles */

/* Hero section */
.hero-section {
    background-color: #1a3a5c; /* fallback if image hasn't loaded */
}

/* Feature cards hover effect */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Docs sidebar */
.sidebar {
    position: sticky;
    top: 56px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
}
.docs-nav a:hover {
    color: var(--bs-primary) !important;
}

/* Pricing card highlight */
.pricing-card {
    border: 2px solid var(--bs-primary);
    max-width: 480px;
    margin: 0 auto;
}

/* Checkmark list */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    padding: 0.35rem 0;
    padding-left: 1.75rem;
    position: relative;
}
.check-list li::before {
    content: "\F26A"; /* bi-check-circle-fill */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--bs-success);
    font-size: 1.1rem;
}

/* Blog card — clickable cards */
a.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
a.blog-card:hover .btn {
    background-color: var(--bs-primary);
    color: #fff;
}

/* Blog & Docs content typography */
.blog-content h2,
.docs-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.blog-content h3,
.docs-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Feature section anchors — offset for sticky nav */
[id] {
    scroll-margin-top: 72px;
}
