/* 
* N.O. Immobilien - Social Media Icons
* Author: NAXII | ZamZob
* Version: 1.0
*/

/* Footer Social Media Bereich */
.footer-social {
    margin-top: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Instagram Icon */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0.9;
}

/* Facebook Icon */
.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.facebook:hover {
    background-color: #4267B2;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

/* Dark Mode Anpassungen */
.dark-mode .social-icon {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dark-mode .social-icon:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}