/* TEST - Cette règle devrait rendre le footer rouge */
.eighth-section {
    background-color: #000000 !important;
    padding: 0;
}


.eighth-section .active {
    font-weight: bold;
    text-decoration: underline;
}

.eighth-section ul {
    color: #ffffff;
    list-style-type: none;
    padding: 0;
    margin-bottom: 2vh;
    display: flex;
    flex-wrap: wrap;
    margin-left: 3vw;
}

.eighth-section ul li {
    width: 50%;
    padding: 0.5vh 0.1%;
}

.eighth-section ul li a, .eighth-section ul li h5 {
  font-size: clamp(0.5rem, 1vw, 1.25rem);
    font-weight: 300;
    margin: 0;
    color: #ffffff;
    text-decoration: none;
}

.eighth-section ul li span {
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    font-weight: 350;
    color: #ffffffb2;
}

.eighth-section .collapse-section {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
}

.eighth-section h4 {
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    font-weight: 400;
    color: #ffffff;
    margin: 15px 3vw;
}

.footer-section {
    background-color: #000000;
    width: 100%;
}

.footer-section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-section img {
    width: 30%;
}

.footer-logo {
    width: 150px !important;
    height: auto;
    max-width: 200px;
    margin: 20px 0;
    margin-top: 4vw;
}

/* Responsive pour le logo */
@media (max-width: 768px) {
    .footer-logo {
        width: 120px !important;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 100px !important;
        max-width: 120px;
    }
}


.title-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.title-ul h4 {
    margin: 0;
    padding: 0;
}

.title-ul .btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.title-ul .btn:focus {
    box-shadow: none;
}

.collapse {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 0;
    transform: translateY(-10px);
}

.collapse.show {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.toggle-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

button[aria-expanded="true"] .toggle-arrow {
    transform: rotate(180deg);
}

button[aria-expanded="false"] .toggle-arrow {
    transform: rotate(0deg);
}

@media screen and (min-width: 768px) {
    .eighth-section h4 {
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    }
}

/* Style pour les liens du footer */
.list-group-item {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.25rem 0;
}

.list-group-item:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* Bouton basique du footer */
.footer-section a {
  text-decoration: none !important;
}

.commander-footer {
    display: block;
    margin: 4vw auto 2vw auto;
    padding: 1.5vw 3vw;
    background: linear-gradient(45deg, #958A88 10%, rgba(97, 104, 123, 0.84) 30%,rgb(14, 14, 14) 100%);
    color: #fff;
    border: solid 1px #161616;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    transition: background 0.2s, transform 0.15s;
    text-transform: uppercase;
}

.commander-footer:hover {
  background-color: #e8e8ed;
  color: #272727;
  border-color: #848484;
  transform: translateY(-2px);
}