:root {
    //--primary-background-color: #f5f5eb;
    --primary-background-color: #f5f5e1;
    --primary-text-color: #333;
    --secondary-background-color: #94C11F;
    --header-search-color: green;
    --footer-background-color: ghostwhite;
    --footer-foreground-color: #222;
    --border-line-color: #f1861d;
}

html {
    margin: unset;
    padding: unset
}

body {
    padding: 0;
    margin: 0;
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: var(--primary-background-color);
    background-image: url(/media/a0qleiso/scribble-light.png);
    font-size: 1.1rem;
}

.content-body {
    background-color: var(--primary-background-color);
    background-image: url(/media/a0qleiso/scribble-light.png);
    padding-bottom: 4rem;
}

img.header_logo {
    height: 80px;
}

header {
    border-bottom: 5px solid var(--secondary-background-color);
    box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-background-color);
    background-image: url(/media/a0qleiso/scribble-light.png);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    background-color: var(--primary-background-color);
    background-image: url(/media/a0qleiso/scribble-light.png);
}

.menu-toggle {
    font-size: 3rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-background-color);
    margin-right: 20px;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    list-style: none;
    padding: 0;
    text-align: center;
}

    .nav-links.show {
        display: flex;
        width: 100%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.8);
    }

        .nav-links.show li {
            list-style: none;
            text-align: center;
            margin: 15px 0px;
            width: 100%;
            font-size: 1.2em;
        }

a {
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer !important;
    color: #00c;
}

    a:hover {
        text-decoration-thickness: 3px;
    }


.nav-links.show li a, .nav-links li a {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: white;
    cursor: pointer;
    text-shadow: 1px 1px 3px black;
    transition: ease-in-out 0.3s;
}

    .nav-links.show li a:hover, .nav-links li a:hover {
        text-decoration-thickness: 3px;
    }

.heart-hover:hover::before {
    background-image: url(/media/frjclsyj/hwheart.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    opacity: 1;
}
.heart-hover::before {
    content: '';
    position: relative;
    height: 20px;
    aspect-ratio: 1 / 1;
    width: 100%;
    left: calc(100% * 0.5);
    top: 20px;
    transform: translate(-50%, -100%);
    -ms-transform: translate(-50%, -100%);
    display: inline-block;
    transition: opacity 0.3s linear;
    opacity: 0;
}

.search-container {
    display: none;
    z-index: 100; 
    height: 40px;
    justify-content: flex-end;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
    border: 1px solid #999;
}

.search-input {
    position: relative;
    margin: 0 5px 0 5px;
    top: -3px;
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    padding: 0.5rem;
    color: #333;
    min-width: 0;
    border-radius: 50px;
    display: inline;
    width: inherit !important;
}

    .search-input::placeholder {
        color: #aaa;
        font-size: 1rem;
    }

.search-button {
    position: relative;
    top: 2px;
    background-color: var(--secondary-background-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-shrink: 0;
    transition: ease-in-out 0.3s;
}

.search-button:hover {
    background-color: #739717;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-icon {
    filter: brightness(0%) invert(1);
    padding: 2px;
    transform: translate(1px, 2px);
}

.search-container_mob {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 90%;
    box-sizing: border-box;
    margin-left: 5%;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #999;
}

.search-input_mob {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1.1rem;
    padding: 0.5rem;
    color: #333;
    min-width: 0; /* prevents overflow */
    border-radius: 50px;
}

    .search-input_mob::placeholder {
        color: #aaa;
    }

.search-button_mob {
    background-color: var(--secondary-background-color);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-shrink: 0;
}

.search-container_mob #main-search {
    width: 100%;
    display: inherit;
    margin: 0;    
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 50px;
    border-bottom: 5px solid var(--secondary-background-color);
    box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.1);
}

.carousel__track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel__slide {
    min-width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__content {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 30px 0px 30px 0px;
    color: white;
}

.carousel__heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.carousel__cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #4A7732;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: ease-in-out 0.2s;
}


.carousel__cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    background-color: #5b8c3d;
}


.carousel__button {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    line-height: 0;
}

.carousel__button--prev {
    left: 1%;
}

.carousel__button--next {
    right: 1%;
}


.tile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    padding-bottom: 8rem;
}

.tile-grid__item {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;
    border-radius: 15px 0px 15px 0px;
    overflow: hidden;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.1);
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
    margin-top: 25px;
}

.tile-grid__item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 20px rgba(0, 0, 0, 0.12),   /* main soft shadow */
        0 4px 8px rgba(0, 0, 0, 0.08);     /* ambient shadow */
}

