/* ========================================
   SALA PESI - STILI SPECIFICI
   ======================================== */

/* Header Pagina */
.page-header-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid #ff4655;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ff4655;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 20px;
    color: #cccccc;
    font-weight: 400;
}

/* Sezione Descrizione */
.service-description-section {
    padding: 40px 0 60px;
    background-color: #0a0a0a;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ff4655;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.service-text {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
}

/* Features */
.service-features {
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #ff4655;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    min-height: 180px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.3);
    border-color: #ff6b77;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #ff4655;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Galleria */
.gallery-section {
    padding: 60px 0;
    background-color: #0a0a0a;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #ff4655;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gallery-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 70, 85, 0.4);
}

.gallery-placeholder span {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

.gallery-caption {
    text-align: center;
    color: #cccccc;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-text {
        font-size: 16px;
    }
    
    .feature-item {
        min-height: auto;
    }
}