/* rmg-contact-style.css
   İletişim ve Sosyal Medya Stilleri
   Version: 1.1.0
*/

/* Sosyal Medya İkonları */
.rmg-social-section {
    margin: 20px 0;
    padding: 15px 0;
    background: transparent;
    border: none;
}

.rmg-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rmg-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Varsayılan arka plan */
    color: #333; /* Varsayılan ikon rengi */
    text-decoration: none;
    font-size: 18px;
    transition: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}


/* Platforma özel renkler (sadeleştirilmiş) */
.rmg-social-instagram {
    background-color: #E4405F;
    color: white;
}

.rmg-social-whatsapp {
    background-color: #25D366;
    color: white;
}

.rmg-social-facebook {
    background-color: #1877F2;
    color: white;
}

.rmg-social-twitter {
    background-color: #1DA1F2;
    color: white;
}

.rmg-social-tiktok {
    background-color: #000000;
    color: white;
}

.rmg-social-youtube {
    background-color: #FF0000;
    color: white;
}

.rmg-social-linkedin {
    background-color: #0A66C2;
    color: white;
}

/* İletişim Bilgileri */
.rmg-contact-section {
    margin: 20px 0;
    padding: 20px;
    background: var(--rmg-card-bg);
    border-radius: var(--rmg-radius);
    box-shadow: 0 4px 12px var(--rmg-card-shadow);
}

.rmg-contact-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--rmg-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rmg-contact-title i {
    font-size: 20px;
}

.rmg-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rmg-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.rmg-menu-wrapper.rmg-dark .rmg-contact-item {
    background: rgba(255,255,255,0.05);
}

.rmg-contact-item:hover {
    background: rgba(var(--rmg-primary-rgb), 0.08);
}

.rmg-contact-item i {
    color: var(--rmg-primary);
    font-size: 18px;
    min-width: 24px;
    margin-top: 2px;
}

.rmg-contact-link,
.rmg-contact-text {
    color: var(--rmg-text);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

.rmg-contact-link:hover {
    color: var(--rmg-primary);
    text-decoration: underline;
}

/* Footer'da sosyal medya ve iletişim bölümü */
.rmg-footer .rmg-social-section {
    margin: 0 0 20px 0;
    background: transparent;
    border: none;
    padding: 0;
}

.rmg-footer .rmg-social-icons {
    justify-content: center;
}

.rmg-footer .rmg-contact-section {
    margin: 20px 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.rmg-menu-wrapper.rmg-light .rmg-footer .rmg-contact-section {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.08);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .rmg-social-icons {
        gap: 12px;
    }
    
    .rmg-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .rmg-contact-section {
        padding: 15px;
    }
    
    .rmg-contact-title {
        font-size: 16px;
    }
    
    .rmg-contact-item {
        padding: 8px;
    }
    
    .rmg-contact-link,
    .rmg-contact-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rmg-social-icons {
        gap: 10px;
    }
    
    .rmg-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .rmg-contact-section {
        padding: 12px;
    }
    
    .rmg-contact-title {
        font-size: 15px;
    }
}