: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 { 
/* Gradient overlay for readability */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/Oro-Medonte-farm.jpg'); 
    
    /* This tells the browser to keep the CENTER of the image visible */
    background-position: center center; 
    
    /* Ensures the image scales to fill the container without distorting */
    background-size: cover; 
    
    /* Since your image is only 366px tall, we should set a min-height 
       to prevent it from stretching too thin on large screens */
    min-height: 400px; 
    
    background-repeat: no-repeat;
    color: white; 
    display: flex;
    align-items: center; /* Centers the text vertically in the hero */
    text-align: center;
    padding: 120px 0; /* Increased padding for more visual impact */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Makes text even more readable */
}

/* 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;
                transition: transform 0.3s ease;
}
        .neighborhood-card:hover { transform: translateY(-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: #fffde7; 
            border: 2px dashed #ffd600; 
            border-radius: 8px;
            padding: 20px;
}

.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;
}