/* --- BRAND COLORS --- */
:root {
    --brand-dark: #0f0f0f;       /* Deeper Black */
    --brand-card: #1a1a1a;       /* Slightly lighter for contrast */
    --brand-orange: #F5821F;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
}

/* --- GLOBAL STYLES --- */
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--brand-dark);
    color: var(--text-white);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
header {
    background-color: rgba(0,0,0,0.95);
    padding: 15px 0;
    border-bottom: 3px solid var(--brand-orange);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 75px;
    width: auto;
}

.phone-cta {
    background-color: var(--brand-orange);
    color: #000;
    padding: 12px 25px;
    font-weight: 800;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(245, 130, 31, 0.4);
}

.phone-cta:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 140px 20px;
    /* Dark overlay for readability */
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('../images/porch.jpg');
    background-size: cover;
    background-position: center;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    border-bottom: 3px solid var(--brand-orange);
    display: inline-block;
    padding-bottom: 10px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background-color: var(--brand-orange);
    color: #000;
    padding: 18px 40px;
    font-weight: 800;
    border-radius: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 80px 0;
    background-color: #121212;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--brand-orange);
    margin: 10px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--brand-card);
    border-radius: 10px;
    padding: 30px;
    border-left: 5px solid var(--brand-orange);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background-color: #252525;
}

.service-card h3 {
    color: var(--brand-orange);
    margin-top: 0;
    font-size: 1.4rem;
}

.service-card ul {
    padding-left: 20px;
    color: #ccc;
}

.service-card li {
    margin-bottom: 10px;
}

/* --- GALLERY SECTION --- */
.gallery-card {
    background: var(--brand-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.gallery-card:hover {
    transform: scale(1.02);
}

.gallery-card img {
    width: 100%;


    footer {
    background-color: #000;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 1px solid #222;
}

footer p {
    color: #888;
}

footer strong {
    color: #fff;
}

.footer-credit {
    margin-top: 20px;
    color: #666;
}

/* --- SOCIAL / EMAIL LINKS IN FOOTER --- */
.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.95rem;
}

.social-links a {
    color: var(--text-gray);
    font-weight: 600;
}

.social-links a:hover {
    color: var(--brand-orange);
}

.social-links .divider {
    color: #444;
}
