/* ============================================
   Beauty Georgia Tour - Footer Styles
   Футер с контактами и социальными сетями
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem 0 1.5rem;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-brand {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-brand .emoji {
    display: inline-block;
    font-size: 2rem;
    margin: 0 0.3rem;
    vertical-align: middle;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.footer-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    min-width: 100px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: #25D366;
}

.telegram-icon {
    background: #0088cc;
}

.social-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-links a {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    opacity: 0.95;
    transition: all 0.3s;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
}

.footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .footer-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-brand .emoji {
        font-size: 1.5rem;
    }
    
    .social-link {
        min-width: 80px;
        padding: 0.6rem;
    }
    
    .social-label {
        font-size: 0.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .footer-links a {
        font-size: 1.1rem;
    }
}
