/* Styles généraux */
body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #0C1F38;
    background-color: #F8F8F8;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
}

header .logo {
    height: 120px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #0C1F38;
    font-weight: 700;
}

/* Barre d'information */
.site-status {
    background-color: #9C9C9C;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Hero */
.hero {
    height: calc(100vh - 180px);
    background: linear-gradient(135deg, #222222 0%, #0C1F38 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #F8F8F8;
    margin-bottom: 20px;
}

.btn {
    background-color: #9C9C9C;
    color: #0C1F38;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}

/* Services */
.services {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #F8F8F8;
}

.service-card {
    max-width: 300px;
    text-align: center;
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #0C1F38;
    color: #F8F8F8;
    text-align: center;
    padding: 20px 0;
}