/*
Theme Name: My Beautiful Sexy Doris Baby
Theme URI: https://electric-joe.co.uk
Author: J Cochrane
Contributers: J Cochrane, T Kolb, B Williams
Author URI: https://electric-joe.co.uk
Description: Professional electrician WordPress theme built for modern electrical service businesses. Clean, responsive, and feature-rich.
Version: 1.0.0
License: GPL v2 or later
Text Domain: my-beautiful-sexy-doris-baby
Tags: electrician, electrical, business, services, responsive, bootstrap
*/

/* =Theme Base Styles
--------------------------------------------- */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: #f0a500;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c97e00;
}

/* Header */
.site-header {
    background: #1a2a3a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
}

.site-header .nav-link {
    color: #fff;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #f0a500;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero .btn {
    margin-top: 20px;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f0a500;
}

/* Services Cards */
.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #f0a500;
    margin-bottom: 20px;
}

/* Areas Served */
.areas-served ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.areas-served li {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

/* Testimonials */
.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #f0a500;
}

/* Contact Section */
.contact-info {
    background: #1a2a3a;
    color: #fff;
    padding: 50px 0;
}

.contact-info a {
    color: #f0a500;
}

/* Footer */
.site-footer {
    background: #0f1a24;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.site-footer a {
    color: #f0a500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}