﻿/* Footer Styles */

:root {
    --primary-color: #00a19a;
    --secondary-color: #005f59;
    --light-gray: #f5f5f5;
    --white: #fff;
    --border-color: #ddd;
    --footer-bg: #00a19a;
    --footer-text: #fff;
    --footer-bottom-bg: #005f59;
}

/* Social Share Section */
.social-share-section {
    background-color: #FFFFFF;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.share-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-share-wrap {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icon {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.share-text {
    margin-left: 10px;
    font-weight: 600;
    color: #333;
}

.forum-stats {
    display: flex;
    align-items: center;
}

.followers-count, .forum-rating, .last-update {
    display: flex;
    align-items: center;
    margin-left: 25px;
    position: relative;
}

.followers-count::after, .forum-rating::after {
    content: '';
    height: 20px;
    width: 1px;
    background-color: #ddd;
    position: absolute;
    left: -12px;
}

.count-label, .rating-label {
    margin-left: 5px;
    font-weight: 500;
    color: #777;
}

.count-number {
    font-weight: 600;
    color: #333;
}

.rating-stars {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.rating-stars img {
    width: 18px;
    height: 18px;
    margin: 0 2px;
}

.update-icon {
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

.update-text {
    color: #777;
    font-size: var(--font-sm);
}

/* Main Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin: 0 15px;
}

.footer-title {
    font-size: var(--font-lg);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-text {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.contact-item {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    margin-bottom: 20px;
}

.footer-social-icon {
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--footer-bottom-bg);
    color: var(--white);
    padding: 15px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: var(--font-sm);
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 5px;
    font-size: var(--font-sm);
    transition: opacity 0.3s;
}

.footer-bottom-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .share-content, .footer-content, .footer-bottom .container {
        flex-direction: column;
    }
    
    .social-share-wrap, .followers-count, .forum-rating, .last-update {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .footer-column {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom .container {
        text-align: center;
    }
    
    .copyright-text, .footer-bottom-links {
        margin-bottom: 10px;
    }
}

