:root {
    --beige: #f5f1e6;
    --verdino: #a8c7a1;
}
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige);
    color: #333;
}
h1, h2, h3 {
    font-family: 'Lora', serif;
}
.carousel-caption {
    background-color: rgba(168, 199, 161, 0.85);
    padding: 2rem;
    border-radius: 1rem;
}
.hover-shadow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card-title {
    font-size: 1.25rem;
}
.card-text {
    font-size: 1rem;
    line-height: 1.6;
}
.profile-img {
    max-width: 280px;
    border-radius: 50%;
    border: 5px solid var(--verdino);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.carousel-indicators .active {
    background-color: #2c4430; /* pallino attivo leggermente più scuro */
}
.carousel-indicators .menu-pointer {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #3a5a40; /* pallini verdi scuro */
    margin: 0 5px;
}