.tile-grid__item:hover .tile-grid__image {
    filter: brightness(1.05);
    transition: filter 0.25s ease;
}

.tile-grid__image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.tile-grid__label {
    padding: 0.5rem 0rem;
    display: inline-flex;
    width: 100%;
    height: 2.5rem;
    padding-left: 1rem;
    align-items: center;
}

    .tile-grid__label span {
        text-align: center;
        width: 69%;
        font-size: 1.2rem;
        margin: auto;
    }

.tile-grid__icon {
    border-radius: 500px;
    height: 3rem;
    width: 3rem;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    top: 3px;
}

.tile-grid__icon-block {
    width: 3.5rem;
    height: 3.5rem;
    background-color: white;
    border-radius: 50px;
    justify-content: center;
    display: flex;
    vertical-align: middle;
    margin: 3px;
    position: relative;
    top: 193px;
    box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.1);
}

/* Color modifiers */
.tile-grid__item--green .tile-grid__label {
    background-color: #598148;
}

.tile-grid__icon--green {
    border: 1px solid #598148;
    filter: brightness(0) saturate(100%) invert(43%) sepia(54%) saturate(337%) hue-rotate(58deg) brightness(94%) contrast(90%);
    transform: rotate(30deg);
}

.tile-grid__item--orange .tile-grid__label {
    /*background-color: #D8853F;*/
    background-color: #6b6f3e;
}

.tile-grid__icon--orange {
    /*border: 1px solid #D8853F;
    filter: brightness(0) saturate(100%) invert(62%) sepia(57%) saturate(752%) hue-rotate(335deg) brightness(93%) contrast(80%);*/
    filter: brightness(0) saturate(100%) invert(38%) sepia(54%) saturate(328%) hue-rotate(26deg) brightness(96%) contrast(88%);
    border: 1px solid #6b6f3e;
}

.tile-grid__item--purple .tile-grid__label {
    background-color: #814868;
}

.tile-grid__icon--purple {
    border: 1px solid #814868;
    filter: brightness(0) saturate(100%) invert(34%) sepia(7%) saturate(3570%) hue-rotate(274deg) brightness(89%) contrast(83%);
}

.tile-grid__item--red .tile-grid__label {
    background-color: #B14E4E;
}

.tile-grid__icon--red {
    border: 1px solid #B14E4E;
    filter: brightness(0) saturate(100%) invert(42%) sepia(12%) saturate(2096%) hue-rotate(314deg) brightness(91%) contrast(99%);
}

.tile-grid__item--blue .tile-grid__label {
    background-color: #485981;
}

.tile-grid__icon--blue {
    border: 1px solid #485981;
    filter: brightness(0) saturate(100%) invert(32%) sepia(14%) saturate(1372%) hue-rotate(184deg) brightness(99%) contrast(90%);
}

.tile-grid__item--lime .tile-grid__label {
    background-color: #488159;
}

.tile-grid__icon--lime {
    border: 1px solid #488159;
    filter: brightness(0) saturate(100%) invert(45%) sepia(18%) saturate(866%) hue-rotate(85deg) brightness(93%) contrast(91%);
}

.tile-grid__item--indigo .tile-grid__label {
    background-color: #594881;
}

.tile-grid__icon--pink {
    border: 1px solid #935656;
    filter: brightness(0) saturate(100%) invert(35%) sepia(4%) saturate(4391%) hue-rotate(314deg) brightness(106%) contrast(86%);
}

.tile-grid__item--pink .tile-grid__label {
    background-color: #935656;
}

.tile-grid__icon--indigo {
    border: 1px solid #594881;
    filter: brightness(0) saturate(100%) invert(27%) sepia(9%) saturate(3180%) hue-rotate(217deg) brightness(102%) contrast(84%);
}

.tile-grid__tag {
    display: inline-flex;
}

.embedded-webmap-container {
    padding-top: 15px;
}

