﻿/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: url('https://images.pexels.com/photos/159862/art-school-of-athens-raphael-italian-painter-159862.jpeg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

    .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
    }

    .hero-text p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

/* Sezioni Generali */
section {
    padding: 60px 0;
}

h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Sezione Servizi */
#servizi {
    background-color: #f8f9fa;
}

.service-icon i {
    color: #007bff; /* Colore primario di Bootstrap */
}

/* Pulsanti */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px 24px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }

.btn-outline-primary {
    padding: 12px 24px;
    font-weight: 600;
}

/* Stile specifico e prioritario per i pulsanti nella barra CTA */
.cta-bar .btn {
    padding: 0.375rem 0.75rem; /* Imbottitura standard di Bootstrap */
    font-size: 0.9rem; /* Dimensione del testo fissa */
    line-height: 1.5; /* Altezza della linea fissa */
    font-weight: 600;
    text-transform: uppercase;
}