:root {
    --bg-dark: #2A1D1A;
    --bg-footer: #1F1513;
    --text-gold: #C59D5F;
    --text-body: #555555;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* 1. Body & Fixed Navbar Spacing */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    margin: 0;
    padding-top: 72px; /* Prevents fixed-top navbar from overlapping top content */
}

h1, h2, h3, .serif-font {
    font-family: var(--font-serif);
}

.navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 2. Mobile-Friendly Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('/images/barber-pattern.png.jfif') repeat center/350px;
    min-height: 75vh; /* Replaced fixed height with min-height to prevent text overflow on mobile */
    display: flex;
    align-items: center;
    color: white;
    padding: 60px 0; /* Ensures content has breathing room on phone screens */
}

/* 3. Gold Buttons with Mobile Tap Target Padding */
.btn-gold {
    background-color: var(--text-gold);
    color: white;
    border: none;
    padding: 12px 28px; /* Slightly larger tap targets for finger touches */
    border-radius: 4px;
    font-weight: 500;
}

    .btn-gold:hover {
        background-color: #a8834a;
        color: white;
    }

.btn-outline-gold {
    border: 1px solid var(--text-gold);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
}

    .btn-outline-gold:hover {
        background-color: var(--text-gold);
        color: white;
    }

.service-card {
    border: 1px solid #eee;
    border-top: 3px solid var(--text-gold);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-section {
    background-color: var(--bg-dark);
    color: white;
}

.footer-section {
    background-color: var(--bg-footer);
    color: #aaa;
    font-size: 0.9rem;
}

/* 4. Responsive Mobile Tweaks */
@media (max-width: 768px) {
    /* Responsive font sizing for mobile headlines */
    h1, .display-4 {
        font-size: 2.1rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    /* Stack buttons neatly on mobile if they align horizontally */
    .hero-section .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Mobile Hamburger Menu Background & Link Styling */
    .navbar-collapse {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}
