/* === Burn Rite Chimney Service === */
/* Color Scheme: Warm Fire Tones - Deep Red, Warm Orange, Charcoal */

:root {
    --primary: #9b2c2c;
    --primary-light: #c53030;
    --accent: #dd6b20;
    --warm: #ed8936;
    --dark: #1a202c;
    --gray: #4a5568;
    --light: #fff5f5;
    --light-warm: #fffaf0;
    --white: #ffffff;
    --cream: #faf5ef;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

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

/* Header */
.header-top {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

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

.header-top a {
    color: var(--warm);
    text-decoration: none;
    font-weight: 600;
}

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flame { font-size: 2rem; }

.logo-name {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* Hero */
.hero {
    height: 90vh;
    min-height: 600px;
    background: url('assets/hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,32,44,0.7) 0%, rgba(155,44,44,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--warm);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-full { width: 100%; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warm);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.section-title {
    font-family: 'Merriweather', serif;
    font-size: 2.3rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-text blockquote {
    margin-top: 25px;
    padding: 20px 25px;
    border-left: 4px solid var(--accent);
    background: var(--white);
    font-style: italic;
    color: var(--primary);
    border-radius: 0 8px 8px 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img { width: 100%; display: block; }

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    margin-top: -30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: 10px;
    padding: 35px 25px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--light-warm) 0%, var(--white) 100%);
}

.s-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.service-header {
    margin-bottom: 15px;
}

.service-card h3 {
    font-family: 'Merriweather', serif;
    color: var(--primary);
    margin-bottom: 8px;
}

.price {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.estimate-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--light);
    border-radius: 10px;
    color: var(--dark);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-row {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.c-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 5px;
}

.c-row a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.c-row p {
    color: var(--dark);
    line-height: 1.5;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: 'Merriweather', serif;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid var(--light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.fb-name {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.copy {
    margin-top: 20px;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 130px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 25px; }
    .header-top .container { flex-direction: column; gap: 5px; text-align: center; }
}
