/* 
* Seaside Media Hero Section Styles
*/

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
    margin-top: 5rem;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#changing-text {
    color: var(--brand-default);
    display: block;
    margin-top: 0.5rem;
    font-size: 4rem;
}

/* Responsive styles for hero section */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    #changing-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 60vh;
    }
    
    #changing-text {
        font-size: 1.8rem;
    }
}
