/*
Theme Name: Brauto Theme
Author: Daniel Nyagah K.
Description: Theme for auto repair services
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: brauto-theme
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
/* Apply Montserrat globally */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold */
}

/* Optional: Adjust specific elements */
.site-title, .menu-primary a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Medium */
}

.page-title-section {
    background-size: cover;
    background-position: center;
    padding: 100px;
    color: #fff; /* Change text color as needed */
    text-align: center;
}

.page-title-section h1 {
	color:#ffffff;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Optional: adds shadow for better readability */
}

.brands-strip {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 20px 0;
        }
        .brand-title {
            font-weight: 600;
            color: white;
            margin-right: 25px;
            white-space: nowrap;
            position: relative;
            display: flex;
            align-items: center;
        }
        .brand-title:after {
            content: "";
            display: block;
            width: 1px;
            height: 30px;
            background: rgba(255,255,255,0.3);
            margin-left: 25px;
        }
        .brand-logo {
            height: 30px;
            margin: 0 15px;
            opacity: 0.8;
            transition: all 0.3s ease;
            filter: brightness(0) invert(1);
        }
        .brand-logo:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        @media (max-width: 768px) {
            .brand-title {
                margin-bottom: 15px;
                text-align: center;
                justify-content: center;
            }
            .brand-title:after {
                display: none;
            }
            .brands-container {
                justify-content: center !important;
            }
        }
.cta-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 4rem 0;
            border-top: 1px solid #dee2e6;
            border-bottom: 1px solid #dee2e6;
        }
        .cta-header {
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        .cta-text {
            color: #495057;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }
        .cta-btn {
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
        }
