/* assets/css/footer.css - ფუტერის სტილები */

.main-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    margin-top: 60px;
}

.footer-top {
    padding: 25px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #f6ad55;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 15px;
}

/* ლოგო სექცია */
.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ფუტერის ლინკები */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: #f6ad55;
    transform: translateX(5px);
}

/* კონტაქტის ინფორმაცია */
.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cbd5e0;
}

.contact-info i {
    margin-right: 10px;
    color: #f6ad55;
    width: 20px;
    text-align: center;
}

/* სოციალური ლინკები ფუტერში */
.social-links-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links-footer .social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links-footer .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-links-footer .social-link.facebook:hover {
    background-color: #1877f2;
}

.social-links-footer .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links-footer .social-link.youtube:hover {
    background-color: #ff0000;
}

/* ფუტერის ქვედა ნაწილი */
.footer-bottom {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-meta p {
    color: #a0aec0;
    margin: 0;
    font-size: 0.85rem;
}

.admin-link {
    color: #f6ad55;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid #f6ad55;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background-color: #f6ad55;
    color: #1a202c;
}

/* რესპონსივი დიზაინი */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .social-links-footer .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}