/* 
Theme Name: Reliable Doors - Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Reliable Doors LP Child - Child is a child theme of Twenty Twenty Five, created by the Amsive Team
Author: Amsive
Author URI: https://www.amsive.com
Template: twentytwentyfive
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0
Text Domain: twentytwentyfive
Tags: ne-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* Add your custom styles here */
:root {
    --precision-green: #006747;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
    line-height: 1.6;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--precision-green);
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons and Variations */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;

    &.btn-outline-white {
        border: 2px solid white;
        color: white;

        &:hover {
            background-color: white;
            color: black;
        }
    }

    &.btn-primary {
        background-color: var(--precision-green);
        color: white;
        font-size: 2rem;

        &:hover {
            opacity: 0.9;
        }
    }
}

/* Header */
header {
    background-color: var(--precision-green);
    color: white;
    padding: 0;
    border-bottom: 2px solid white;


    .header-content {
        display: flex;
        justify-content: space-between;
        height: 80px;

        .logo-container {
            position: relative;
            width: 175px;

            .logo {
                width: inherit;
                position: absolute;
                top: 16px;
            }
        }

        .links-container {
            display: flex;
            justify-content: flex-end;
            align-items: center;

            .phone-link {
                color: white;
                font-size: 1.125rem;
                text-decoration: none;
                font-family: "Work Sans", sans-serif;
            }
        }
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/wp-content/themes/reliable-child/assets/images/LP_Repair_Hero_Image.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    display: flex;
    justify-content: center;

    .container {
        width: 100%;
        display: flex;
        justify-content: flex-end;

        .hero-content {
            max-width: 42rem;

            h1 {
                font-size: 3rem;
                font-weight: bold;
                margin-bottom: 1.5rem;
            }

            p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
        }
    }
}

/* Service Offerings Section */
.service-offerings {
    padding: 4rem 0;
    background-color: #ffffff;

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1024px;
        width: 100%;
    }
}

.service-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.services-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.service-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offering-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    h3 {
        color: var(--precision-green);
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* Services Section */
.services {
    padding: 4rem 0;

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 1024px;
        width: 100%;

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
            gap: 2rem;
            width: 100%;

            .service-card {
                background-color: var(--precision-green);
                color: white;
                padding: 2rem;
                border-radius: 0.5rem;
                text-align: center;
                transition: transform 0.3s ease;

                img {
                    width: 64px;
                    height: 64px;
                    margin: 0 auto 1rem;
                }

                h3 {
                    font-size: 1.25rem;
                    font-weight: 600;
                    line-height: 1.4;
                }
            }
        }
    }
}

/* About Section */
.about {
    padding: 4rem 0;

    p {
        max-width: 64rem;
        margin: 0 auto;
        text-align: center;
        font-size: 1.125rem;
    }
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    text-align: center;

    h2.section-title {
        font-size: 3rem;
    }
}



/* Footer */
footer {
    background-color: #333333;
    color: white;
    padding: 2.5rem;

    .footer-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        p {
            font-size: 0.875rem;
        }
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .services-content {
        flex-direction: column;
    }

    .service-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .footer-content {
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}