:root {
    --primary-color: #000000;
    --gold-color: #c6a67d; /* Consistent gold/tan theme */
    --text-color: #ffffff;
    --dark-grey: #1a1a1a;
    --light-grey: #f5f5f5;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Libre Baskerville', serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-main);
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

nav a {
    text-decoration: none;
    color: #000;
    font-size: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: var(--gold-color);
    color: #fff;
}

.btn-gold:hover {
    filter: brightness(1.1);
}

/* Hero Barber */
.hero-barber {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    margin-bottom: 15px;
}

.hero-content .address {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Feature Grid */
.feature-grid-barber {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 350px;
}

.feature-item-barber {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.white-bg {
    background: #fff;
    color: #000;
}

.black-bg {
    background: #000;
    color: #fff;
}

.script-font {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 5px;
}

.script-font:not(.gold-text) {
    color: var(--gold-color);
}

.feature-item-barber h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.feature-item-barber p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* About Barber */
.about-barber {
    background: #000;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.section-title.white {
    color: #fff;
}

.about-text-center {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-center p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.8;
}

/* Services Barber */
.services-barber {
    padding: 100px 20px;
    text-align: center;
}

.centered {
    text-align: center;
}

.subtitle {
    color: #666;
    margin-bottom: 50px;
}

.services-list-barber {
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #333;
}

/* Image Banner */
.image-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner-overlay.dark {
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.banner-subtitle {
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Barber */
.contact-section-barber {
    padding: 100px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.business-hours h3 {
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.hours-row {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #000;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 992px) {
    .feature-grid-barber {
        grid-template-columns: 1fr;
        height: auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h2 {
        font-size: 3rem;
    }
}
/* Force content text to 16px */
.about-text-center p,
.service-item,
.feature-item-barber p,
.subtitle,
.banner-subtitle,
.hours-row,
.contact-detail,
nav a {
    font-size: 16px;
}