/* Couleur du lien dans le header */
#a-photos {
    color:#05abd2;  /* Couleur du lien */
}

.drive-container {
    max-height: 0;
    width: 100%;
    margin: 20px auto;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: max-height 0.5s ease-out, visibility 0s linear 0.5s; 
    display: block; 
    visibility: hidden;
}

.drive-container.open {
    visibility: visible; 
    max-height: 1000px;
    transition: max-height 0.5s ease-out, visibility 0s linear 0s;
}

.drive {
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

/* Version responsive */
@media (max-width: 768px) {
    .drive-container {
        max-width: 100%;
        padding: 5px;
    }
    
    .drive {
        height: 400px;
    }
}

.drive-button {
    display: block;
    width: 80%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 20px auto;

}

.drive-button:hover {
    background-color: #212121;
}

.toggle-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    background-color: #333;
    color: white;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    display: block;
    margin-top: 20px;
}

.toggle-btn:hover {
    background-color: #121212;
}

.toggle-btn.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}