/* ── Police custom ── */
@font-face {
    font-family: 'AristaPro';
    src: url('Arista-Pro-Alternate-Bold-trial.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ── Base ── */
body {
    background-color: #E0F2F1;
    color: #333;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Contenu principal ── */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 5vh;
    animation: fadeIn 1.5s ease;
}

/* ── Titre ── */
h1 {
    font-weight: bold;
    font-size: 7rem;
    margin: 0;
    font-family: 'AristaPro', sans-serif;
    animation: fadeInScale 1.5s ease;
}

h1:hover {
    transform: scale(1.05);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.title-konet { color: #004DAE; }
.title-i     { color: #FF3533; }

/* ── Description ── */
.description {
    font-size: 1rem;
    max-width: 600px;
    text-align: justify;
    margin: 30px 0;
}

.highlight {
    color: #004DAE;
    font-weight: bold;
}

/* ── Bouton ── */
.contact-button {
    background-color: #004DAE;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.contact-button:hover {
    transform: scale(1.05);
    background-color: #3F51B5;
}

/* ── Réseaux sociaux ── */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.social-links img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* ── Footer ── */
.footer {
    text-align: center;
    font-size: 0.75rem;
    color: #4A4A4A;
    padding: 20px 0;
    margin-top: auto;
}

.footer::before {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background-color: #B0BEC5;
    margin: 20px auto;
}

/* ── Animations ── */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInScale {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    h1 { font-size: 5.2rem; }
    .description { font-size: 0.9rem; }
    .contact-button { font-size: 1rem; padding: 10px 15px; }
}
