/* --- VARIABLES --- */
:root {
    --primary-green: #a3c644;
    --primary-orange: #f7941d;
    --dark-blue: #020810;
    --card-bg: #0a111a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --font-main: 'Sora', sans-serif;
    --font-tech: 'Good Times', sans-serif;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 300px;
    background-color: var(--dark-blue);
    background-image: linear-gradient(to right, rgba(10, 14, 26, 0.8), rgba(10, 14, 26, 0.4)),
        url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    text-align: left;
    padding: 0;
    width: 100%;
}

.hero-inner {
    margin: 0 auto;
    padding: 0 100px;
    box-sizing: border-box;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-title {
    font-family: var(--font-tech);
    color: var(--text-white);
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.hero-breadcrumb a {
    text-decoration: none;
    color: var(--text-white);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    height: 20px;
}

.hero-breadcrumb a:hover {
    color: var(--primary-green);
}

.separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    width: 20px;
    height: 20px;
}

.hero-breadcrumb .separator svg {
    width: 16px;
    height: 16px;
    display: block;
}

.hero-breadcrumb .separator svg path,
.hero-breadcrumb .separator svg g {
    stroke: var(--text-white);
}

.breadcrumb-active {
    color: var(--primary-green);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    height: 20px;
}

/* Alternative si les SVG sont encore mal alignés */
.hero-breadcrumb > * {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.hero-breadcrumb span:not(.separator) {
    display: inline-flex;
    align-items: center;
    height: 20px;
}


/* Responsive */
@media (max-width: 992px) {
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
   .hero-title {
    font-family: var(--font-tech);
    color: var(--text-white);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    width: 100%;
}

}

@media (max-width: 768px) {
 .hero-title {
    font-family: var(--font-tech);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

}