/* Reset di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Sfondo generale */
body {
    background: linear-gradient(to right, #004aad, #a2c3ff);
    color: white;
}

/* Effetto Parallasse */
.hero {
    background: url('sfondo_scuola_tennis_tavolo_catania.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Logo grande e responsive */
.logo {
    width: 80%;
    max-width: 600px;
}

/* Sezioni generali */
section {
    padding: 50px 20px;
}

/* Sezione testo */
.intro, .about, .info {
    background: rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    padding: 30px;
    width: 80%;
    border-radius: 10px;
}

/* Lista vantaggi */
ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

ul li {
    font-size: 1.2em;
    margin: 10px 0;
}

/* Pulsanti Social */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: bold;
}

.social-btn img {
    width: 25px;
    height: 25px;
}

.social-btn:hover {
    transform: scale(1.1);
}

.facebook {
    background: #1877f2;
    color: #fff;
}

.instagram {
    background: #e4405f;
    color: #fff;
}

/* Sezione Contatti */
.contact {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background: #ffa500;
}
