/* Style Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1c1c1c;
    color: #f4f4f4;
    line-height: 1.6;
    font-size: 16px;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 2rem 2rem 2rem 2rem;
    position: relative;
    text-align: center;
}

header img {
    position: absolute;
    top: 20px;
    left: 35px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

header h2 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: #f4f4f4;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    color: #ff6347;
    text-decoration: underline;
}

/* Sections */
.hero, .gallery, .projects, .feedback, .contact-form, .reviews {
    background-color: #2e2e2e;
    color: #f4f4f4;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 10px;
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero h2, .gallery h2, .projects h2, .feedback h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero p, .gallery p, .projects p, .feedback p {
    line-height: 1.6;
}

.gallery ul {
    list-style: disc;
    padding-left: 2rem;
}

.gallery li {
    margin-bottom: 0.5rem;
}

/* Images et vidéos */
.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.image-container img, .image-container iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Formulaires */
.contact-form input, .contact-form textarea, form input, form textarea {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
}

.contact-form button, form button {
    width: 100%;
    padding: 1rem;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover, form button:hover {
    background-color: #e53e36;
}

/* Avis */
.review {
    border: 1px solid #444;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #333;
}

.review strong {
    color: #fff;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header img {
        width: 120px;
        height: 120px;
        top: 15px;
        left: 15px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    header h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* Masquer le logo sur mobile */
    header img {
        display: none;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header h2 {
        font-size: 1rem;
    }

    nav a {
        margin: 0 5px;
        font-size: 0.9rem;
    }

    .hero, .gallery, .projects, .feedback, .contact-form, .reviews {
        padding: 1rem;
        margin: 1rem;
    }

    .image-container {
        flex-direction: column;
        align-items: center;
    }
}

