:root {
    --primary: #2d2d2d;
    --secondary: #8b1a1a;
    --accent: #a52a2a;
    --text: #f0f0f0;
    --text-muted: #c0c0c0;
    --bg-dark: #1e1e1e;
    --bg-card: #333333;
    --nav-bg: #f5f2ee;
    --nav-text: #1a1a1a;
}

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

body {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation - LIGHT bar */
.navbar {
    background: var(--nav-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 55px; }
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--nav-text);
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--nav-text); transition: 0.3s; }

/* Hero - dark slate grey */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.75)), url("../images/hero-main.jpg") center/cover no-repeat;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
    font-family: "Stencil", "ClassicStencil", "Oswald", sans-serif;
    font-weight: 700;
    color: #ffffff;
}
.highlight { color: var(--accent); }
.tagline {
    font-size: 1.3rem;
    color: var(--accent);
    font-family: "Oswald", sans-serif;
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}
.hero-text {
    max-width: 700px;
    margin: 0 auto 35px;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-button:hover { background: var(--secondary); transform: translateY(-2px); }

/* Sections */
.about-preview, .services-preview { padding: 80px 20px; }
.about-preview { background: var(--primary); }
.services-preview { background: var(--bg-dark); }
.about-preview h2, .services-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent);
    font-family: "Oswald", sans-serif;
}
.about-preview p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 30px;
}
.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(165, 42, 42, 0.2);
    transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.service-card h3 { color: var(--accent); margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }
.rates-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--primary);
    padding: 50px 20px 20px;
    border-top: 2px solid var(--accent);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 30px;
}
.footer-logo { height: 40px; margin-bottom: 10px; }
.footer-col h4 { color: var(--accent); margin-bottom: 10px; }
.footer-col p, .footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.85rem; padding-top: 20px; border-top: 1px solid rgba(165, 42, 42, 0.2); }

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--nav-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 2px solid var(--accent);
    }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

/* Page Headers */
.page-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: var(--primary);
}
.page-header h1 {
    font-family: "Stencil", "ClassicStencil", "Oswald", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
}

/* About Sections */
.about-section, .service-detail, .contact-section, .service-area, .cta-section {
    padding: 60px 20px;
}
.about-section { background: var(--bg-dark); }
.about-section.alt, .service-detail.alt { background: var(--primary); }
.service-detail { background: var(--bg-dark); }
.about-section h2, .service-detail h2, .contact-section h2, .service-area h2, .cta-section h2 {
    font-family: "Oswald", sans-serif;
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}
.about-section h3 {
    font-family: "Oswald", sans-serif;
    color: var(--accent);
    font-size: 1.3rem;
    margin: 25px 0 10px;
    text-align: center;
}
.about-section p, .service-detail p, .contact-section p, .service-area p, .cta-section p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
    text-align: center;
}
.role {
    font-family: "Oswald", sans-serif;
    color: var(--accent) !important;
    font-style: italic;
    font-size: 1.1rem !important;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(165, 42, 42, 0.2);
    text-align: center;
}
.contact-card h2 {
    font-size: 1.4rem !important;
    margin-bottom: 15px !important;
}
.phone-number {
    font-size: 1.5rem !important;
    font-weight: 700;
}
.phone-number a {
    color: var(--accent) !important;
    text-decoration: none;
}
.contact-note {
    font-size: 0.9rem !important;
    font-style: italic;
    margin-top: 15px !important;
}

/* CTA Section */
.cta-section {
    background: var(--primary);
    padding: 60px 20px;
}
.service-area {
    background: var(--bg-dark);
    padding: 60px 20px;
}

/* Photo sections with background images */
.photo-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.photo-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.75);
}
.photo-bg .container { position: relative; z-index: 1; }


/* Photo Banners - constrained height */
.section-photo {
    max-width: 800px;
    height: 250px;
    margin: 25px auto;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(165, 42, 42, 0.3);
}
.section-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Classic Stencil Font - LOCAL */
@font-face {
    font-family: "ClassicStencil";
    src: url("../fonts/stencil.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Links - maroon instead of blue */
a {
    color: var(--accent);
    transition: color 0.3s;
}
a:hover {
    color: #cc3333;
}
.footer-col a {
    color: var(--text-muted) !important;
}
.footer-col a:hover {
    color: var(--accent) !important;
}
.nav-links a {
    color: var(--nav-text) !important;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent) !important;
}
