/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('/assets/images/madison-kuhn-Z7d-ozrWiQA-unsplash.jpg');
    background-image: -webkit-image-set(
        url('/assets/images/madison-kuhn-Z7d-ozrWiQA-unsplash.jpg') 1x
    );
    background-image: image-set(
        url('/assets/images/madison-kuhn-Z7d-ozrWiQA-unsplash.jpg') type("image/jpeg") 1x
    );
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-background {
        background-position: 60% center;
    }
}

@media (max-width: 768px) {
    .hero-background {
        background-position: 70% center;
    }

    .hero-background::after {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    }
}

@media (max-width: 480px) {
    .hero-background {
        background-position: 75% center;
    }
}