/* ===== GLOBAL ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Georgia', serif;
background-color: #f6f1ea;
color: #4a4036;
line-height: 1.8;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */

nav {
width: 100%;
padding: 25px 60px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(255,255,255,0.75);
backdrop-filter: blur(10px);
position: fixed;
top: 0;
z-index: 1000;
}

.logo {
font-size: 1.3rem;
letter-spacing: 3px;
text-transform: uppercase;
font-weight: bold;
}

nav div {
display: flex;
gap: 20px;
}

nav button {
background: none;
border: none;
font-size: 0.95rem;
color: #4a4036;
cursor: pointer;
letter-spacing: 1px;
transition: 0.3s;
font-family: inherit;
}

nav button:hover {
color: #b79b7d;
}

/* ===== CONSTRUCTION BANNER ===== */

.construction-banner {
    position: fixed;
    top: 85px; /* adjust based on navbar height */
    width: 100%;
    background-color: #b79b7d;
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 999;
}

.construction-banner::after {
    content: "🚧 Site actuellement en construction • De nouveaux projets seront ajoutés prochainement 🚧";
    display: inline-block;
    padding-left: 100%;
    animation: scroll-banner 18s linear infinite;
}

@keyframes scroll-banner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ===== CONTACT ===== */

.contact-container {
max-width: 800px;
margin: auto;
padding: 180px 40px 180px;
}

.contact-title {
font-size: 3rem;
margin-bottom: 20px;
font-weight: normal;
color: #3b322b;
}

.contact-subtitle {
color: #8c7a68;
margin-bottom: 50px;
}

/* ===== FORM ===== */

.contact-form {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-form label {
color: #5f5448;
}

.contact-form input,
.contact-form textarea {
padding: 15px;
border: 1px solid #d8cfc5;
border-radius: 6px;
background-color: white;
font-family: inherit;
font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
outline: none;
border-color: #b79b7d;
}

.submit-btn {
margin-top: 20px;
padding: 15px;
border: none;
background-color: #b79b7d;
color: white;
font-size: 1rem;
cursor: pointer;
border-radius: 6px;
transition: 0.3s;
font-family: inherit;
}

.submit-btn:hover {
background-color: #a58a6e;
}

textarea {
    resize: none;
}
/* ===== FOOTER ===== */

footer {
    background-color: #e8ddd0;
    padding: 50px 30px;
    text-align: center;
}

footer p {
    font-family: 'Times New Roman', Times, serif;
    font-size: small;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: #5f5448;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    nav {
        padding: 18px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    nav div {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
        width: 100%;
    }

    nav button {
        text-align: center;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .construction-banner {
        top: 100px;
    }

    .contact-container {
        padding: 210px 25px 100px;
    }
}
