﻿:root {
    --brown: #8B5A2B;
    --green: #2F6B2F;
    --light-bg: #faf8f5;
    --text: #333;
    --max-width: 1000px;
    --radius: 10px;
    --font-stack: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

 

 
 .breadcrumb-container {
    margin: 20px 10%;
    background-color: #f2f6f5; /* grigio-verde chiaro, naturale */
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

    .breadcrumb li {
        display: flex;
        align-items: center;
    }

        .breadcrumb li + li::before {
            content: "›";
            padding: 0 8px;
            color: #888;
        }

    .breadcrumb a {
        color: #2b7a78; /* blu-verde naturale */
        text-decoration: none;
        transition: color 0.2s ease-in-out;
        font-weight: 600;
    }

        .breadcrumb a:hover {
            color: #195e5b;
        }

    .breadcrumb .active {
        color: #222;
        font-weight: 600;
        cursor: default;
    }
     .patio-refurbishment-cta {
            background: #f8f6f3;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

            .patio-refurbishment-cta h2 {
                color: #8B5A2B;
                margin-bottom: 0.8rem;
            }

            .patio-refurbishment-cta p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .patio-refurbishment-cta a.highlight-link {
                color: #2F6B2F;
                font-weight: 600;
                text-decoration: underline;
                transition: color 0.3s ease;
            }

                .patio-refurbishment-cta .box-header a.highlight-link:hover {
                    color: #245c24;
                }

 

#Services ul  {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

 ul li {
        margin-bottom: 0.4rem;margin-left:1rem;
    }
ul.stile-brown-green {
  list-style: none;
  padding: 0;
}
ul.stile-brown-green li {
  position: relative;
  padding-left: 2.3rem;
  margin: .6rem 0;
}
ul.stile-brown-green li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 50%;
  border: 2px solid #5a3e1b; /* Marrone */
  color: var(--green);            /* Verde */
  text-align: center;
  font-weight: bold;
}
/* --- Box intro --- */
.box-header {
    background: linear-gradient(180deg, #fff, #f5f3f0);
    border-left: 4px solid var(--green);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* --- Links ai servizi --- */
  .subcats {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
        gap: 1rem;
        margin-top: 1rem;
    }

    .cat-card {
        border: 1px solid #e6e6e6;
        border-radius: 8px;
        padding: 0.75rem;
        background: white;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    }
.service-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .service-links a {
        display: block;
        background: #f8f6f3;
        padding: 1rem;
        border-radius: 8px;
        text-decoration: none;
        border-left: 5px solid var(--green);
        color: var(--text);
        font-weight: 600;
        transition: all 0.3s ease;
    }

      .service-links a:hover {
            background: #eae7e3;
            border-left-color: var(--brown);
        }

/* --- CTA Box --- */
.box-cta {
    background: #f8f6f3;
    border: 1px solid #e4dfd9;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
}

    .box-cta h2 {
        margin-top: 0;
        color: var(--brown);
    }

    .box-cta a.btn {
        display: inline-block;
        background: var(--green);
        color: #fff;
        text-decoration: none;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
        font-weight: 600;
        transition: background 0.3s ease;
    }

        .box-cta a.btn:hover {
            background: #245c24;
        }

.btn-outline-primary {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        color: var(--brown);
        border-bottom: 2px solid var(--brown);
    }
/* --- FAQ --- */
.custom-faq .accordion-button {
    background: #f0eee9;
    color: #333;
    border: none;
    border-radius: 8px;
    text-align: left;
    margin: 10px 0; /* 10px sopra e sotto, 0 a destra/sinistra */
        padding: 1rem; /* aumenta un po' il padding per tocco mobile */
    font-weight: 600;
    cursor: pointer; position: relative;
    padding-right: 2rem;
}

    .custom-faq .accordion-button.active {
        background: var(--green);
        color: #fff;
    }
      .custom-faq .accordion-button .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid #333;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Quando è attivo, ruota la freccia */
  .custom-faq .accordion-button.active .arrow {
    transform: translateY(-50%) rotate(90deg);
}
.custom-faq .accordion-content {
    display: none;
     padding: 1rem 1rem; /* più spazio interno sui contenuti */
    border-left: 3px solid var(--green);
    background: #faf9f7;
    border-radius: 0 0 8px 8px;
}

  

@media (max-width: 600px) {
    .breadcrumb-container {
        margin: 10px 5%;
        padding: 8px 12px;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}
.box-header a, .box-cta a, .patio-pressurewashing-cta a, .patio-services-cta a, .stile-brown-green a {
  color: var(--green);          /* colore principale del link */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent; /* effetto sottolineatura elegante */
}

.box-header a:hover, .box-cta a:hover, .patio-pressurewashing-cta a:hover, .patio-services-cta a:hover, .stile-brown-green a:hover {
  color: var(--brown);          /* colore al passaggio del mouse */
  border-bottom: 2px solid var(--brown);
}

.box-header:visited, .box-cta:visited, .patio-pressurewashing-cta:visited, .patio-services-cta:visited, .stile-brown-greens:visited {
  color: #5a3e1b;               /* variante marrone più scura per link già visitati */
}
