* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

.header {
    position: fixed;
    width: 100%;
    padding: 2px 3rem; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: black;    
}
.logo-img {
    height: 40px; 
    width: auto;
}

.logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
} 

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: hsl(109, 64%, 44%);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #43B929; 
    transform: scaleX(0); 
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover::after,

.nav-links a.active::after {
    transform: scaleX(1); /* Show underline on hover & active */
}

.hero {
    position: relative;
    height: 1000px;
    padding-top: 80px;
}


.hero-content {
    position: relative;
    max-width: 500px;
    margin: 2rem 4rem;
    padding: 2rem;
    margin-top: 30rem; 
    margin-left: 10rem;
  }
  
.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    position: bottom;
}




/* les fichiers static doivent lire en production */