:root {
    color-scheme: light only;
}
html {
    -webkit-text-size-adjust: 100%;
}
@media (prefers-color-scheme: dark) {
    html {
        background: #ffffff;
    }
    body {
        background: #ffffff;
        color: #222222;
    }
}
a,
a:visited,
a:hover,
a:active {
    color: #ffffff;
}
a {
    color: #fff;
    text-decoration: none;
}

/* Hover elegante */
.navbar .nav-link:hover {

}

/* Bottone donazione mobile */
.btn-light {
    border-radius: 30px;
}
/* Navbar colore personalizzato */
.bg-danger {
    background-color: #C1121F !important;
}

/* Link moderni */
.modern-link {
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
 color: #ffffff !important;  /* FORZA BIANCO */}

/* Effetto linea animata */
/* Linea animata */
.modern-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;        /* spessore linea */
    background-color: #fff; /* colore linea */
    transition: width 0.3s ease;
}

/* Al passaggio del mouse / focus */
.modern-link:hover::after,
.modern-link:focus::after {
    width: 100%;
}

/* Pulsante DONA */
.donate-btn {
    background: #ffffff;
    color: #C1121F;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}


.hero-section .overlay {
    z-index: 1;
}

.hero-section h1,
.hero-section p,
.hero-section .btn {
    z-index: 2;
}

/* Pulsanti pił eleganti */
.hero-section .btn-warning {
    background-color: #FFC107; /* Giallo caldo */
    color: #111111;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-section .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-section .btn-outline-light {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}
/* Fade-in generico */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulsante rosso del brand */
.chi-siamo .btn-danger {
    background-color: #C1121F;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.chi-siamo .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Fade-in generico */
.la-nostra-visione .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.la-nostra-visione .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulsante rosso brand */
.la-nostra-visione .btn-danger {
    background-color: #C1121F;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.la-nostra-visione .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Card stile moderno */
.obiettivo-card {
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.obiettivo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

/* Fade-in generico */
.i-nostri-obiettivi .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.i-nostri-obiettivi .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Icone grandi e colorate */
.obiettivo-card i {
    transition: transform 0.3s ease;
}

.obiettivo-card:hover i {
    transform: scale(1.2);
}
.project-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

/* immagini stesse dimensioni */
.project-card img {
    width: 100%;
    height: 220px;       /* altezza fissa */
    object-fit: cover;   /* ritaglio senza deformare */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* corpo card flex verticale */
.project-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* bottone sempre allineato */
.project-card .btn-danger {
    background-color: #C1121F;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 15px; /* piccolo spazio sopra il bottone */
}

.project-card .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* fade in */
.i-nostri-progetti .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.i-nostri-progetti .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.project-card .btn-danger {
    align-self: center;
}
/* Sfondo rosso primario */
.cta-unisciti {
    background-color: #C1121F;
}

/* Pulsanti stile premium */
.cta-unisciti .btn-light {
    color: #C1121F;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-unisciti .btn-dark {
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Hover animato */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Fade in */
.fade-in-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer principale */
.footer-main {
    background-color: #111;
}

.footer-logo {
    max-width: 180px;
}

/* Box centrale CTA */
.footer-cta-box {
    background: #1a1a1a;
    border-radius: 12px;
}

/* Link */
.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #C1121F;
}

/* Riga sotto */
.footer-bottom {
    background-color: #000;
    font-size: 14px;
}

/* Credit */
.footer-credit {
    color: #C1121F;
    text-decoration: none;
    font-weight: 600;
}

.footer-credit:hover {
    text-decoration: underline;
}
.footer-contatti {
    padding-left: 90px;
}

@media (max-width: 768px) {
    .footer-contatti {
        padding-left: 0;
    }
}
.footer-logo-box {
    display: inline-block;
    background-color: #ffffff !important;
    padding: 14px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

 /* ============== PAGINA CHI SIAMO ============= */

  .chi-siamo-hero {
    background-color: #C1121F;
}

.chi-siamo-cta {
    position: relative;
    background-image: url("img/chi-siamo/donazione.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* effetto leggero parallax */
    overflow: hidden;
    min-height: 400px;  /* scegli tu */
        display: flex;
        align-items: center; /* centra verticalmente il contenuto */}

/* Overlay scuro */
.chi-siamo-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* intensitą overlay */
    z-index: 1;
}

/* Porta il contenuto sopra l'overlay */
.chi-siamo-cta .container {
    position: relative;
    z-index: 2;
}

/* Bottone pił elegante */
.chi-siamo-cta .btn-light {
    border-radius: 30px;
    transition: 0.3s ease;
}

.chi-siamo-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.situazione-sanitaria {
    background-color: #f8f9fa;
}

/* Box numeri */
.stat-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #C1121F;
}

/* Percentuali */
.cause-box {
    padding: 20px;
}
.ricerca-mercato {
    background-color: #f0f8ff; /* rosso brand */
}

.ricerca-box {
   background-color: #C1121F; /* rosso brand */
    border-radius: 15px;
    transition: 0.3s ease;
}

.ricerca-box:hover {
    background: #EB2835;
    transform: translateY(-5px);
}

.ricerca-box i {
    color: #fff;
}

.cta-donazione {
    background-color: #C1121F; /* rosso brand */
    position: relative;
    overflow: hidden;
}

/* Animazione fade-in al caricamento */
.cta-donazione h2,
.cta-donazione p,
.cta-donazione .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.cta-donazione h2 { animation-delay: 0.1s; }
.cta-donazione p:first-of-type { animation-delay: 0.3s; }
.cta-donazione p:last-of-type { animation-delay: 0.5s; }
.cta-donazione .btn { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Bottone */
.cta-donazione .btn-light {
    color: #C1121F;
    background-color: #fff;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-donazione .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.team-card {
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-img {
    width: 100%;
    height: 300px; /* stessa altezza per tutte le immagini */
    overflow: hidden;
    border-radius: 15px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* mantiene proporzioni e riempie lo spazio */
    display: block;
    transition: transform 0.3s ease;
}

.team-img img:hover {
    transform: scale(1.05);
}

.team p {
    margin-top: 10px;
    font-size: 1rem;
}

/* ============= GOALS ================ */

.goals-img-cta {
    position: relative;
    background-image: url("img/goals/goals.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* effetto leggero parallax */
    overflow: hidden;
    min-height: 400px;  /* scegli tu */
        display: flex;
        align-items: center; /* centra verticalmente il contenuto */}
/* Overlay scuro */
.goals-img-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* intensitą overlay */
    z-index: 1;
}

/* Porta il contenuto sopra l'overlay */
.goals-img-cta .container {
    position: relative;
    z-index: 2;
}

/* Bottone pił elegante */
.goals-img-cta .btn-light {
    border-radius: 30px;
    transition: 0.3s ease;
}

.goals-img-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.goals-content {
    background-color: #f8f9fa;
}

.goals-list p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.goals-list strong {
    color: #C1121F;
}

.goals-section {
    font-size: 1.05rem;
    line-height: 1.7;
}

.custom-list {
    padding-left: 1.2rem;
}

.custom-list li {
    margin-bottom: 0.8rem;
}

.goals-section strong {
    color: #C1121F;
}

/* CTA centrale */
.goals-cta {
    background-color: #C1121F;
    min-height: 350px;
}

.goals-cta .btn {
    border-radius: 30px;
    transition: 0.3s ease;
}

.goals-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.goals-split {
    background-color: #f8f9fa;
}

.split-box {
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s ease;
}

/* BOX PROGETTI */
.progetti {
    background-color: #fff;
    border-left: 6px solid #C1121F;
}

/* BOX VALORI */
.valori {
    background-color: #fff5f5; /* rosso chiarissimo */
    border-left: 6px solid #8B0000;
}

/* Liste */
.split-box ul {
    padding-left: 1.2rem;
}

.split-box li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Hover leggero */
.split-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.goals-timeline {
    background-color: #f8f9fa;
}

.timeline {
    position: relative;
    margin-left: 40px;
    padding-left: 20px;
    border-left: 4px solid #C1121F;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #C1121F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-content {
    font-size: 1.05rem;
    line-height: 1.7;
}
.goals-strategies {
    background-color: #f8f9fa;
}

.strategy-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.strategy-card h5 i {
    color: #C1121F;
}

.goals-strategies .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.goals-strategies .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= I PROGETTI =================== */
.progetto img {
    transition: 0.3s ease;
}

.progetto img:hover {
    transform: scale(1.03);
}

.ospedali-list {

    padding-left: 1.2rem;
}

.ospedali-list li {
    margin-bottom: 0.4rem;
}
/* Sezione CTA progetti */
.cta-progetti {
    background-color: #c00;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-container {
    max-width: 850px;
    margin: 0 auto;
}

/* Titolo */
.cta-progetti h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Paragrafo principale */
.cta-progetti p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Pulsante */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #c00;
    background-color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

/* Nota */
.cta-note  {
    margin-top: 20px;
    font-size: 0.7em;
    color: #ffe5e5;
}
/* Contenitore generale */
.progetti-futuri {
    padding: 60px 20px;
     text-align: center;
}

.progetti-futuri .container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Titolo */
.progetti-futuri h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

/* Wrapper card */
.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Singola card */
.card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    min-width: 280px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Titoli card */
.card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

/* Effetto hover */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Testo card */
.card p {
    line-height: 1.6;
}
/* Icone grandi */
.card-icon {
    font-size: 3rem; /* aumenta qui la grandezza */
    color: #c00;      /* colore icona, ad esempio rosso Better World */
    margin-bottom: 15px;
}

.card-icon .bi {
    display: block;
}

/* ============ UNISCITI A NOI =============== */
.join-hero {
    padding: 70px 20px;
    background-color: #f7f7f7;
}

.join-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.join-text {
    flex: 1 1 450px;
}

.join-text h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.join-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.join-image {
    flex: 1 1 450px;
}

.join-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
/* Contenitore sezione */
.how-to-help {
    padding: 60px 20px;
    background-color: #f7f7f7;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap; /* fa stacking su mobile */
}

/* Video */
.how-video {
    flex: 1 1 350px;
}

.how-video video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Testo */
.how-text {
    flex: 1 1 600px;
}

.how-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.how-text ul {
    list-style: disc inside;
    line-height: 1.7;
     font-size: 1.1rem;
}

.how-text ul ul {
    list-style-type: circle;
    margin-left: 20px;
    line-height: 1.6;
}

.how-text p {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.9rem;
}
.why-support {
    padding: 80px 20px;
    background: linear-gradient(135deg, #c00 0%, #ff6666 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: 900px;
    margin: 0 auto;
}

.why-support h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.why-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.why-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

/* Pulsante */
.why-cta {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2rem;
    color: #c00;              /* testo rosso */
    background-color: #fff;    /* sfondo bianco */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Hover corretto: cambia solo sfondo e mantieni testo rosso */
.why-cta:hover {
    background-color: #ffe5e5; /* leggermente rosato */
    color: #c00;               /* testo resta rosso */
}

/* Fade-in dinamico con JS */
.why-text.visible,
.why-quote.visible,
.why-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================AGRICOLTURA ================ */

.agri-hero{
background:#f4f7f4;
}

.agri-hero h1{
font-weight:700;
}

section h2{
font-weight:600;
}

section ul{
padding-left:18px;
}

/* ============ DONA ============= */


/* METODI */

.donation-methods{
padding:60px 20px;
}

.donation-card{
background:white;
padding:35px;
border-radius:10px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
height:100%;
}

.donation-card i{
font-size:40px;
color:#c00;
margin-bottom:15px;
}

.bank-data{
font-size:18px;
margin-top:10px;
}

  .donation-section{
padding:90px 20px;
background:#f7f7f7;
}

.donation-subtitle{
max-width:650px;
margin:auto;
color:#666;
}


/* CARD */

.donation-card{
background:white;
padding:35px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
cursor:pointer;
transition:0.25s;
height:100%;
border:2px solid transparent;
}

.donation-card:hover{
transform:translateY(-5px);
}

.donation-card i{
font-size:38px;
color:#c00;
margin-bottom:12px;
}

.donation-price{
font-size:30px;
font-weight:700;
margin:10px 0;
}

.donation-card.selected{
border-color:#c00;
background:#fff5f5;
}

/* PIANO EVIDENZIATO */

.featured{
border:2px solid #c00;
}


/* IMPORTI RAPIDI */
  /* IMPORTI RAPIDI */
.quick-donations {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    padding: 12px 25px; /* Leggermente pił grandi */
    border-radius: 50px; /* Forma a pillola pił moderna */
    border: 2px solid #ddd;
    background: white;
    font-weight: 600;
    font-size: 18px; /* Testo pił leggibile */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* STILE PER METTERE IN EVIDENZA 200, 500, 1000 */
.quick-btn.featured-btn {
    border-color: #c00;      /* Bordo rosso come le card */
    background: #fff5f5;     /* Sfondo chiarissimo rosso */
    color: #c00;             /* Testo rosso */
}

.quick-btn:hover {
    border-color: #c00;
    transform: scale(1.05);  /* Leggero ingrandimento al passaggio */
}

/* STATO SELEZIONATO (quando l'utente clicca) */
.quick-btn.selected {
    background: #c00 !important;
    color: white !important;
    border-color: #c00 !important;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
}


.custom-donation-box{
background:white;
padding:35px;
border-radius:12px;
max-width:420px;
margin:auto;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
text-align:center;
}

.custom-donation-box h5{
font-weight:600;
margin-bottom:5px;
}

.custom-donation-text{
font-size:14px;
color:#666;
margin-bottom:10px;
}

.donation-input{
max-width:200px;
margin:auto;
}
.custom-donation-box .input-group{
border:2px solid  ;
border-radius:8px;
overflow:hidden; /* importante per arrotondare anche lo span */
max-width:250px;
margin:auto;
}

.custom-donation-box .form-control{
border:none;
box-shadow:none;
}

.custom-donation-box .input-group-text{
background:#f8f8f8;
border:none;
font-weight:600;
color:#333;
}

/* INPUT */

.donation-input{
max-width:220px;
}


/* PAYPAL */

.paypal-donate-btn{
background:none;
border:2px solid #c00;
border-radius:8px;
 cursor:pointer;
transition:0.25s;
}

.paypal-donate-btn:hover{
border-color:#ff4d4d;
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,0.12);}

.paypal-donate-btn img{
display:block;
height:45px;
width:auto;
}
/* BENEFIT */

.donor-benefits{
padding:60px 20px;
}

.benefit-card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.07);
height:100%;
}

.benefit-card i{
font-size:36px;
color:#c00;
margin-bottom:15px;
}

.join-message{
margin-top:20px;
font-weight:600;
color:#c00;
}

.custodi-speranza{
background:#f8f9fa;
}

.membership-card{
border:0;
border-radius:14px;
transition:0.3s;
}

.membership-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.icon-level{
font-size:40px;
color:#C1121F;
}

.price{
font-size:22px;
font-weight:700;
color:#C1121F;
}

.membership-card ul li{
margin-bottom:8px;
}

.premium{
border-top:4px solid #C1121F;
}

.ambassador{
background:#111;
color:white;
}

.ambassador .price{
color:#fff;
}

.ambassador .icon-level{
color:#fff;
}
/* =========== CONTATTI ================ */

/* CONTATTI GENERALI */

.contact-cards{
padding:90px 20px;
background:#f7f7f7;
}

.contact-card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.contact-card i{
font-size:40px;
color:#c00;
margin-bottom:12px;
}



.contact-section{
padding:90px 20px;
}

.team-member{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.team-photo{
width:65px;
height:65px;
border-radius:50%;
object-fit:cover;
object-position: top;
}

.team-role{
font-size:14px;
color:#666;
}

.team-contact{
font-size:14px;
}

.team-contact i{
color:#25D366;
margin-right:4px;
}