/* Rechercher */
.recherche-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: #434343;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 1000;
}

.recherche-dropdown.active {
    display: block;
}

.recherche-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

.recherche-item:hover {
    background-color: #555555;
    color: white;
}

.nav-recherche {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-recherche input {
    width: 0;
    opacity: 0;
    border: none;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: white;
    transition: width 0.3s ease, opacity 0.3s ease;
    outline: none;
}

.nav-recherche.active input {
    width: 150px;
    opacity: 1;
    border-bottom: 1px solid white;
}

.nav-recherche button {
    width: 100%;
}

button.nav-link img {
    margin-top: 0px;
}

button.nav-link {
    color: white !important;
    margin: 0 5px;
    font-size: 1.3em;
    text-align: center;
    position: relative;
}

button.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

button.nav-link:hover::after,
button.nav-link.active::after {
    color: white;
    width: 100% !important;
}

button.nav-link:hover {
    color: #ffffff;
}

/* Vitrine */
.vitrine {
    background-color: black;
    padding: 30px;
}

.vitrine p, .vitrine h1 {
    text-align: center;
}

.vitrine p {
    padding: 0 0 20px 0;
}

.container-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.item {
    background-color: #434343;
    width: 280px;
    margin: 0 15px 30px 15px;
    text-align: center;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.item-bas {
    margin-top: auto;
}

.date-sortie {
    font-family: 'Frutiger';
    font-size: 0.8em;
    padding: 0 15px 0 15px !important;
}

.item a {
    display: block;
}

.item button {
    width: 50%;
}

.item p {
    text-align: left;
    padding: 0 15px 20px 15px;
}

.item img {
    width: calc(100% - 20px);
    height: 150px;
    object-fit: cover;
    margin: 10px;
}

.item h5 {
    font-family: 'NeueBlack'; 
    margin-bottom: 15px;
}

/* Features */
.features {
    background-color: #434343;
    padding: 30px;
}

.features h1 {
    text-align: center;
}

.container-feature {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.feature {
    width: 400px;
    margin: 0 15px 30px 15px;
    text-align: center;
    overflow: hidden;
    flex-shrink: 0;
}

.feature p {
    text-align: center;
    padding: 0 15px 20px 15px;
}

.feature img {
    width: calc(100% - 20px);
    height: 200px;
    object-fit: cover;
    margin: 10px;
}
