/* formation.css - Styles for the Formation en Hôtellerie et Tourisme page */

/* Hero Section */
.hero-card {
    background: linear-gradient(135deg, #007bff, #6610f2);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.5);
}

.hero-card h1 {
    font-weight: 700;
    font-size: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-card p.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Buttons in Hero */
.hero-card .btn {
    font-weight: 600;
    border-radius: 2rem;
    transition: background-color 0.3s ease;
}

.hero-card .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Divider */
.divider {
    height: 4px;
    width: 5rem;
    border-radius: 2px;
}

/* Profile Cards */
.profile-card {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.profile-card h4 {
    font-weight: 700;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
}

.bg-primary {
    background-color: #007bff !important;
}

.bg-success {
    background-color: #198754 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

/* List with check marks */
.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #198754;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #e9ecef;
    border-radius: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}

/* Specialties Table */
.table-primary {
    background-color: #007bff;
    color: white;
}

.table-hover tbody tr:hover {
    background-color: #e9f5ff;
}

/* Career Cards */
.career-card {
    border-radius: 0.25rem;
    background-color: #f8f9fa;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.border-primary {
    border-color: #007bff !important;
}

.border-success {
    border-color: #198754 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

/* Pedagogical Cards */
.pedagogical-card {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.bg-light-primary {
    background-color: #cfe2ff !important;
}

.bg-light-success {
    background-color: #d1e7dd !important;
}

.bg-light-warning {
    background-color: #fff3cd !important;
}

.bg-light-info {
    background-color: #cff4fc !important;
}

.icon-circle-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-card h1 {
        font-size: 2rem;
    }
    .hero-card p.lead {
        font-size: 1rem;
    }
}
