/* Salon Hero CTA Section */
.salon-hero-cta-section {
    background: #D9D9D9;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for background image readability */
.salon-hero-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.salon-hero-cta-content {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.salon-hero-cta-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .salon-hero-cta-section {
        min-height: 30vh;
    }

    .salon-hero-cta-content h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .salon-hero-cta-content h2 {
        font-size: 24px;
    }
}