﻿:root {
    --bg: #050816;
    --bg-elevated: #0b1020;
    --bg-soft: #111827;
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.15);
    --accent-strong: #16a34a;
    --danger: #ef4444;
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: #1f2937;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.8);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    color: var(--text);
}


.navbar {
    font-family: 'Times New Roman', Times, serif;
    background-color: inherit;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.4s ease;
    margin: 3px 0px;
}

.navbar__container {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    height: 67px;
    z-index: 1;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 150px;
    font-size: 20px;
    gap: 20px;
}

#navbar__logo {
    background-image: linear-gradient(to top, #45586d 50%, #E8F3FF 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Times New Roman', Times, serif;
    height: 53px;
}

.hr__coutenier{

    color:darkgray;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    font-family: 'Times New Roman', Times, serif;
    color:black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

    .navbar__links:hover {
        color: #47c77e;
        transition: all 0.3s ease;
    }

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 16px 38px;
    height: 100%;
    width: 30%;
    outline: none;
    background: transparent;
    color: #45586d;
    border: 2px solid #45586d;
    border-radius: 40px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .button:hover {
        transform: translateY(-6px);
        color: #1f2237;
    }
