/* Hero Section Styles - Shared across pages */

.hero-section {
    background: url('../images/inspiration1.webp') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-section h1 {
    font-size: 4rem;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        3px 3px 8px rgba(0, 0, 0, 0.6),
        4px 4px 12px rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}