/* Tablet: 2 per row */
@media (min-width: 600px) {
    .tile-grid__item {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* Desktop: 4 per row */
@media (min-width: 1024px) {
    .tile-grid__item {
        flex: 1 1 calc(25% - 1rem);
        max-width: calc(25% - 1rem);
    }
}

.content-area {
    width: 90%;
    margin: auto;
    margin-top: 3rem;
    padding-bottom: 3rem;
}

    .content-area h1, .content-area h2, .content-area h3, .content-area h4 {
        font-weight: 500;
        margin: 2rem 0 1rem 0;
        line-height: 150%;
    }

    .content-area p {
        margin: 0.5em 0 0.5em 0;
        line-height: 150%;
    }

        .content-area p strong {
            font-weight: 500;
        }

    .content-area li p {
        margin: 0.5em 0;
    }

    .content-area img {
        width: 100%;
        height: auto;
        border-radius: 10px 0px 10px 0px;
        box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.1);
        border-bottom: 8px solid var(--secondary-background-color);
    }

.content-area--flex img {
    margin-bottom: 20px;
}

.container img {
    border: unset;
    border-radius: unset;
}

.content-area ol li {
    border-bottom: 1px solid #9c9c9c;
}

.content-area ol li:last-child {
    border-bottom: none;
}

.child-item {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .4rem;
    margin-top: 0.7rem;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.1);
}

.child-title {
    text-align: left;
}

.child-item img {
    width: 100%;
    height: 15rem;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: none;
}

div.child-title a {
    color: #4a6b3b;
}

.div.child-title a:hover {
    color: #5b8349;
}

div.child-title a h2 {
    margin: 0.5rem 0rem;
    color: #4a6b3b;
}

    div.child-title a h2:hover {
        color: #5b8349;
    }

.child-summary {
    font-size: 1.1rem;
    line-height: 150%;
}

.child-readmore {
    padding: 10px 0px 20px 0px;
    margin-top: 10px;
    text-align: center;
    vertical-align: middle;
}

    .child-readmore a {
        padding: 10px;
        vertical-align: middle;
        text-align: center;
        background-color: #598148;
        border-radius: 3px;
        color: #fff;
        transition: ease-in-out 0.1s;
    }

        .child-readmore a:hover {
            background-color: #629051;
        }

.pageDetails {
    background-color: #fff;
    background-image: url(/media/a0qleiso/scribble-light.png);
    //border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.1);
    //border-bottom: 8px solid var(--secondary-background-color);
    max-width: 800px;
    padding: 15px;
    //margin: 1rem 0;
    margin: auto;
}

.pageDetails p {
    padding: 0rem 1rem;
    font-size: 1.2rem;
    font-family: sans-serif;
}

