* {
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* =========== STYLES GÉNÉRAUX ========== */
body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* =========== HERO SECTION ========== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    box-shadow: 0 24px 16px rgba(22, 18, 18, 0.137);
    background: linear-gradient(to right, #4c2570ef, #434392);
    color: white;
    border-bottom: 4px solid #a6a6a6;
    box-shadow: 0 2px 6px rgba(150, 150, 150, 0.4), 
                0 4px 10px rgba(200, 200, 200, 0.2) inset;
}

.hero-content {
    width: 100%; 
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 8px;
}



/* =========== SERVICES WEB & MOBILE ========== */
.services-web {
    text-align: center;
    padding: 60px 5%;
    background-color: #fff;
}

.services-web h2 {
    font-size: 2.5em;
    color: #271430;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    padding-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #ddd;
}

.service-card p {
    text-align: center;
    padding: 0 15px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    padding: 30px 15px;
    margin-bottom: 16px;
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.site-vitrine .service-header {
    background: #1d8841;
}

.site-basic .service-header {
    background: #24558a;
}

.projet-web .service-header {
    background: #ad3531;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    margin-bottom: 5px;
    font-weight: bold;
}

.separator {
    width: 80%;
    height: 2px;
    background-color: #ccc;
    margin: 15px auto;
    margin-top: 32px;
}

.sd-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #7700ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.sd-btn:hover {
    background-color: #7a00b3;
}

/* =========== RESPONSIVE DESIGN ========== */
@media (max-width: 1300px) {
    .service-card {
        width: 45%;
    }
}

@media (max-width: 900px) {
    .service-card {
        width: 100%;
    }
}



/* =========== SERVICES JAVA & MINECRAFT ========== */
.services-java {
    text-align: center;
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.services-java h2 {
    font-size: 2.5em;
    color: #271430;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.services-java .intro-text {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.java-services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.java-service {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.java-service:hover {
    transform: translateY(-5px);
}

.java-service i {
    font-size: 3em;
    color: #7700ff;
    margin-bottom: 15px;
}

.java-service h3 {
    font-size: 1.5em;
    color: #271430;
    margin-bottom: 10px;
}

.java-service p {
    font-size: 1.1em;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .java-services-container {
        grid-template-columns: 1fr;
    }
}
