body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.clip-path-wave {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.clip-path-reverse-wave {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

.nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(253, 106, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 99;
}

.nav-list.active {
    opacity: 1;
    visibility: visible;
}

.nav-list li {
    padding: 20px 0;
    text-align: center;
}

.nav-list a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #fca311;
}

.toggle-btn {
    z-index: 100;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

.toggle-btn span {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.toggle-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
    background-image: url('paulodiney/ma.inline/MA.INLINE-c81ba23f1464a49a25706312a0422e3227b26a33/img/perso14.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 106, 0, 0.7);
    z-index: 1;
}
