/*
    tarifs.css - Styles pour la page tarifs
    Ce module contient les styles spécifiques à la page tarifs.

    @author Alexandre BURIN
    @version 1.0.0
*/

/* Styles pour la section intro tarifs */
.intro-tarifs {
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.08) 0%, rgba(201, 169, 97, 0.06) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.intro-tarifs h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.3px;
    text-align: center;
}

.intro-tarifs p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Styles pour la section tableau des tarifs */
.tarifs-tableau {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
}

.tarifs-tableau h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.2px;
}

/* Styles pour le tableau des tarifs */
.tarifs-tableau table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tarifs-tableau caption {
    caption-side: top;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.1px;
}

.tarifs-tableau thead {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-brown) 100%);
}

.tarifs-tableau th {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    text-align: left;
    letter-spacing: 0.2px;
}

.tarifs-tableau tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.tarifs-tableau tbody tr:last-child {
    border-bottom: none;
}

.tarifs-tableau tbody tr:hover {
    transform: scale(1.01);
}

.tarifs-tableau tbody tr:hover a {
    color: var(--primary-green);
    text-decoration: none;
}

.tarifs-tableau a {
    text-decoration: none;
    color: inherit;
}

.tarifs-tableau td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.tarifs-tableau td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.tarifs-tableau td:nth-child(2) {
    font-weight: 600;
    color: var(--primary-green);
}

/* Responsive pour les sections tarifs */
@media (max-width: 768px) {
    .intro-tarifs,
    .tarifs-tableau {
        padding: 2rem 1.5rem;
    }

    .intro-tarifs h2 {
        font-size: 1.6rem;
    }

    .tarifs-tableau h2 {
        font-size: 1.4rem;
    }

    .intro-tarifs p {
        font-size: 1rem;
    }

    .tarifs-tableau caption {
        font-size: 1rem;
    }

    .tarifs-tableau th {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .tarifs-tableau td {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .intro-tarifs,
    .tarifs-tableau {
        padding: 1.5rem 1rem;
    }

    .intro-tarifs h2 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .tarifs-tableau h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .intro-tarifs p {
        font-size: 0.95rem;
    }

    .tarifs-tableau caption {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }

    .tarifs-tableau th {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .tarifs-tableau td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
