/* Style de base pour le corps */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #28a745;
    color: white;
    text-align: center;
    padding: 50px 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Conteneur des formations */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.formation-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Carte de formation */
.formation-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.formation-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.formation-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #28a745;
}

.formation-card p {
    font-size: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #218838;
}

.btnv {
    display: inline-block;
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background-color 0.3s;
}


/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-top: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-link:hover {
    text-decoration: underline;
}


#welcome-box {
        background-color: #f0fff0;
        border: 2px solid #4CAF50;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        margin: 20px auto;
        max-width: 600px;
        font-family: 'Arial', sans-serif;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 1s ease, transform 1s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    #welcome-box.show {
        opacity: 1;
        transform: translateY(0);
    }

    #welcome-box img {
        width: 40px;
        height: 30px;
        vertical-align: middle;
        margin-right: 10px;
    }

    #welcome-box h2 {
        color: #2e7d32;
        font-size: 22px;
    }

    #welcome-box p {
        font-size: 16px;
        color: #444;
        margin-top: 10px;
    }
	
	.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
