/* Background image for the entire page */
body {
    background: url('/images/barbershopsandsalons-backdrop.png') no-repeat center center fixed;
    background-size: cover;
}

/* Reuse your existing bootstrap class name, but keep it if already defined globally */
.text-white {
    color: #fff;
}

.hero-text-shadow {
    text-shadow: 0 4px 14px rgba(0,0,0,0.75);
}

/* ===== Glass panel wrapper (THIS is the “card”) ===== */
.salon-opaque-section {
    position: relative;
    max-width: 1250px;
    margin: 0 auto 4.5rem auto; /* vertical gap BETWEEN panels */
    padding: 0; /* keep padding inside the card content */
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
/*    overflow: hidden;*/
}

/* padding inside each panel */
.salon-section-card {
    padding: 2rem 2.5rem;
}

/* Make middle panel a bit lighter so more background shows through */
.salon-features-section {
    background: rgba(0, 0, 0, 0.30);
}

/* ===== Right-side white content card ===== */
.salon-hero-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #111827;
}

/* Pills */
.salon-pill {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 0.6rem 0.9rem;
    font-weight: 600;
}

/* Checklist */
.salon-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .salon-checklist li {
        position: relative;
        padding-left: 1.6rem;
        margin-bottom: 0.65rem;
    }

        .salon-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0.05rem;
            font-weight: 800;
            color: #2563eb;
        }

/* ===== 3 “opaque” feature cards (lighter so you can see the background) ===== */
.salon-info-card {
    background: rgba(255, 255, 255, 0.84); /* tweak 0.80–0.88 */
    border-radius: 1.25rem;
    padding: 1.35rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    border: 1px solid rgba(17, 24, 39, 0.05);
    color: #111827;
    height: auto;
}

/* Secondary button that stays visible on glass backgrounds */
.btn-ghost-light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(2px);
}

    .btn-ghost-light:hover {
        background: rgba(255, 255, 255, 0.22);
        color: #ffffff;
        text-decoration: none;
    }

/* Responsive */
@media (max-width: 991px) {
    .salon-opaque-section {
        margin: 0 auto 3rem auto;
        border-radius: 14px;
    }

    .salon-section-card {
        padding: 1.5rem 1.5rem;
    }
}

