﻿/* Bottoni */
.btn {
    @apply font-bold py-3 px-6 rounded-lg transition text-center;
}

.btn-primary {
    @apply btn bg-orange-500 hover:bg-orange-600 text-white;
}

.btn-secondary {
    @apply btn border-2 border-blue-600 text-blue-600 hover:bg-blue-50;
}

/* Titoli */
.title-section {
    @apply text-3xl font-bold text-center mb-16;
}

.title-card {
    @apply text-xl font-bold mb-3;
}

/* Card e contenitori */
.card {
    @apply bg-white rounded-lg shadow-md p-6;
}

.card-highlight {
    @apply card shadow-lg transition-transform hover:-translate-y-1;
}

/* Form elements */
.form-input {
    @apply w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500;
}

/* Icone e badge */
.icon-circle {
    @apply bg-blue-100 text-blue-700 rounded-full w-16 h-16 flex items-center justify-center mx-auto mb-4;
}

/* CMS specific classes */
.cms-heading-1 {
    @apply text-4xl font-bold mb-6;
}

.cms-heading-2 {
    @apply text-3xl font-bold mb-4;
}

.cms-paragraph {
    @apply text-gray-600 mb-4;
}

.cms-button {
    @apply btn-primary inline-block;
}
