/* ===== 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%);
    }
}

/* ===== ABOUT SECTION ===== */

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 180px 80px 120px;
}

.about-title {
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 20px;
    color: #3b322b;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #8c7a68;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

/* ===== CONTENT LAYOUT ===== */

.about-content {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text p {
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: #5f5448;
}

/* ===== IMAGE ===== */

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===== QUOTE ===== */

.quote {
    margin-top: 35px;
    font-style: italic;
    color: #7a6a5b;
    font-size: 1rem;
}

.quote-author {
    margin-top: 10px;
    color: #a08d7a;
    letter-spacing: 1px;
}

/* ===== 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;
    }

    .about-container {
        padding: 210px 25px 80px;
    }
}