/* 
 * Home page hero styles - Override apartment-style.css
 */

/* Reset hero carousel styles for home page */
#hero.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#hero .hero-slide {
    position: relative; /* Not absolute like in apartment pages */
    height: 100vh;
    background-size: cover;
    
    background-position: top center;
    display: flex;
    align-items: center;
    opacity: 1; /* Always visible */
}

#hero .hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

#hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeIn 1s ease;
}

#hero .hero-content h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

#hero .hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 20px;
}

#hero .hero-content p {
    font-size: 18px;
    color: var(--light-color);
    margin-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1199px) {
    #hero .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    #hero .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    #hero .hero-content h1 {
        font-size: 36px;
    }
    
    #hero .hero-content h2 {
        font-size: 20px;
    }
} 