/* CSS Document MAIN */
/* ====== STILI GENERALI ====== */
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f3ce91;   
  color: #5a3e2b;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  
}

section {
  margin-bottom: 3rem;
  padding: 1.5rem;
   background: #faf7ee; 
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

h2 {
  color: #d8682b;
}

a {
  color: #d8682b;
  text-decoration: none; /* per togliere la sottolineatura */
}

.orange-link,
.orange-link:visited,
.orange-link:hover,
.orange-link:active,
.orange-link:focus {
  color: #d8682b;
}
.titolo
{
color:#fff;

}
.cta {
  display: inline-block;
  background: #d8672b;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.btn {
  text-decoration: none;
  background-color: #d8672b;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s;
}

.cta:hover {
  background: #ad4c26;
}

footer {
  background: #4d2432;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Wave Bottom */
.wave-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: waveMove 15s linear infinite;
  opacity: 0.9;
}

.layer2 {
  animation-duration: 20s;
  opacity: 0.8;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.breadcrumb {
  font-size: 0.9rem;
  color: #333;
  width: 97%;
  background-color: #f0f0f0;   /* colore di sfondo del breadcrumb */
  padding: 0.5rem 1rem;        /* spazio interno */
  border-radius: 8px;           /* bordi arrotondati */
  margin-bottom: 1rem;          /* spazio sotto breadcrumb */
  display: inline-block;        /* si adatta al contenuto */
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";  /* separatore */
  margin: 0 0.5rem;
  color: #777;
}

.breadcrumb a {
  text-decoration: none;
  color: #d8682b;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #d8682b;
}


.social-icon:hover {
  transform: scale(1.1); /* effetto al passaggio del mouse */
}
.social-icon {
  width: 32px; 
  height: 32px;
}


