.hamburger-container {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

/* === Bouton hamburger (3 lignes fines) === */
.hamburger-icon {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
    transition: all 0.3s ease;
}

/* === Menu déroulant === */
.hamburger-menu {
    position: fixed; /* ✅ Fixé au viewport */
    top: 0;
    right: 0;
    background-color: #000;
    color: white;
    padding: 60px 70px 40px 50px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: none;
}

.hamburger-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamburger-menu li {
    margin: 10px 0;
}

.hamburger-menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.3px;
    transition: opacity 0.3s;
}

.hamburger-menu a:hover {
    opacity: 0.7;
}

/* === Bouton fermer (X) === */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.close-btn:hover{
    background-color: transparent!important;
}

/* === Animation ouverture === */
.hamburger-menu.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

.hamburger-container.scrolled{
	background-color: #000;
    padding: 10px;
	top: 10px;
    right: 15px;
}

.hamburger-container.scrolled > .hamburger-icon > span{
	background-color : #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1370px) {
	.hamburger-container {
    	top: 20px;
		right: 30px;
	}
}

@media (max-width: 768px) {
	.close-btn {
    	top: 10px;
		right: 30px;
	}
	.hamburger-container {
		top: 23px;
        right: 30px;
    }
}