/* Highlight Cards with Background Images */
.highlight-card {
    position: relative;
    padding: var(--space-8);
    background-color: var(--color-charcoal);
    border: 1px solid var(--color-charcoal-light);
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Background image overlay for highlight cards */
.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: opacity var(--transition-base);
    z-index: 0;
}

/* Darken overlay on top of background */
.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0.9) 100%);
    z-index: 1;
}

/* Specific background images for each service type */
.highlight-card:nth-child(1)::before {
    background-image: url('/assets/images/service-classic-cut.jpg');
}

.highlight-card:nth-child(2)::before {
    background-image: url('/assets/images/service-traditional-shave.jpg');
}

.highlight-card:nth-child(3)::before {
    background-image: url('/assets/images/service-facial-treatment.jpg');
}

.highlight-card:hover::before {
    opacity: 0.4;
}

.highlight-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

/* Ensure content is above background */
.highlight-card>* {
    position: relative;
    z-index: 2;
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    margin: 0 auto var(--space-4);
}

.highlight-card__title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-white-off);
    margin-bottom: var(--space-2);
}

.highlight-card__description {
    font-size: var(--text-sm);
    color: var(--color-gray-light);
    margin-bottom: var(--space-4);
}