
/* Banner */
#banner {
    background-attachment: scroll, fixed;
    background-color: #666;
    /* This combines the texture overlay with your property banner */
    background-image: url("https://pms.proservllc.com/assets/images/hoa_images/overlay.png"), url("https://pms.proservllc.com/assets/images/hoa_banners/Bay Point Village.avif");
    background-position: top left, center center;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    color: #fff;
    padding: 14em 0 14em 0;
    text-align: center;
    position: relative;
}

#main.container {
    padding-top: 2rem;
    max-width: 1200px;
    /* This pulls the content up over the banner slightly for a modern look */
    margin-top: -8em;
    position: relative;
    z-index: 2;
}

.brand-section {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brand-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card i {
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.accent-blue { color: #3b82f6; }
.accent-green { color: #10b981; }
.accent-orange { color: #f59e0b; }
.accent-red { color: #ef4444; }

@media (max-width: 640px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    #banner {
        padding: 8em 0 8em 0;
    }
    #main.container {
        margin-top: -4em;
    }
}