/*
    ==========================================================
    BARBERSHOP BAKI — PUBLIC SITE ENHANCEMENTS
    Loaded AFTER main.css / responsive.css (and after
    appointment-page-style.css on the booking page).
    A pure override layer: replaces the template's generic
    blue accent with a warm brass + charcoal barbershop
    identity and refines typography, spacing and hover states.
    ==========================================================
*/

:root {
    --bb-ink:    #16181f;
    --bb-ink-2:  #222227;
    --bb-brass:  #c9a227;
    --bb-brass-2:#b18d1a;   /* darker hover brass  */
    --bb-brass-3:#e7c65a;   /* lighter brass       */
    --bb-cream:  #fcf9f5;
    --bb-paper:  #ffffff;
}

/* ---------------- Typography ---------------- */

.section_heading h2,
.about_content h2 {
    letter-spacing: 0.01em;
}

.section_heading h3 {
    color: var(--bb-brass);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.heading-line {
    background-color: var(--bb-brass);
    height: 2px;
    width: 70px;
}

/* ---------------- Header / navigation ---------------- */

.mainmenu .nav li a {
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.mainmenu .nav li a:hover {
    color: var(--bb-brass-3) !important;
}

.header-btn .menu-btn {
    background-color: var(--bb-brass);
    border: 1px solid var(--bb-brass);
    color: var(--bb-ink);
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-btn .menu-btn:hover {
    background-color: transparent;
    color: var(--bb-brass-3);
    border-color: var(--bb-brass-3);
}

/* ---------------- Hero carousel ---------------- */

#home-section-carousel .carousel-caption h3 {
    font-family: 'Prata', serif;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

#home-section-carousel .carousel-caption p {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

#home-section-carousel .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 24, 31, 0.25) 0%, rgba(22, 24, 31, 0.05) 45%, rgba(22, 24, 31, 0.55) 100%);
    pointer-events: none;
}

#home-section-carousel .carousel-caption {
    z-index: 2;
}

.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li.active {
    background-color: var(--bb-brass-3);
}

/* ---------------- Buttons ---------------- */

.default_btn {
    background-color: var(--bb-brass);
    color: var(--bb-ink);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.default_btn:before {
    background: var(--bb-ink-2);
}

.default_btn:hover {
    color: #ffffff;
}

/* ---------------- Service boxes ---------------- */

.service_box {
    border: 1px solid #efe9dd;
    border-top: 3px solid transparent;
    border-radius: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service_box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(34, 34, 39, 0.10);
    border-top-color: var(--bb-brass);
}

.service_box i {
    color: var(--bb-brass);
    transition: transform 0.25s ease;
}

.service_box:hover i {
    transform: scale(1.12);
}

/* ---------------- Gallery ---------------- */

.gallery-section .gallery-img {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: saturate(0.92);
}

.gallery-section .gallery-column:hover .gallery-img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.gallery-section .gallery-column {
    overflow: hidden;
}

/* ---------------- Pricing ---------------- */

.pricing_section .price_wrap {
    background: var(--bb-paper);
    border: 1px solid #efe9dd;
    border-radius: 8px;
    padding: 26px 24px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(34, 34, 39, 0.05);
}

.pricing_section .price_wrap h3 {
    background-color: var(--bb-ink-2) !important;
    color: var(--bb-brass-3) !important;
    border-radius: 6px;
    letter-spacing: 0.08em;
}

.pricing_section .price_wrap .price_list li .price,
.pricing_section .price_wrap .price_list li span.price {
    color: var(--bb-brass-2);
    font-weight: 700;
}

/* ---------------- Contact ---------------- */

.contact-form .form-control:focus {
    border-color: var(--bb-brass) !important;
    box-shadow: none;
}

/* ---------------- Footer ---------------- */

.widget_social li a:hover i {
    color: var(--bb-brass-3) !important;
}

/*
    ==========================================================
    BOOKING PAGE (appointment.php)
    ==========================================================
*/

.booking_section .text_header {
    font-family: 'Prata', serif;
    font-size: 20px;
    color: var(--bb-ink-2);
    margin-top: 28px;
}

.items_tab {
    border-radius: 10px;
    border: 1px solid #ece7dc;
    box-shadow: 0 6px 20px rgba(34, 34, 39, 0.06);
}

.itemListElement {
    transition: background-color 0.15s ease;
}

.itemListElement:hover {
    background-color: #fdfaf2;
}

.itemListElement:last-child {
    border-bottom: none;
}

/* Select buttons: brass instead of blue */
.item_label {
    color: var(--bb-brass-2);
    border-color: var(--bb-brass);
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active {
    color: var(--bb-ink);
    background-color: var(--bb-brass-3);
    border-color: var(--bb-brass);
    font-weight: 700;
}

/* Step dots */
.step.finish {
    background-color: var(--bb-brass);
}

.step.active {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

/* Next / previous buttons */
.next_prev_buttons {
    background-color: var(--bb-ink-2);
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease;
}

.next_prev_buttons:hover {
    background-color: var(--bb-brass-2);
}

/* Client details inputs */
.client_details_div .form-control {
    border-radius: 8px;
    border-color: #e7e0d2;
}

.client_details_div .form-control:focus {
    border-color: var(--bb-brass);
}

/* Mobile action bar: neutral shadow instead of blue */
@media (max-width: 768px) {
    .next-prev-buttons {
        box-shadow: 0 4px 22px rgba(34, 34, 39, 0.30);
        border-radius: 12px;
        background: #ffffff;
    }
}
