/* Stili specifici per la pagina del Training Camp */

/* Contenitore principale della pagina */
.training-camp-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.training-camp-container h1 {
    text-align: center;
    font-size: 3em;
    margin-bottom: 40px;
}

/* Sezione per i singoli luoghi (location-section) */
.location-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Card per ogni luogo */
.location-card {
    display: flex;
    flex-direction: column-reverse;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.location-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-info {
    padding: 25px;
}

.location-info h2 {
    margin-top: 0;
    font-size: 2em;
    color: #333;
}

/* Nota finale */
.note-section {
    background-color: #e9f5ff;
    border-left: 5px solid #007BFF;
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
}

.note-section h3 {
    margin-top: 0;
    color: #000000;
}

/* Responsive design per schermi più piccoli */
@media (min-width: 768px) {
    .location-card {
        flex-direction: row;
    }
    
    .location-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .location-card img {
        width: 50%;
    }

    .location-info {
        width: 50%;
    }
}