/* Custom Fonts */
@font-face {
    font-family: 'WorkSans';
    src: url('fonts/WorkSans-Regular.ttf');
}
@font-face {
    font-family: 'Quicksand';
    src: url('fonts/Quicksand-Regular.ttf');
}

/* Base Styles */
body {
    font-family: 'Quicksand', 'Baskerville', serif;
}

.footer {
    font-family: 'WorkSans', serif;
}

/* Sections */
.riga2 {
    background-color: #a3b6a1;
}

.riga3 {
    background-color: #f1efe3;
}

/* Components */
.presentazione {
    font-size: 1.1rem;
}

.img-decorativa {
    max-height: 320px;
    width: auto;
}

/* Stile per gli errori sotto i campi */
.alert-warning {
    font-size: 0.85rem;
    padding: 0.5rem;
    margin-top: 5px;
    border: none;
    background-color: transparent;
    color: #dc3545; /* Colore rosso Bootstrap */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .presentazione {
        padding-right: 0;
        text-align: center;
    }
    .img-decorativa {
        max-height: 200px;
        margin-top: 20px;
    }
}