/*=============== HERO SECTION ===============*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__box_salon {
    position: relative;
    width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/salon.jpg') center/cover no-repeat;
    filter: brightness(0.6);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(75, 33, 66, 0.8);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    color: var(--secondary-color);
    cursor: pointer;
}

.hero__box_bar {
    position: relative;
    width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/bar.jpg') center/cover no-repeat;
    filter: brightness(0.6);
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(75, 33, 66, 0.8);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    color: var(--secondary-color);
    cursor: pointer;
}

.hero__box_salon:hover,
.hero__box_bar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(75, 33, 66, 1);
}

.hero__text {
    position: absolute;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__box_bar,
    .hero__box_salon {
        width: 70%;
        height: 180px;
    }
}