/* Footer CSS - Bu kodları CSS dosyanızın sonuna ekleyebilirsiniz */

/* Profile içindeki footer CSS */
.profile-footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.profile-footer p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Hover efekti */
.profile-footer p:hover {
    color: #64b3f4;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-footer {
        padding: 10px 0;
        margin-top: 15px;
    }
    
    .profile-footer p {
        font-size: 11px;
    }
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
}

.footer-content p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Kalp emoji animasyonu */
.footer-content p::after {
    content: '';
    display: inline-block;
    margin-left: 2px;
}

/* Hover efekti */
.footer:hover .footer-content p {
    color: #64b3f4;
    transition: color 0.3s ease;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .footer-content p {
        font-size: 12px;
        padding: 0 10px;
    }
}

/* Ana container için padding kaldırıldı çünkü artık fixed değil */
/* .container {
    padding-bottom: 50px !important;
} */

/* Alternatif: Tamamen saydam footer istiyorsanız */
.footer.transparent {
    background: transparent;
    backdrop-filter: none;
    border-top: none;
}

/* Alternatif: Hafif saydam footer (blur olmadan) */
.footer.semi-transparent {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Alternatif: Gradient footer */
.footer.gradient {
    background: linear-gradient(135deg, rgba(100, 179, 244, 0.2) 0%, rgba(100, 179, 244, 0.05) 100%);
    border-top: 1px solid rgba(100, 179, 244, 0.3);
}

/* İletişim linkleri CSS - footer.css dosyanıza ekleyin */

/* İletişim linklerini stillendir */
.info-list ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.info-list ul li a:hover {
    color: #64b3f4;
    text-decoration: underline;
}

/* Adres linki için özel ikon */
/*.info-list ul li:first-child a:before {
    content: "📍 ";
    margin-right: 5px;
}

/* Email linki için özel ikon */
/*.info-list ul li:nth-child(2) a:before {
    content: "✉️ ";
    margin-right: 5px;
}

/* Discord linki için özel ikon */
/*.info-list ul li:last-child a:before {
    content: "💬 ";
    margin-right: 5px;
}