/* Generale */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: url('img/image.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Contenitore principale */
.container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
}

/* Titolo e descrizione */
.staff-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffcc00; /* Giallo HorizonCraft */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.staff-desc {
    font-size: 18px;
    font-weight: 400;
    color: #ddd;
    margin-bottom: 30px;
}

/* Contenitore Staff */
.staff-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

/* Card Staff */
.staff-card {
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    width: 260px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.15);
}

.staff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.3);
}

/* Immagini Staff */
.staff-card img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #ffcc00;
    box-shadow: 0px 0px 10px rgba(255, 204, 0, 0.5);
}

/* Testi dentro le Card */
.staff-card h2 {
    font-size: 22px;
    color: #ffcc00;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.staff-card p {
    font-size: 16px;
    color: #ddd;
    font-weight: 400;
}

/* Bottone "Torna alla Home" */
.back-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #ffcc00, #ff5722);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.back-btn:hover {
    background: linear-gradient(45deg, #ff5722, #ffcc00);
    transform: scale(1.08);
    box-shadow: 0px 0px 15px rgba(255, 204, 0, 0.5);
}
