/* style.css */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif; }
body { line-height: 1.6; color: #fff; background: #001f3f; scroll-behavior: smooth; }

/* Header blanc cassé avec logo */
header {
    background-color: #f8f8f2;
    color: #001f3f;
    padding: 100px 20px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}
header h1 { font-size: 3em; margin-bottom: 15px; color: #001f3f; }
header p { font-size: 1.3em; margin-bottom: 30px; color: #001f3f; }
header a {
    display: inline-block;
    padding: 12px 28px;
    background: #ffcc00;
    color: #001f3f;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}
header a:hover { background: #ffdd66; }

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s;
}
section.visible { opacity: 1; transform: translateY(0); }
h2 { margin-bottom: 30px; color: #ffcc00; font-size: 2.2em; text-align: center; }
p { margin-bottom: 20px; text-align: center; color: #fff; }

/* Section À propos améliorée */
#about {
    margin-top: 50px;
    background: rgba(255,255,255,0.07);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    padding: 80px 20px;
}
#about p {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
}
#about p:first-of-type { font-weight: bold; font-size: 1.25em; }
#about i { color: #ffdd66; margin-right: 10px; }

/* Icon blocks */
.icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 40px; align-items: stretch; }
.icon-box {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    opacity: 0;
    transform: translateY(20px);
}
.icon-box.visible { opacity: 1; transform: translateY(0); }
.icon-box i { font-size: 3em; color: #ffdd66; margin-bottom: 15px; }
.icon-box h3 { min-height: 3em; margin-bottom: 10px; }
.icon-box:hover { transform: translateY(-5px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.icon-box a {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: #001f3f;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.icon-box a:hover { background: #ffdd66; }

/* Call to Action centré */
.cta { text-align: center; margin-top: 50px; width: 100%; }
.cta a { background: #ffcc00; color: #001f3f; padding: 12px 28px; text-decoration: none; border-radius: 5px; font-weight: bold; }
.cta a:hover { background: #ffdd66; }

/* Footer */
footer { background: rgba(0,0,0,0.4); text-align: center; padding: 30px 20px; font-size: 0.9em; color: #ccc; }

/* Responsive */
@media(max-width: 768px) {
    .icons { flex-direction: column; gap: 25px; }
    header h1 { font-size: 2.2em; }
    header p { font-size: 1.1em; }
}
