
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: #917f4c;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* Conteneur du logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre horizontalement le nom et le sous-titre */
    text-align: center;
}

/* Nom */
.logo h1 {
    font-size: 1.5rem; /* Un peu plus petit */
    margin: 0;
    font-weight: bold;
}

/* Sous-titre */
.logo .subtitle {
    font-size: 1rem;
    font-weight: normal;
    margin-top: 4px; /* Petit espace entre le nom et le sous-titre */
    color: #dcdcdc; /* Gris clair, reste élégant */
}


nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #18bc9c;
}

.burger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('images/bureauOri2.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* filtre assombrissant */
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
}

/* About Section */
.about {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.about-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;

    max-width: 400px;
    width: 100%;
    border-radius: 10px;
}

.about-content .text {
    flex: 1;
}

/* Tarif Section */
.tarif {
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.tarif-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tarif-card p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Audience (public visé) */
.tarif-card .audience {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

/* Bloc des conditions tarifaires avec police plus petite */
.tarif-conditions {
    margin-top: 20px;
    text-align: left;
    font-size: 0.85rem; /* plus petit que le texte standard */
    color: #444;
}

.tarif-conditions ul {
    margin-top: 8px;
    padding-left: 20px;
}

.tarif-conditions ul li {
    margin-bottom: 6px;
    line-height: 1.4;
}

.price {
    font-size: 2rem;
    color: #18bc9c;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background: #18bc9c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background: #149174;
}

/* Footer */
footer {
    background: #917f4c;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
}

/* Responsive */
@media(max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #917f4c;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 10px;
        border-radius: 5px;
    }
    nav ul.show {
        display: flex;
    }
    .burger {
        display: block;
    }
    .about-content {
        flex-direction: column;
    }
}

@media(max-width: 480px) {
    .about-content img {
        max-width: 300px;
    }
}
