* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    width: 85%;
    margin: 0 auto;
}

.style {
    position: absolute;
    top: 57px;
    left: 0px;
    height: 150px;
    object-fit: contain;
}

/* Header */
header {
    background-color: #685850;
    color: white;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #756d69;
}

/* Section générique */
section {
    padding: 30px 0;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

section h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: center;
}

section p,
section li {
    font-size: 1.217rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0px;
}

section ul {
    list-style: none;
    padding-left: 0;
}

/* Accueil */

#accueil {
    background: linear-gradient(135deg, #685850, #af9488); /* fond doux et élégant */
    border-radius: 35px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #dba34e; /* bordure subtile, dorée/champagne */
    margin: 5px auto;
    width: 95%;
    max-width: 1000px;
    text-align: center;
    font-family: 'Georgia', serif;

}

#accueil h2 {
    color: white;
}

#accueil p {
    text-align: center;
    font-size: 1.25rem;
    color: white
}

/* Contact */
#contact a {
    color: #685850;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-top: 10px;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #685850;
    color: white;
    text-align: center;
    padding: 15px 0;
}

footer p {
    margin-top: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    header h1,
    section h2 {
        font-size: 2rem;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.social {
    display: flex;
    align-items: center;
    gap: 10px; /* espace entre les logos */
    justify-content: center;
}

.insta-logo,
.discord-logo {
    height: 60px; /* ou la taille que tu veux */
    width: auto;
    transition: transform 0.3s ease;
    margin-top: 10px;
}

.insta-logo:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.discord-logo:hover {
    transform: scale(1.1);
    cursor: pointer;
}
#services {
    padding: 60px 20px;
    background-color: #fff8f0;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

#services .intro {
    text-align: center;
    font-size: 1.2rem;
    color: #6e4b36;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
    margin-left: 100px;
    margin-right: 100px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e3d4bd;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #5C3D2E;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
    border-bottom: 3px solid #e2c59c;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.insta-logo {
    height: 60px; /* ou 50px si tu veux plus gros */
    width: auto;
    transition: transform 0.3s ease;
    margin-top: 10px;
}

.insta-logo:hover {
    transform: scale(1.1);
    cursor: pointer;
}