.search-item {
    margin: 0px 0px;
    border-bottom: 1px solid #ccc;
    padding: 10px 10px;
    transition: ease-in-out 0.3s;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.search-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.search-item p {
    margin: 0.5rem 0rem !important;
}

.search-item-title {
    font-size: 1.2rem;
}

.search-item-title a h2 {
    margin: 0.5rem 0rem;
}

.search-item-link {
    color: #017b29;
    font-size: 1rem;

}

.search-item-summary {
    font-size: 1rem;
    margin: 0 !important;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

nav.pagination {
    padding-top: 1rem;
    text-align: right;
}

nav.pagination ul {
    display: inline-flex;
    margin: 0;
    padding: 0
}

nav.pagination ul li {
    list-style: none;
    margin: 0;
    padding: 0.5rem;
}

nav.pagination ul li a {
    color: var(--header-search-color);
    transition: ease-in-out 0.2s;
}

nav.pagination ul li.active {
    background-color: var(--header-search-color);
    color: #fff;
    border-radius: 5px;
}

.results-count {
    text-align: right;
    color: #555;
    padding: 0;
}

div.walks-tags ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

div.walks-tags ul li {
    display: inline-flex;
    background-color: #4a6b3b;
    color: #fff;
    padding: 0.2rem 0.8rem;
    margin: 0.5rem 0rem;
    border-radius: 50px 10px 50px 10px;
    font-size: 1rem;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.1);
}


div.walks-tags ul li.tag-left {
    padding-left: 1.2rem;
}

.brushframe {
  --panel-border: #b8a56a;
  --panel-bg: #ffffff;

  background-color: var(--panel-bg);
  color: #1f1f1f;

  border: 16px solid transparent;
  border-image-source: url("/media/rtpkaufn/brushframe.svg");
  border-image-slice: 16;
  border-image-repeat: stretch;

  padding: 1rem;
  margin: 1rem 0;
}

footer {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    border-top: 5px solid #D8853F;
    background-color: #222022;
}

.wdc-footer__area {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-auto-flow: row;
    padding-top: 10px;
}

.wdc-footer__services, .wdc-footer__findoutabout, .wdc-footer__terms {
    margin: 0;
    padding: 0px 5% 0px 5%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

    .wdc-footer__services ul li img {
        width: 80%;
        max-width: 150px;
        margin: 10px;
        filter: brightness(0.9);
    }

.wdc-footer__findoutabout {
    border-left: 1px solid #9c9c9c;
    border-right: 1px solid #9c9c9c;
}

.wdc-footer__area ul {
    list-style: none;
    margin: 0;
}

    .wdc-footer__area ul li {
        margin: 18px 0px;
    }

        .wdc-footer__area ul li a {
            color: #fff;
            text-decoration-thickness: 1px;
            text-underline-offset: 5px;
        }

            .wdc-footer__area ul li a:active {
                color: #fff;
            }

            .wdc-footer__area ul li a:visited {
                color: #fff;
            }

            .wdc-footer__area ul li a:focus {
                text-decoration-thickness: 2px;
            }

            .wdc-footer__area ul li a:hover {
                text-decoration: underline;
                text-decoration-thickness: 3px
            }

.wdc-footer__social {
    /*grid-area: social;*/
    text-align: center;
}

    .wdc-footer__social h3 {
        margin-bottom: 0;
    }

.wdc-footer__copyright {
    grid-area: copyright;
    text-align: center;
}

    .wdc-footer__copyright a p {
        padding: 25px;
    }

    .wdc-footer__copyright a {
        color: #fff;
        text-decoration: none;
    }

.wdc-footer__socialul {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

ul.wdc-footer__socialul li {
    list-style: none;
    margin: 15px;
}

    ul.wdc-footer__socialul li a img {
        height: 32px !important;
        max-height: 32px !important;
        transition: transform 0.3s ease;
    }

        ul.wdc-footer__socialul li a img:hover {
            transform: scale(1.1);
        }


@media only screen and (max-width: 768px) {
    .wdc-footer__findoutabout {
        border-right: unset;
    }
}

@media only screen and (max-width: 541px) {
    .wdc-footer__findoutabout {
        border: unset;
    }

    ul.wdc-footer__socialul li {
        list-style: none;
        margin: 10px;
    }

        ul.wdc-footer__socialul li a img {
            width: 40px;
            height: 40px;
        }
}

@media (min-width: 768px) {
    /* Medium devices (tablets) */
    .content-area {
        width: 80%;
        margin-top: 4rem;
    }

    /*.content-area img {
    width: 60%;
    height: auto;
  }*/

    .content-area--flex {
        display: inline-flex;
        margin: 20px 0px;
    }

        .content-area--flex img {
            margin: 0px 20px;
            height: auto;
        }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        padding: 0;
        flex: 1 1 30%;
        justify-content: space-around;
        flex-wrap: wrap;
    }

        .nav-links li {
            margin: 5px 2px;
        }

            .nav-links.show li a, .nav-links li a {
                text-shadow: unset;
                color: #333;
            }

    .search-container_mob {
        display: none;
    }

    .search-container {
        display: flex;
        margin-right: 10px;
        margin-top: 10px;
    }

    .search-input {
        width: 100px;
    }

    img.header_logo {
        height: 50px;
    }

    .nav-links.show {
        box-shadow: unset;
        backdrop-filter: unset;
        background-color: unset;
    }

    .carousel__heading {
        font-size: 3rem;
    }

    .carousel__cta {
        font-size: 1.2rem;
    }

    /*  .child-item img {
    width: 16rem;
    height: 9rem;
    display: inline-block;
    float: left;
  }

  .child-title {
    display: block;
    vertical-align: top;
    padding-left: 1rem;
  }

  .child-summary {
    vertical-align: top;
    display: block;
    width: 100%;
    padding: 1rem;
  }
*/

    .child-item img {
        height: 200px;
        width: 200px;
        border-bottom: none;
    }
}

@media (min-width: 1124px) {
    /* Large devices (small laptops/desktops) */
    body {
        font-size: 1.1rem;
    }

    .content-area {
        width: 60%;
        margin: auto;
        margin-top: 5rem;
    }

        .content-area img {
            width: 40%;
            height: auto;
        }

    .search-container {
        margin-right: 5%;
        margin-top: 38px;
    }

    .search-input {
        width: 300px;
        font-size: unset;
    }

    .nav-links {
        justify-content: center;
    }

        .nav-links li {
            margin: 10px;
        }

    img.header_logo {
        height: 120px;
        margin-left: 5%;
    }

    .child-item img {
        width: 16rem;
        height: 9rem;
        display: inline-block;
        border-radius: 10px 0px 0px 10px;
    }
}

.content-area img.img-logo, article.search-item div img.archive-thumbnail {
    height: 100px !important;
    width: unset !important;
    border-radius: unset !important;
    box-shadow: unset !important;
    border-bottom: unset !important;
}