/* Reset some default styles */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fb;
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

header {
    background: #4b2e83;
    color: #fff;
    padding: 24px 0 12px 0;
    position: relative; /* Ajouté pour le positionnement */
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}



nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd700;
}

main {
    flex: 1;
}

.hero {
    background: linear-gradient(90deg, #6a4fb6 0%, #4b2e83 100%);
    color: #fff;
    padding: 48px 0 36px 0;
    text-align: center;
    border-radius: 0 0 18px 18px;
    margin-bottom: 32px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #ffd700;
    color: #4b2e83;
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn:hover {
    background: #fff;
    color: #4b2e83;
    border: 1px solid #4b2e83;
}

.commandes {
    padding: 32px 0;
}

.commandes h2 {
    color: #4b2e83;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(75,46,131,0.07);
    padding: 20px 24px;
    margin-bottom: 18px;
}

.feature-item h3 {
    color: #6a4fb6;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

footer {
    background: #4b2e83;
    color: #fff;
    padding: 18px 0;
    text-align: center;
    font-size: 0.98rem;
    border-radius: 18px 18px 0 0;
    margin-top: 32px;
}

footer a {
    color: #ffd700;
    text-decoration: underline;
    margin: 0 6px;
    transition: color 0.2s;
}

footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        width: 98%;
        padding: 0 6px;
    }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .hero {
        padding: 32px 0 24px 0;
    }
    .commandes {
        padding: 18px 0;
    }
}

/* TOS page styles */
.tos-section {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(75,46,131,0.08);
    padding: 36px 28px;
    margin: 40px auto;
    max-width: 750px;
}

.tos-section h2 {
    color: #4b2e83;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.tos-section h3 {
    color: #6a4fb6;
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tos-section p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.tos-section ul {
    margin-bottom: 14px;
    margin-left: 24px;
    padding-left: 0;
}

.tos-section li {
    margin-bottom: 6px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .tos-section {
        padding: 18px 8px;
        margin: 18px 0;
    }
    .tos-section h2 {
        font-size: 1.3rem;
    }
    .tos-section h3 {
        font-size: 1rem;
    }
}

#title {
    position: static;
    left: auto;
    top: auto;
}

#equipe {
    padding: 40px 0 32px 0;
}

.team-members {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(75,46,131,0.08);
    padding: 24px 20px;
    text-align: center;
    width: 220px;
    transition: box-shadow 0.2s;
}

.team-member:hover {
    box-shadow: 0 4px 18px rgba(75,46,131,0.15);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #6a4fb6;
    background: #f8f9fb;
}

.team-member h3 {
    margin-bottom: 8px;
    color: #4b2e83;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.team-member p {
    font-size: 0.98rem;
    color: #222;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .team-members {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .team-member {
        width: 90%;
    }
}