/* assets/css/custom.css */

.navbar {
    background-color: var(--blue);
}

.btn-primary {
    background-color: var(--yellow);
    color: #002856;
    font-weight: bold;
    border: none;
}

.btn-primary:hover {
    background-color: #e6b800;
}

.hero {
    background: linear-gradient(rgba(0,40,86,0.75), rgba(0,40,86,0.75)),
                url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    color: white;
}

footer {
    background-color: var(--blue);
    color: white;
}

.card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: calc(0.375rem + 1px);
    border-top-right-radius: calc(0.375rem + 1px);
}

/* Stili specifici della pagina tesseramento-2026 */
body {
    font-family: system-ui, -apple-system, sans-serif;
}

.volantino-box {
    background: rgba(255,255,255,0.95);
    color: var(--blue);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
    border: 5px solid var(--yellow);
}

.figures-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.volantino-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.volantino-subtitle {
    font-size: 2.2rem;
    color: var(--red);
    font-weight: bold;
}

.cta-box {
    background: var(--green);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
}

@media (max-width: 768px) {
    .volantino-title   { font-size: 2.3rem; }
    .volantino-subtitle { font-size: 1.8rem; }
}