/* Iron & Oak — Classic Barbershop */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --dark-charcoal: #121212;
    --medium-charcoal: #1c1c1c;
    --brass: #c5a059;
    --brass-dark: #a38142;
    --cream: #f4f1ea;
    --text-light: #e5e5e5;
    --text-muted: #999999;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-charcoal);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

a {
    color: var(--brass);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
}

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

.site-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.site-logo span {
    color: var(--brass);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-light);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.current {
    color: var(--brass);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    color: var(--brass);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--brass);
    color: var(--dark-charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--brass);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--brass);
}

/* Services Section */
.services-section {
    padding: 7rem 0;
    background-color: var(--medium-charcoal);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--brass);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--dark-charcoal);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--brass);
}

.service-icon {
    font-size: 3rem;
    color: var(--brass);
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--brass);
    margin-top: 1.5rem;
}

/* About/Craft Section */
.craft-section {
    padding: 7rem 0;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.craft-text h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.craft-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.craft-image {
    position: relative;
    border: 8px solid var(--medium-charcoal);
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.site-footer {
    background-color: var(--dark-charcoal);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--brass);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Legal pages content */
.page-body {
    padding: 150px 0 6rem;
    min-height: 70vh;
}

.page-body h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-body .updated {
    color: var(--brass);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 3rem;
}

.page-body h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.page-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 800px;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .craft-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
