* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Aptos', 'Segoe UI', 'Calibri', sans-serif;
    line-height: 1.6;
    color: #ECECEC;
    background: #282E3A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    background: #3D4957;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ECECEC;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #DBC7A6;
}

.nav-menu li.active a {
    color: #DBC7A6;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3D4957, #282E3A);
    color: #ECECEC;
    padding: 80px 160px;
    text-align: left;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.hero-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-description {
    flex: 1;
    max-width: 1200px;
}

.hero-description p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-services {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0 20px;
}

.hero-services li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #DBC7A6;
    font-weight: 500;
}

.hero-services li a {
    color: #DBC7A6;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-services li a:hover {
    color: #ECECEC;
}

.hero-services li:before {
    content: "▸ ";
    margin-right: 0.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: #DBC7A6;
    color: #282E3A;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
    padding: 0 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #DBC7A6;
}

.section-header p {
    font-size: 1.2rem;
    color: #ECECEC;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #3D4957;
}
.profile {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.profile-text {
    flex: 1;
}

.profile-text p {
    margin-bottom: 1rem;
}

.profile-image img {
    height: 380px;
}

.cv-download {
    margin-top: 2rem;
    text-align: center;
}

.cv-link {
    display: inline-block;
    background: #DBC7A6;
    color: #282E3A;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cv-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 110, 0.3);
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    padding: 0 30px;
}

.stat {
    padding: 1rem;
    background: #282E3A;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.stat h6 {
    font-size: 1rem;
    color: #DBC7A6;
    margin-bottom: 0.2rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #282E3A;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #3D4957;
    margin-bottom: 0.5rem;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ECECEC;
    padding: 0 10px;
}

.service-card p {
    color: #ECECEC;
    padding: 0 10px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-images {
    display: flex;
    gap: 4rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.service-images img {
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.image-description {
    font-size: 0.9rem;
    color: #DBC7A6;
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
}

.projet-li {
    padding-left: 60px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #3D4957;
}

.contact-content {
    display: flex;

}

.contact-info {
    display: flex;
    padding: 0 40px;
    gap: 120px;
    max-width: 800px;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #3D4957;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #DBC7A6;
}

.contact-item p {
    color: #ECECEC;
    line-height: 1.6;
}

.contact-link {
    color: #DBC7A6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #ECECEC;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #282E3A;
    color: #DBC7A6;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 100px 20px 80px;
        text-align: left;
    }

    .hero-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        padding: 0;
        max-width: none;
        text-align: left;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-profile {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }
    
    .about-profile .hero-image img {
        width: 200px;
        height: 240px;
    }

    .about-right {
        margin-top: 2rem;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        order: 2;
    }

    .cv-download {
        order: 3;
        margin-top: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .service-images {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .service-images img {
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .profile {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
    }
    
    .profile-image img {
        width: 280px;
        height: 340px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
        padding: 0 20px;
    }

    .service-images {
        flex-direction: column;
        justify-items: center;
        gap: 1.5rem;
        padding: 0 20px;
    }

    .service-images img {
        height: 300px;
    }

    .profile {
        flex-direction: column;
        gap: 2rem;
        text-align: left;
        padding: 0 20px;
    }
    
    .profile-image img {
        width: 200px;
        justify-content: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 20px;
    }
    
    .projet-li {
        padding-left: 20px;
    }


}