:root {
    --bg-dark: #0a0a0c;
    --bg-card: #121215;
    --text-main: #f5f5f7;
    --text-muted: #8b8b93;
    --accent-gold: #c29d59;
    --accent-gold-hover: #e0b668;
    --border-color: rgba(194, 157, 89, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; } /* THIS ENABLES SMOOTH SCROLLING FOR ANCHORS */

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text, .price, .badge {
    font-family: 'Playfair Display', serif;
}

.text-gold { color: var(--accent-gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; transition: all 0.3s ease; cursor: pointer; border-radius: 2px;
}
.btn-primary { background: var(--accent-gold); color: #000; border: 1px solid var(--accent-gold); }
.btn-primary:hover { background: transparent; color: var(--accent-gold); }
.btn-outline { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
.btn-outline:hover { background: var(--accent-gold); color: #000; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-full { width: 100%; }

/* Top Bar (USER FEEDBACK IMPLEMENTED) */
.top-bar {
    background: #000; color: var(--text-muted); font-size: 13px; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-bar-container { display: flex; justify-content: space-between; align-items: center; }
.tb-left, .tb-right { display: flex; align-items: center; gap: 15px; }
.tb-right a { color: var(--text-muted); text-decoration: none; transition: 0.2s; }
.tb-right a:hover { color: var(--accent-gold); }
.divider { opacity: 0.3; }

/* Header */
.main-header {
    background: rgba(10, 10, 12, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 100;
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-size: 28px; color: #fff; line-height: 1; letter-spacing: 2px; }
.logo i { color: var(--accent-gold); }
.desktop-nav a {
    color: #fff; text-decoration: none; font-weight: 400; margin: 0 20px;
    font-size: 15px; letter-spacing: 1px; transition: 0.3s; position: relative;
}
.desktop-nav a:hover { color: var(--accent-gold); }

/* Hero */
.hero {
    position: relative; padding: 150px 0; min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    background-color: var(--bg-dark); overflow: hidden;
}
.hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0; opacity: 0.5; /* Makes the video slightly darker */
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, var(--bg-dark) 0%, rgba(10,10,12,0.6) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-text { max-width: 800px; margin: 0 auto; }
.badge {
    display: inline-block; border: 1px solid var(--accent-gold); color: var(--accent-gold);
    padding: 8px 16px; font-size: 14px; letter-spacing: 3px; margin-bottom: 30px;
}
.hero h1 { font-size: 70px; line-height: 1.1; margin-bottom: 25px; font-weight: 400; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Sections Common */
.services-section, .barbers-section, .location-section { padding: 100px 0; border-top: 1px solid rgba(255,255,255,0.03); }
.subtext { display: block; color: var(--accent-gold); letter-spacing: 4px; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; }
.section-header h2 { font-size: 46px; margin-bottom: 20px; font-weight: 400; }
.line-break { width: 60px; height: 1px; background: var(--accent-gold); margin: 0 auto 60px auto; }

/* Menu Grid */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.menu-item { margin-bottom: 40px; }
.menu-head { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px dashed var(--border-color); padding-bottom: 8px; margin-bottom: 12px; }
.menu-head h3 { font-size: 24px; font-weight: 400; margin: 0; }
.price { font-size: 24px; color: var(--accent-gold); }
.menu-item p { color: var(--text-muted); font-size: 15px; font-weight: 300; }

/* Barbers */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; text-align: center; }
.barber-card { background: var(--bg-card); padding: 40px 30px; border: 1px solid rgba(255,255,255,0.02); transition: 0.4s; }
.barber-card:hover { border-color: var(--accent-gold); transform: translateY(-10px); }
.barber-img { width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; background: #000; border: 1px solid var(--accent-gold); display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--accent-gold); }
.barber-card h3 { font-size: 28px; margin-bottom: 5px; }
.barber-card .bio { color: var(--text-muted); font-size: 14px; margin-top: 15px; }

/* Location & Contact */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.map-container { background: #000; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; min-height: 400px; }
.map-placeholder { text-align: center; color: var(--text-muted); }
.map-placeholder i { font-size: 40px; color: var(--accent-gold); margin-bottom: 15px; }
.map-address { margin-top: 10px; color: #fff; font-weight: 600; }

.contact-card h2 { font-size: 36px; margin-bottom: 15px; font-weight: 400; }
.contact-card p { color: var(--text-muted); margin-bottom: 30px; font-size: 15px; }

.booking-form { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }
.booking-form input, .booking-form select { background: #000; border: 1px solid rgba(255,255,255,0.1); padding: 15px; color: #fff; font-family: 'Outfit', sans-serif; font-size: 15px; outline: none; transition: 0.3s; }
.booking-form input:focus, .booking-form select:focus { border-color: var(--accent-gold); }

.hours-box { background: #000; padding: 25px; border-left: 3px solid var(--accent-gold); }
.hours-box h3 { font-size: 20px; margin-bottom: 15px; }
.hour-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-muted); font-size: 15px; border-bottom: 1px dashed rgba(255,255,255,0.05); padding-bottom: 5px; }

/* Footer */
.main-footer { padding: 40px 0; background: #000; border-top: 1px solid var(--border-color); text-align: center; color: var(--text-muted); }

@media (max-width: 900px) {
    .menu-grid, .location-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 50px; }
    .hero-buttons { flex-direction: column; }
    .desktop-nav { display: none; }
    .head-btn { display: none; }
    .top-bar { display: none; }
}
