/* ==========================================
   1. RESET & VARIABLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Seamless transitions between sections */
    font-family: 'Cinzel', 'Segoe UI', serif; /* Gives an upscale, masculine feel */
    background-color: #0f0f11; /* Deep rich industrial dark black */
    color: #e5e5e5;
}

body {
    line-height: 1.6;
}

/* ==========================================
   2. NAVBAR
   ========================================== */
.barber-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background-color: rgba(15, 15, 17, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #1f1f24;
}

.barber-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-name {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37; /* Warm vintage gold accent */
}

.barber-nav-links a {
    color: #a3a3a3;
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.barber-nav-links a:hover {
    color: #d4af37;
}

/* ==========================================
   3. HERO SECTION
   ========================================== */
.barber-hero {
    min-height: 100vh;
    /* High-quality industrial dark barbershop stock image */
    background: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    position: relative;
    padding-top: 80px;
}

/* Overlay gives text a high contrast background to read against */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

.hero-content {
    max-width: 750px;
    text-align: center;
}

.hero-subtitle {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #a3a3a3;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.barber-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.barber-btn:hover {
    background-color: #d4af37;
    color: #0f0f11;
}

/* ==========================================
   4. SERVICES SECTION (Spacious Layout)
   ========================================== */
.barber-services {
    min-height: 100vh;
    padding: 8rem 10% 6rem 10%;
    background-color: #141417; /* Alternating layout section depth */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #a3a3a3;
    text-align: center;
    margin-bottom: 5rem;
    font-style: italic;
}

/* Flexbox Menu splits options side-by-side */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    width: 100%;
    max-width: 1100px;
}

.menu-column {
    flex: 1 1 400px; /* Adapts dynamically to desktop or phone views */
}

.menu-column h3 {
    font-size: 1.6rem;
    color: #d4af37;
    text-transform: uppercase;
    border-bottom: 1px solid #2d2d34;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.menu-item {
    margin-bottom: 2.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.item-price {
    color: #d4af37;
}

.item-desc {
    color: #a3a3a3;
    font-size: 0.95rem;
}

/* ==========================================
   5. CREW SECTION
   ========================================== */
.barber-crew {
    min-height: 100vh;
    padding: 8rem 10% 6rem 10%;
    background-color: #0f0f11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.crew-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    width: 100%;
    max-width: 900px;
}

.crew-card {
    background-color: #141417;
    border: 1px solid #1f1f24;
    flex: 1 1 280px;
    max-width: 340px;
    overflow: hidden;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.crew-card:hover {
    border-color: #d4af37;
}

.crew-img {
    width: 100%;
    height: 350px;
    object-fit: cover; /* Keeps the face proportion accurate across crops */
    filter: grayscale(40%); /* Subtle artistic industrial filter */
    transition: filter 0.3s ease;
}

.crew-card:hover .crew-img {
    filter: grayscale(0%);
}

.crew-info {
    padding: 1.5rem;
    text-align: center;
}

.crew-info h4 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.crew-role {
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================
   6. RESPONSIVE MEDIA QUERIES (Mobile View)
   ========================================== */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .barber-navbar {
        padding: 1rem 5%;
    }

    .barber-nav-links {
        display: flex;
        gap: 15px;
    }

    .barber-nav-links a {
        margin-left: 0;
        font-size: 0.8rem;
    }
    
    .menu-container {
        gap: 3rem;
    }
}