/* Styles pour le logo Auto-École Dreux */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    max-width: 250px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background-image: url('auto_ecole_dreux.jpg');
    background-size: cover;
    background-position: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FEFEFF;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.7rem;
    color: #656C7B;
    letter-spacing: 0.3px;
    margin: 0;
    white-space: nowrap;
}

/* Animation au survol */
.logo-container:hover .logo-icon {
    transform: rotate(10deg);
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-main {
    color: #00BFFE;
    transition: color 0.3s ease;
}

/* Version responsive */
@media (max-width: 992px) {
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-main {
        font-size: 1rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .logo-container {
        margin-bottom: 5px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-main {
        font-size: 0.95rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
}
