/*
Theme Name: My Custom Theme
Theme URI: https://example.com/my-custom-theme
Author: Antigravity
Author URI: https://example.com
Description: A custom theme with a specific header design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

:root {
    --brand-dark-blue: #1a202c;
    --brand-darker-blue: #0f141f;
    --brand-orange: #f97316;
    --brand-orange-hover: #ea580c;
    --text-white: #ffffff;
    --text-blue-light: #60a5fa;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

/* Header Styles */
.site-header {
    background-color: #1a202c;
    background-color: var(--brand-dark-blue);
    color: #ffffff;
    color: var(--text-white);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 80px;
    /* Adjust based on your logo's aspect ratio */
    width: auto;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--text-white);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: #e5e7eb;
}

.social-icon.facebook {
    color: #2563eb;
}

.social-icon.instagram {
    color: #db2777;
}

.social-icon.yelp {
    color: #dc2626;
}

/* Phone Number */
.phone-number {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.125rem;
}

.phone-icon {
    color: var(--brand-orange);
    margin-right: 0.5rem;
}

/* CTA Button */
.cta-button {
    background-color: var(--brand-orange);
    color: var(--text-white);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--brand-orange-hover);
}

/* Navigation Bar */
.main-navigation-bar {
    background-color: #0f141f;
    background-color: var(--brand-darker-blue);
    border-top: 1px solid #374151;
}

.site-navigation {
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0.75rem 0;
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-menu li a:hover {
    color: var(--brand-orange);
}

.nav-menu li a i {
    margin-left: 0.25rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-dark-blue);
    color: #9ca3af;
    /* Light gray for text */
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.text-orange {
    color: var(--brand-orange);
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social-icons {
    display: flex;
    gap: 0.5rem;
}

/* Reusing .social-icon styles from header, ensure they work here */

.contact-info p {
    margin: 0 0 1rem 0;
    font-size: 0.875rem;
}

.contact-info a {
    text-decoration: none;
}

.text-white {
    color: var(--text-white);
}

.cities-list {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #9ca3af;
}

.copyright-bar {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    /* Darker gray */
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   Home Page Styles
   ========================================= */

/* Hero Section */
.hero-section {
    background-color: #64748b;
    /* Slate gray placeholder, adjust to image if needed */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x800/png?text=Construction+Site+Hero');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 6rem 0 10rem;
    position: relative;
    text-align: left;
}

.hero-content {
    max-width: 800px;
    margin-left: 0;
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.hero-features li {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Feature Cards Section */
.features-section {
    margin-top: -6rem;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.features-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    margin-top: 0;
    letter-spacing: 0.05em;
}

.feature-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* General Section Styles */
section {
    padding: 5rem 0;
}

.bg-light-gray {
    background-color: #f3f4f6;
}

.bg-white {
    background-color: #ffffff;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--brand-dark-blue);
    margin-top: 0;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: #4b5563;
}

.rounded-image {
    border-radius: 1rem;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* About Section */
.about-section p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--brand-dark-blue);
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Protocol Section */
.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--brand-orange);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.step-text h4 {
    margin: 0 0 0.25rem 0;
    color: var(--brand-dark-blue);
    font-size: 1.125rem;
}

.step-text p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding-bottom: 0;
}

.form-group label {
    display: block;
    color: var(--brand-dark-blue);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-sizing: border-box;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    ring: 2px solid var(--brand-orange);
}

/* Responsive utilities */
@media (max-width: 768px) {
    body {
        padding-bottom: 5rem;
    }

    .grid-2-col,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .features-section {
        margin-top: 0;
    }

    .hero-section {
        padding-bottom: 4rem;
    }

    .hero-wave {
        display: none;
    }
}