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

/* BODY */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: rgb(0, 0, 0); /* fond noir général */
    color: #fff;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 22px;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #dcdcff;
}

/* ENTETE IMAGE */
#entete img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* SECTION CONTENT */
.content {
    display: flex;
    justify-content: center;
    padding: 100px 20px;
    background-color: #1b1818;
}

.box {
    background:rgba(148, 95, 51, 0.687);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(204, 163, 110, 0.4);
    text-align: center;
}

/* CONTACT */
.contact {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background-color: #272727;
}

.contact-box {
    background: rgba(244, 165, 96, 0.43);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-box h2 {
    margin-bottom: 20px;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box input, .contact-box textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.contact-box textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-box button {
    padding: 12px;
    background: #222;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.contact-box button:hover {
    background: #444;
}

/* CONTAINER POUR INFORMATIONS */
.container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    color: #333;
}

.container h2 {
    margin-bottom: 15px;
    margin-top: 30px;
    font-size: 22px;
    color: #222;
    border-left: 4px solid #222;
    padding-left: 10px;
}

.container h2:first-child {
    margin-top: 0;
}

.container p {
    margin-bottom: 15px;
    font-size: 16px;
}

.container ul {
    margin: 15px 0 20px 20px;
}

.container ul li {
    margin-bottom: 8px;
}

/* ENCART IMPORTANT */
.important {
    margin-top: 25px;
    padding: 15px 20px;
    background-color: #fff3cd;
    border-left: 5px solid #ffcc00;
    border-radius: 6px;
    font-weight: 500;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    font-size: 14px;
    margin-top: 40px;
}

/* H3 STYLES SI UTILISES */
h3 {
    font-weight: 200;
    font-size: 120%;
    color: rgb(206, 149, 108);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* INPUT RECHERCHE DANS NAVBAR SI BESOIN */
.search-item input {
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
    opacity:40px;
    }


/* ===== Animation apparition au scroll ===== */

.container h2,
.container p,
.container ul,
.important {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

