@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");

:root {
    --primary-color: #007BFF;
    --secondary-color: #F8F9FA;
    --text-color: #343A40;
    --header-bg: #0056b3;
    --accent-color: #FFD700;
    --button-bg: #e31b6d;
    --button-hover-bg: #c21858;
    --card-bg: #f5f5f5;
    --footer-color: #343A40;

    --primary-font-size: 16px;

    --header-font-size: 2.5em;

    --text-font-size: 1.2em;

}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    padding-left: 0px;
}


header {
    background-color: var(--primary-color) !important;
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand i {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}


.hero {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    height: 40vh;
    object-fit: cover;
    background-image: linear-gradient(to top, rgba(46, 49, 65, 0.8), rgba(46, 49, 65, 0.8)), url("images/hero.jpeg");
    background-size: auto, cover;
    background-position: center;
    display: block;
}

.hero h1 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 0 10px;
    line-height: 1.3;
}

.hero p {
    position: relative;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 0 10px;
    line-height: 1.5;
}


#banner {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #fff;
    text-align: center;
    background: linear-gradient(to top, rgba(46, 49, 65, 0.8), rgba(46, 49, 65, 0.8)), url("/images/banner.jpg");
    background-size: cover;
    background-position: center center;
    padding: 10em 0;
}

#banner p {
    position: relative;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5em;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
    padding: 0 10px;
    line-height: 1.5;
}


#intro {
    padding: 4em 1em;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.col-4 {
    flex: 1 1 300px;
    max-width: 400px;
    background-color: var(--card-bg);
    padding: 2.5em 1.5em;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 3rem;
    color: var(--button-bg);
    margin-bottom: 1em;
}

.actions {
    margin-top: 2em;
}

.button {
    background-color: var(--button-bg);
    color: #fff;
    padding: 0.75em 1.5em;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--button-hover-bg);
}


footer {
    background-color: var(--footer-color);

    color: var(--secondary-color);

    padding: 2em 1em;
    text-align: center;
    font-size: 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.footer-container p {
    margin: 0.5em 0;
    line-height: 1.6;
}

.footer-container a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #FFD700;

}

.footer-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1em;
    justify-content: center;
}

.footer-container ul li {
    display: inline-block;
}

.footer-container ul li a {
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-container ul li a:hover {
    color: #FFD700;

    transform: scale(1.1);

}


@media (max-width: 768px) {
    .footer-container {
        padding: 1em;
        gap: 1em;
    }

    .footer-container ul {
        gap: 0.5em;
    }
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5em;
        top: 35%;
    }

    .hero p {
        font-size: 1em;
        top: 50%;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        background-color: var(--primary-color);
        position: absolute;
        top: 63px;
        left: -100%;
        width: 60%;
        height: 100vh;
        text-align: center;
        padding: 10px 0;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .navbar {
        position: relative;
        z-index: 1000;
    }

    .nav-links.show {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }


    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);

        z-index: 900;

        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }


    .overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .col-4 {
        flex-basis: 100%;
    }

}

.content-section {
    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 2rem;

    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;

}

[class*="service"] {
    background-color: var(--card-bg);
    padding: 2.5em 1.5em;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1.5em;
}


.text {
    flex: 1;

    max-width: 50%;

}


.content_image {
    flex: 1;
    max-width: 50%;
}

.content_image img {
    width: 100%;

    height: auto;
}

.googlemap {
    border: 0;
    margin-top: 1em;
}

.contact-container {
    align-content: center;
    text-align: center;
}


@media (max-width: 768px) {
    .content-section {
        flex-direction: column;

        text-align: center;

    }

    .text,
    .content_image {
        max-width: 100%;

    }
}

.nav-toggle i {
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.nav-toggle i.rotate {
    transform: rotate(180deg);
    opacity: 0;
}


.nav-toggle i.new {
    opacity: 1;
    transform: rotate(0deg);
    transition-delay: 0.3s;
}

.responsive-map-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.responsive-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}