:root {
    --oro-pine: #1b4332;
    --oro-accent: #2d6a4f;
    --oro-highlight: #d8f3dc;
    --oro-dark: #081c15;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--oro-pine) 0%, var(--oro-dark) 100%);
    color: white;
    padding: 70px 0 55px;
}

/* Quick Navigation */
#neighborhood-menu {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.menu-link {
    color: #334155 !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.15s ease-in-out;
}

.menu-link:hover {
    color: var(--oro-accent) !important;
}

/* PDF Promo Strip */
.pdf-promo-strip {
    background: linear-gradient(135deg, var(--oro-pine) 0%, var(--oro-accent) 100%);
    position: relative;
    z-index: 1010;
}

.pdf-promo-strip .badge {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.hover-elevate {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-elevate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Community Cards */
.neighborhood-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.badge-category {
    background-color: var(--oro-highlight);
    color: var(--oro-pine);
    font-weight: 700;
}

/* Ad-Blocker Immune Expert Card */
.neighborhood-partner-showcase {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.neighborhood-partner-showcase img {
    max-width: 100%;
    height: auto;
}

/* Sidebar Elements */
.sidebar-sticky {
    position: sticky;
    top: 80px;
}

.sidebar-ad-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.sidebar-ad-card img {
    width: 300px;
    height: 300px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.ad-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 700;
}