/* page FFEscrime  */

.ffe-page-wrapper {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ffe-header {
    text-align: center;
    margin-bottom: 60px;
}

.ffe-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.ffe-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #b82828; /* Ton rouge thématique */
    margin-bottom: 15px;
}

.ffe-description {
    font-size: 1.2rem;
    color: #666;
}

.ffe-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ffe-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #eee;
}

.ffe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgb(80, 13, 13);
}

.ffe-card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.ffe-card-text {
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ffe-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
    color: #ffffff !important;
}

.ffe-btn-primary { background-color: #0056b3; }
.ffe-btn-success { background-color: #28a745; }
.ffe-btn-secondary { background-color: #6c757d; }

.ffe-footer-text {
    text-align: center;
    margin-top: 50px;
    color: #999;
}







