/* Custom CSS for SOS Custom Gutters */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #343a40; /* Charcoal for text */
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand img {
    max-height: 80px;
}

.hero {
    background: url('../images/gutter image.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.5rem; /* Increased font size for better readability */
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow for contrast */
}

.hero .lead {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow for contrast */
}

.btn-primary {
    background-color: #e63946; /* Red CTA */
    border-color: #e63946;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

.btn-primary:hover {
    background-color: #d62828; /* Darker Red on hover */
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title p {
    color: #6c757d;
}

.service-item {
    text-align: center;
    margin-bottom: 30px;
}

.service-item .icon {
    font-size: 3rem;
    color: #004f9f; /* Deep Blue */
    margin-bottom: 20px;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.testimonial {
    background-color: #f8f9fa; /* Light Gray */
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.testimonial p {
    font-style: italic;
}

.testimonial .author {
    font-weight: 600;
    margin-top: 10px;
}

.contact-form {
    background-color: #f8f9fa; /* Light Gray */
    padding: 40px;
    border-radius: 8px;
}

.footer {
    background-color: #343a40; /* Charcoal */
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #007bff; /* Lighter Blue on hover */
}

.footer-logo {
    max-height: 40px; /* Adjusted size */
    margin-bottom: 20px;
}
