/* Footer Fix CSS - denemebonusu.buzz */

/* Ana Footer Stili */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    position: relative; /* Sabit değil, normal akış içinde */
    bottom: auto;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    text-align: left;
}

.footer-column h4 {
    color: #FF6B35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-menu a:hover {
    color: #FF6B35;
    transform: translateX(5px);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    margin: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #FF6B35;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-message {
    flex: 1;
    min-width: 250px;
}

.footer-message p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.3rem;
    padding: 0.7rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: #FF6B35;
    border-color: #FF6B35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* X Twitter için özel ikon desteği */
.fab.fa-x-twitter:before {
    content: "𝕏";
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.2em;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-menu a:hover {
        transform: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-message {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}