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

/*------------------------------------*\
    DESIGN TOKENS (miroir du @theme Tailwind du bundle React)
\*------------------------------------*/
:root {
    --color-ease-tech: #00599A;
    --color-ease-dark: #00283C;
    --color-ease-light: #00A5C8;
    --color-ease-gray: #E8EEF1;
    --color-ease-blue: #00A5C8;
    --color-ease-yellow: #F9B000;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/*------------------------------------*\
    BASE (header/footer classiques, chargé partout)
\*------------------------------------*/
body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-ease-dark);
}

.ease-header h1, .ease-header h2, .ease-header h3, .ease-header h4,
.ease-footer h1, .ease-footer h2, .ease-footer h3, .ease-footer h4 {
    font-weight: 700;
}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
.ease-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--color-ease-gray);
}

.ease-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ease-header__logo {
    display: flex;
    align-items: center;
}

.ease-header__logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.ease-header__nav {
    display: none;
    align-items: center;
}

.ease-header__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.ease-header__nav a {
    color: var(--color-ease-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease;
}

.ease-header__nav a:hover,
.ease-header__nav .current-menu-item > a {
    color: var(--color-ease-tech);
}

.ease-btn {
    display: inline-block;
    background: var(--color-ease-blue);
    color: #fff;
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .2s ease;
}

.ease-btn:hover {
    background: var(--color-ease-dark);
    color: #fff;
}

@media (min-width: 1024px) {
    .ease-header__nav {
        display: flex;
    }
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
div#root footer, div#root header{
    display: none;
}
.ease-footer {
    width: 100%;
    background: var(--color-ease-dark);
    color: #fff;
    padding: 80px 0;
    border-top: 4px solid var(--color-ease-tech);
}

.ease-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.ease-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.ease-footer__col h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
}

.ease-footer__brand-logo {
    height: 96px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.ease-footer__brand-text {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.625;
}

.ease-footer__top ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ease-footer__links li + li,
.ease-footer__contact li + li {
    margin-top: 8px;
}

.ease-footer__links a {
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    text-decoration: none;
    transition: color .2s ease;
}

.ease-footer__links a:hover {
    color: #fff;
}

.ease-footer__contact {
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
}

.ease-footer__social {
    display: flex;
    gap: 16px;
}

.ease-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color .2s ease;
}

.ease-footer__social a:hover {
    background: var(--color-ease-tech);
}

.ease-footer__social svg {
    width: 20px;
    height: 20px;
}

.ease-footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    font-weight: 300;
}

.ease-footer__bottom p {
    margin: 0;
}

.ease-footer__legal {
    display: flex;
    gap: 24px;
}

.ease-footer__legal a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s ease;
}

.ease-footer__legal a:hover {
    color: #fff;
}

@media (min-width: 768px) {
    .ease-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .ease-footer__bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .ease-footer__top {
        display: flex;
        justify-content: space-between;
        gap: 32px;
    }

    .ease-footer__brand {
        max-width: 340px;
    }
}
