@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Quicksand:wght@300..700&display=swap');

:root {
    --bg-principal: #FCFBF5;
    --bg-secondaire: #F4C9AC;
    --accent-clair: #EF9E70;
    --accent-fonce: #AE6455;
    --texte-secondaire: #756C4F;
    --texte-principal: #46342B;
    
    --font-title: 'Quicksand', Arial, sans-serif;
    --font-body: 'Manrope', Arial, sans-serif;
}

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

body {
    background-color: var(--bg-principal);
    color: var(--texte-principal);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

header {
    width: 100%;
    padding: 2.5rem 0 1rem;
    display: flex;
    justify-content: center;
}

.logo-container img {
    max-width: 180px;
    height: auto;
}

main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.badge {
    display: inline-block;
    background-color: var(--bg-secondaire);
    color: var(--texte-principal);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700; /* Manrope Bold */
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 3rem;
    color: var(--texte-principal);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--accent-fonce);
}

.manifesto-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--texte-principal);
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

.services-preview {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-tag {
    background: white;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(244, 201, 172, 0.4);
    box-shadow: 0 4px 15px rgba(70, 52, 43, 0.02);
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(70, 52, 43, 0.04);
    border: 1px solid rgba(244, 201, 172, 0.3);
    max-width: 550px;
    margin: 0 auto;
}

.action-box h2 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.action-box p {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--texte-secondaire);
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-fonce);
    color: var(--bg-principal);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600; /* Manrope Semi-Bold */
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(174, 100, 85, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-clair);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 158, 112, 0.3);
}

footer {
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid rgba(244, 201, 172, 0.2);
    font-size: 0.85rem;
    color: var(--texte-secondaire);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    .manifesto-text {
        font-size: 1.05rem;
    }
    .action-box {
        padding: 1.5rem;
    }
    .services-preview {
        gap: 0.8rem;
    }
    .service-tag {
        width: 100%;
        justify-content: center;
    }
}
