/* ============================================
   BLACK BLADE BARBER SHOP - Custom Styles
   ============================================ */

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #d4a853;
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: #e6bc6a;
}

/* Selection */
::selection {
    background: #d4a853;
    color: #0a0a0a;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Hero parallax-like overlay */
.hero-gradient {
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

/* Gold line accent */
.gold-line {
    width: 60px;
    height: 2px;
    background: #d4a853;
    display: inline-block;
}

.gold-line-center {
    width: 60px;
    height: 2px;
    background: #d4a853;
    margin: 0 auto;
}

/* Section heading style */
.section-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4a853;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

/* Card hover effect */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(212, 168, 83, 0.1);
}
.service-card:hover {
    border-color: rgba(212, 168, 83, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Team card */
.team-card {
    transition: all 0.4s ease;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-card:hover .team-overlay {
    opacity: 1;
}

/* Gallery item */
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Price row hover */
.price-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}
.price-row:hover {
    background: rgba(212, 168, 83, 0.05);
    padding-left: 10px;
}

/* Form input focus */
.form-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
    border-color: #d4a853;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
    outline: none;
}

/* Vintage stripe pattern */
.vintage-stripe {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 168, 83, 0.03) 10px,
        rgba(212, 168, 83, 0.03) 20px
    );
}

/* Barber pole animation */
.barber-pole {
    background: repeating-linear-gradient(
        45deg,
        #991b1b,
        #991b1b 10px,
        #ffffff 10px,
        #ffffff 20px,
        #1a1a1a 20px,
        #1a1a1a 30px
    );
    background-size: 42.43px 42.43px;
    animation: pole-spin 1s linear infinite;
}

@keyframes pole-spin {
    0% { background-position: 0 0; }
    100% { background-position: 0 42.43px; }
}

/* Pulse gold */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 168, 83, 0); }
}

.pulse-gold {
    animation: pulse-gold 2s infinite;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Dashed separator */
.separator {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4a853, transparent);
    margin: 2rem 0;
}

/* Number counter style */
.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #d4a853;
    line-height: 1;
}

/* Page banner */
.page-banner {
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.95),
        rgba(26, 26, 26, 0.9)
    );
    border-bottom: 2px solid #d4a853;
}

/* Placeholder image style */
.placeholder-img {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a853;
    font-size: 2rem;
}

/* ---------- Overflow / Tasma Korumasi ---------- */
html, body {
    overflow-x: hidden;
}

*, *::before, *::after {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
