/* Modern Industrial Luxury Theme - V3 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg-black: #0a0a0a;
    --bg-dark-grey: #1a1a1a;
    --text-white: #ffffff;
    --text-grey: #cccccc;
    --accent-silver: #C0C0C0;
    --highlight-gold: #C0C0C0;
    --highlight-gold-hover: #A0A0A0;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p,
span,
li {
    color: var(--text-grey);
    letter-spacing: 1px;
}

/* Components */
.btn-gold {
    background-color: var(--highlight-gold);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    /* Boxy/Industrial */
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--highlight-gold-hover);
    color: #000;
    transform: translateY(-2px);
}

.btn-outline-silver {
    border: 1px solid var(--accent-silver);
    color: var(--accent-silver);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-silver:hover {
    background-color: var(--accent-silver);
    color: #000;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    border-bottom: 1px solid #333;
    padding: 1.5rem 0;
}

.navbar-brand img {
    height: 80px;
    /* Adjust based on logo aspect ratio */
}

.nav-link {
    color: var(--text-white) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--highlight-gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero_bg.jpg');
    /* Placeholder placeholder barber image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    margin-bottom: 0;
}

.services-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/services_header.jpg');
    background-size: cover;
    background-position: center;
}

.section-padding {
    padding: 60px 0;
}

/* Services Page specific */
.sticky-nav-container {
    position: sticky;
    top: 80px;
    /* Below navbar */
    z-index: 900;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #333;
    padding: 15px 0;
    margin-bottom: 30px;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.sticky-nav-container::-webkit-scrollbar {
    display: none;
}

.sticky-nav-link {
    color: var(--text-grey);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #333;
    margin-right: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-nav-link:hover,
.sticky-nav-link.active {
    color: #000;
    background-color: var(--highlight-gold);
    border-color: var(--highlight-gold);
}

.price-list-item {
    border-bottom: 1px dashed #333;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align top for multiline details */
    transition: all 0.3s ease;
}

.price-list-item:hover {
    padding-left: 10px;
    border-color: var(--highlight-gold);
    background-color: rgba(255, 255, 255, 0.02);
}

.price-name {
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.price-description {
    color: #888;
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 0;
    display: block;
}

.price-amount {
    color: var(--highlight-gold);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 30px;
}

background-color: var(--bg-dark-grey);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--highlight-gold);
    margin: 15px auto 0;
}

/* Service Card */
.service-card {
    background-color: transparent;
    border: 1px solid #333;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-silver);
    background-color: #111;
}

.service-icon {
    font-size: 2rem;
    color: var(--highlight-gold);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #050505;
    border-top: 1px solid #333;
    padding: 60px 0;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--text-grey);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--highlight-gold);
}

.social-icon {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--highlight-gold);
}

/* Mobile Optimizations (Phones only) */
@media (max-width: 767px) {

    /* Hide About Us Image */
    #about img {
        display: none !important;
    }

    /* Center Logo in Mobile Navbar */
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0.5rem;
        z-index: 1001;
    }

    /* Increase Navbar Height for Mobile */
    .navbar {
        min-height: 110px;
        padding: 1rem 0;
        /* Adjust padding if needed, but min-height does the work */
    }

    /* Ensure Toggler stays relative */
    .navbar-toggler {
        z-index: 10;
        margin-left: auto;
    }

    /* Push Mobile Menu down below the logo/navbar */
    .navbar-collapse {
        margin-top: 3rem;
        background-color: rgba(10, 10, 10, 0.98);
        /* Ensure separate background if needed */
        padding: 1rem;
    }

    /* Hide Footer Logo on Mobile */
    .footer-logo {
        display: none !important;
    }
}