
 *, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

a, button {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='8' fill='rgb(200,150,80)'/%3E%3C/svg%3E") 9 9, pointer;
}


.page-title {
  font-family: serif;
  color:#fff;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase; 
  text-decoration: none;
  
}

.layout {
  display: flex;
  align-items: flex-start;        
  min-height: calc(100vh - 56px); 
}

:root {
  --font-titolo: 'Playfair Display', serif;
  --font-testo: 'Lato', sans-serif;
  --raggio-card: 14px;
  --bordo-pannello: rgba(255, 255, 255, 0.2);
}


.navbar-brand {
  font-family: serif;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
 
 .sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 56px;                      
  height: calc(100vh - 56px);
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #f8f7f4;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sidebar-titolo {
  font-family: var(--font-titolo);
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.sidebar-desc {
  font-family: var(--font-testo);
  font-size: 13px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
}

.sidebar-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-lista li {
  font-family: var(--font-testo);
  font-size: 13px;
  font-weight: 400;
  color: #333;
  padding-left: 16px;
  position: relative;
}

.sidebar-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #a07840;
}

.sidebar-btn {
  display: inline-block;
  margin-top: auto;               
  padding: 10px 18px;
  font-family: var(--font-testo);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background-color: #a07840;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s ease;
}

.sidebar-btn:hover {
  background-color: #7a5a2c;
  color: #fff;
}

@media (max-width: 720px) {
  .layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
 
.container-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}

.fp-card-orizzontale {
  border-radius: var(--raggio-card); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  border-top: 0.5px solid var(--bordo-pannello)
}

.fp-card-orizzontale:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.fp-card-orizzontale img {
  transition: transform 0.5s ease;
}
.fp-card-orizzontale:hover img {
  transform: scale(1.03);
} 

a {
  color: black;
  text-decoration: none;
}

