:root {
    --font-primary: "Open Sans", Arial, sans-serif;
    --font-secondary: "Roboto", Arial, sans-serif;
    --text-base: 16px;
    --text-sm: 14px;
    --text-lg: 18px;
    --heading-1: 36px;
    --heading-2: 34px;
    --heading-3: 24px;
    --heading-4: 20px;
    --heading-5: 18px;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

html {
    scroll-padding-top: 85px;
}

::selection {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
    color: #626262;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    min-width: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-primary);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5em;
}

h1 {
    font-size: var(--heading-1);
}

h2 {
    font-size: var(--heading-2);
}

h3 {
    font-size: var(--heading-3);
}

h4 {
    font-size: var(--heading-4);
}

h5 {
    font-size: var(--heading-5);
}

p {
    font-size: var(--text-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1em;
}

a {
    font-weight: inherit;
}

.section_wrapper {
    padding: 0 !important;
}

.top-bar.is-sticky {
    top: 0 !important;
    transition: top 0.3s ease-out;
}

.top-bar:not(.is-sticky) .logo {
    margin: 0 15px 0 10px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: heroFade 9s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 3s; }
.hero-slide:nth-child(3) { animation-delay: 6s; }

@keyframes heroFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    33% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-slider .hero-cta {
    display: inline-block;
    padding: 12px 35px;
    font-size: 24px;
    font-weight: var(--font-weight-semibold);
    color: #fff;
    background-color: rgba(30, 126, 52, 0.9);
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-primary);
    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
    margin-top: 100px;
}

.hero-slider .hero-cta:hover {
    background-color: rgb(30, 126, 52);
    transform: scale(1.05);
}

.hero-slide--1 { background-image: url('../photos/hero/1-1000.webp'); }
.hero-slide--2 { background-image: url('../photos/hero/2-1000.webp'); }
.hero-slide--3 { background-image: url('../photos/hero/3-1000.webp'); }

@media (min-width: 960px) {
    .hero-slide--1 { background-image: url('../photos/hero/1-1600.webp'); }
    .hero-slide--2 { background-image: url('../photos/hero/2-1600.webp'); }
    .hero-slide--3 { background-image: url('../photos/hero/3-1600.webp'); }
}

@media (min-width: 1600px) {
    .hero-slide--1 { background-image: url('../photos/hero/1-2600.webp'); }
    .hero-slide--2 { background-image: url('../photos/hero/2-2600.webp'); }
    .hero-slide--3 { background-image: url('../photos/hero/3-2600.webp'); }
}

@media (min-width: 2600px) {
    .hero-slide--1 { background-image: url('../photos/hero/1-3200.webp'); }
    .hero-slide--2 { background-image: url('../photos/hero/2-3200.webp'); }
    .hero-slide--3 { background-image: url('../photos/hero/3-3200.webp'); }
}

@media only screen and (max-width: 1239px) {
    .top-bar .menu-nav {
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .top-bar .menu-nav ul li a {
        color: #333333;
        font-size: 15px;
        font-family: var(--font-secondary);
        font-weight: var(--font-weight-normal);
    }

    .top-bar .menu-nav ul li a:hover {
        background-color: rgba(35, 134, 54, 0.1);
    }

    .top-bar .menu-nav ul li.current-menu-item > a {
        background-color: rgba(35, 134, 54, 0.15);
        color: #238636;
    }
}

.section-light {
    background-color: #f8f8f8;
}

main {
    background: linear-gradient(to bottom, #b5d333 0%, #5ec7be 25%, #1a8fa8 100%);
}

.section-green {
    background: transparent;
}

.section-services {
    background-color: #fff;
    padding: 60px 20px 40px;
    text-align: center;
}

.section-services h2 {
    font-size: 32px;
    font-weight: var(--font-weight-normal);
    margin-bottom: 0;
}

.section-single-column.section-light h2 {
    color: #000;
    font-size: 38px;
    font-weight: var(--font-weight-light);
    font-family: var(--font-primary);
    text-align: center;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: 0;
}

.section-single-column.section-light .section-subtitle {
    color: #626262;
    font-size: 18px;
    font-weight: var(--font-weight-normal);
    font-family: var(--font-secondary);
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
    line-height: var(--line-height-relaxed);
}

.section-single-column.section-light p {
    font-size: 18px;
    line-height: var(--line-height-relaxed);
}

@media only screen and (max-width: 767px) {
    .section-single-column.section-light h2 {
        font-size: 30px;
    }

    .section-single-column.section-light .section-subtitle {
        font-size: 17px;
    }

    .section-single-column.section-light p {
        font-size: 17px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: block;
    background: #fff;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    margin: 0 auto 15px;
    display: block;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    color: #666666;
    font-size: 17px;
    line-height: var(--line-height-normal);
    margin: 0;
}

.section-single-column.dark .section-header {
    color: #fff;
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-primary);
    text-align: center;
    margin: 0 0 10px 0;
    padding-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: var(--line-height-tight);
}

.section-single-column.dark .section-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: var(--font-weight-normal);
    font-family: var(--font-secondary);
    text-align: center;
    margin: 5px auto 30px auto;
    max-width: 700px;
    padding: 0 20px;
    line-height: var(--line-height-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-single-column.dark .service-intro p {
    font-size: 18px;
    line-height: var(--line-height-relaxed);
}

@media only screen and (max-width: 959px) {
    .section-single-column.dark .section-header {
        font-size: 28px;
        padding-top: 15px;
    }

    .section-single-column.dark .section-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .section-single-column.dark .service-intro p {
        font-size: 17px;
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.map-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

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

.map-open-link {
    text-align: center;
    margin-top: 15px;
}

.map-open-link a {
    color: #fff;
    text-decoration: underline;
}

.section-gallery {
    padding-left: 0;
    padding-right: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width: 959px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }

    .hero-slider .hero-cta {
        padding: 10px 25px;
        margin-top: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid picture:nth-child(n+3) {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 17px;
    }

    p {
        font-size: 17px;
    }

    h1 { font-size: 30px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-services {
        padding: 40px 15px 30px;
    }

    .top-bar .menu-nav ul li a {
        font-size: 17px;
        padding: 14px 20px;
        min-height: 44px;
    }

    .hero-slider .hero-cta {
        font-size: 22px;
        padding: 12px 28px;
    }

    .section-single-column.dark .section-header {
        font-size: 28px;
    }

    .section-single-column.dark .section-subtitle {
        font-size: 15px;
    }

    .section-single-column .service-intro p {
        font-size: 17px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card p {
        font-size: 17px;
    }

    .section-services h2 {
        font-size: 28px;
    }
}
