/* ----------------------------------------------------
    GLOBAL SETTINGS
---------------------------------------------------- */
:root {
    --orange: #ff8a00;
    --dark: #0f0f0f;
    --dark2: #1a1a1a;
    --text: #ffffff;
    --text-soft: #d6d6d6;

    --font-heading: "Decalotype", sans-serif;
    --font-sub: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;

    --body-weight: 200;
    --sub-weight: 400;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: var(--body-weight);
}

/* ----------------------------------------------------
    HEADER
---------------------------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #000;
    border-bottom: 2px solid var(--orange);
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    display: flex;
    align-items: center;
}

.af {
    font-weight: 700;
}

.bolt {
    color: var(--orange);
    font-size: 34px;
    margin: 0 6px;
    font-weight: 700;
}

.electrical {
    font-family: var(--font-sub);
    font-size: 20px;
    font-weight: var(--sub-weight);
    margin-left: 10px;
}

.logo-left {
    font-family: 'Decalotype', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.logo-left .bolt {
    margin: 0 -2px;   /* pulls the A and F closer to the bolt */
    font-size: 28px;
    color: #ff7a00;   /* your orange */
}

.logo-left span {
    letter-spacing: -2px;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--text-soft);
    font-weight: var(--sub-weight);
}

nav a.active {
    color: var(--orange);
}

.btn-orange {
    padding: 8px 16px;
    background: var(--orange);
    color: #000 !important;
    border-radius: 6px;
    font-weight: 600;
}

/* ----------------------------------------------------
    HERO SECTION
---------------------------------------------------- */
.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    opacity: 0.45;
}

.hero-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 54px;
}

.hero-text p {
    font-size: 20px;
    margin-top: -10px;
    color: var(--text-soft);
}

.btn-orange-lg {
    display: inline-block;
    padding: 14px 32px;
    margin-top: 25px;
    background: var(--orange);
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

/* ----------------------------------------------------
    QUICK SERVICES
---------------------------------------------------- */
.quick-services {
    padding: 60px 40px;
    text-align: center;
}

.quick-services h2 {
    font-family: var(--font-sub);
    font-weight: var(--sub-weight);
    margin-bottom: 30px;
    font-size: 32px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.svc-card {
    background: var(--dark2);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #252525;
}

.svc-card h3 {
    font-family: var(--font-sub);
    font-weight: var(--sub-weight);
    font-size: 22px;
}

/* ----------------------------------------------------
    SERVICES PAGE / ABOUT PAGE / CONTACT PAGE
---------------------------------------------------- */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: var(--dark2);
    border-bottom: 2px solid var(--orange);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 44px;
}

.services-list,
.about-section,
.contact-section {
    padding: 50px 40px;
}

.service-item,
.about-section p,
.contact-box {
    background: var(--dark2);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #252525;
    margin-bottom: 25px;
}

.service-item h2 {
    font-family: var(--font-sub);
    font-weight: var(--sub-weight);
}

.contact-box h2 {
    font-family: var(--font-sub);
}

/* ----------------------------------------------------
    BUTTONS
---------------------------------------------------- */
.btn-outline {
    padding: 10px 22px;
    border: 2px solid var(--orange);
    border-radius: 8px;
    text-decoration: none;
    color: var(--orange);
    margin-top: 10px;
    display: inline-block;
}

/* ----------------------------------------------------
    FOOTER
---------------------------------------------------- */
footer {
    text-align: center;
    padding: 30px;
    color: var(--text-soft);
    background: #000;
    border-top: 2px solid var(--orange);
}
