/* Fonts & Global Settings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #1A237E;
    color: #F8E1E7;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
}

/* Header fixé en haut avec le logo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 35, 126, 0.95); /* Fond légèrement transparent */
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo */
#logo {
    max-width: 140px;
    height: auto;
    transition: all 0.3s ease-in-out;
}

/* Réduction du logo après le scroll */
.header-small {
    padding: 10px 0;
}

.header-small #logo {
    max-width: 80px;
}

/* Espacement pour éviter que le header cache le contenu */
.intro, .services, .values, .contact {
    margin-top: 100px;
    padding: 50px 20px;
}

/* Services */
.services {
    background-color: #F8E1E7;
    color: #1A237E;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.service-card {
    background-color: #1A237E;
    color: #F8E1E7;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    background-color: #F8E1E7;
    color: #1A237E;
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    background-color: #F8E1E7;
    color: #1A237E;
}

.contact-button {
    display: inline-block;
    background-color: #1A237E;
    color: #F8E1E7;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.contact-button:hover {
    background-color: #F8E1E7;
    color: #1A237E;
    border: 2px solid #1A237E;
}

/* Footer */
footer {
    padding: 20px;
    font-size: 14px;
    font-weight: 300;
}