:root {
    --urbanist-font: 'Urbanist', sans-serif;
    --bg-color: #0D0D0D;
    --text-color: #fafafa;
    --heroBg1: #944615;
    --heroBg2: #f93816;
    --heroBg3: #DBA37E;
}


body {
    font-family: 'Urbanist', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-color);
}

nav {
    color: var(--text-color);
    padding: 1rem;
    text-align: center;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    right: 0;
    background: rgba(13, 13, 13, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand,
.nav-link {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
}

.nav-link:hover {
    color: var(--heroBg2);
}

.hero-section {
    min-height: 760px;
    margin-bottom: 70px;
    padding: 110px 0 45px;
    background: linear-gradient(205deg, rgba(249, 56, 22, 1) 0%, rgba(13, 13, 13, 1) 49%, rgba(13, 13, 13, 1) 87%);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(560px, 1.2fr);
    align-items: center;
    gap: 34px;
}

/* .hero-left {
    background: red;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

h1 {
    font-weight: bold;
    color: var(--text-color);
    font-size: 56px;
    line-height: 56px;
    margin: 0 0 22px;
}

.hero-left p {
    font-size: 19px;
    margin-bottom: 20px;
    max-width: 570px;
    color: rgba(250, 250, 250, 0.86);
}

a.cta-button,
button.cta-button {
    background-color: var(--heroBg2);
    border-radius: 10px;
    margin-top: 10px;
    color: var(--text-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.tools-name-rounded {
    display: flex;
    gap: 6px;
    margin-top: 26px;
    flex-wrap: wrap;
}


.tools-name-rounded a {
    padding: 8px 10px;
    border-radius: 50px;
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.3s ease, border 0.3s ease;
    text-decoration: none;
}

.tools-name-rounded a:hover {
    background-color: var(--heroBg2);
    border: 1px solid var(--heroBg2);
}

.quicklist {
    display: grid;
    gap: 14px;
}

.pickcard {
    background: rgba(18, 18, 18, 0.92);
    border: 1px solid rgba(250, 250, 250, 0.12);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.pickcard.first {
    border-color: rgba(249, 56, 22, 0.72);
}

.pickhead,
.pickbody {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pickhead {
    margin-bottom: 12px;
}

.pickrank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--heroBg2);
    color: var(--text-color);
    font-weight: 800;
}

.picktag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(249, 56, 22, 0.16);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.pickscore {
    margin-left: auto;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
}

.pickbody img {
    width: 112px;
    height: 84px;
    flex: 0 0 112px;
    border-radius: 8px;
    object-fit: cover;
    background: #1b1b1b;
}

.pickbody h2 {
    margin: 0 0 4px;
    font-size: 25px;
    line-height: 30px;
    font-weight: 850;
}

.pickbody p {
    margin: 0 0 7px;
    color: rgba(250, 250, 250, 0.84);
    line-height: 1.38;
}

.pickbody ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 0;
    padding-left: 18px;
    color: rgba(250, 250, 250, 0.78);
    font-size: 14px;
}

.pickaction {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    margin-top: 14px;
    border-radius: 8px;
    background: var(--heroBg2);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.pickaction:hover,
a.cta-button:hover {
    color: #fff;
    background: #d83013;
}

.meilleursOutils h2 {
    font-weight: bolder;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 20px;
}

.meilleursOutils h3 {
    font-weight: bolder;
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 60px;
    text-align: center;
}

.meilleursOutils-div {
    margin: 100px auto;
    width: 70%;
}

.avantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 50px auto 0 auto;
    width: 80%;

}

.avantages div {
    background: rgb(23, 23, 23);
    border-radius: 10px;
    padding: 25px;
}

.avantages ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.icon-lucide {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.img-container img {
    width: 75%;
    border-radius: 10px;
    object-fit: cover;
    display: flex;
}

.content-text {
    width: 75%;
    margin: 40px auto;
    /* text-align: center; */
}

.content-text ul {
    padding: 0;
    list-style-type: none;
}

table {
    margin: 40px auto;
    border-collapse: collapse;
    width: 75%;
}

tbody {
    width: 75%;
}

tbody tr th {
    background-color: #1a1a1a;
    padding: 22px;
    text-align: center;
    border: 5px solid var(--bg-color);
}

tbody tr td {
    background-color: #1a1a1a;
    padding: 25px;
    text-align: center;
}

tbody tr td span {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    border: 2px solid var(--heroBg2);
    background: var(--bg-color);
    padding: 10px 20px;
    border-radius: 50px;
}

tbody tr td ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.avis {
    width: 75%;
    margin: 40px auto;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    background: var(--heroBg2);
    height: 80px;
}

footer p {
    margin: 0;
}

#faqAccordion {
    width: 75%;
    margin: 40px auto;
}

.accordion-button {
    background-color: rgb(23, 23, 23) !important;
    color: var(--text-color) !important;
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    background-color: rgb(23, 23, 23) !important;
    color: var(--text-color) !important;
}

.accordion-item {
    background-color: rgb(23, 23, 23) !important;
    border: none !important;
    margin-bottom: 5px;
    border-radius: 10px;
}

.promptach {
    grid-template-columns: 1fr;
}

.navbar-brand{
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.navbar-brand:hover {
    color: var(--heroBg2);
}
