:root {
    --muskoka-navy: #0b2545;
    --muskoka-granite: #133c55;
    --muskoka-highlight: #8da9c4;
    --muskoka-light: #eef4f8;
}

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/Muskoka.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 */
}

/* 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(--muskoka-granite) !important;
}

/* PDF Promo Strip */
.pdf-promo-strip {
    background: linear-gradient(135deg, var(--muskoka-navy) 0%, var(--muskoka-granite) 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.25) !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(--muskoka-light);
    color: var(--muskoka-navy);
    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;
}

/* Sticky 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;
}