/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 30%, #FF6B9D 70%, #FFD700 100%);
    border-top: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -5px 20px rgba(78, 205, 196, 0.3);
    margin-top: auto;
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-section {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF, #F0F8FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: titleGlow 3s ease-in-out infinite;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-subtitle {
    font-size: 0.85rem;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin: 0.2rem;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    scale: 1.05;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    padding-top: 5px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1) hue-rotate(0deg);
        transform: scale(1);
    }
    50% {
        filter: brightness(1.1) hue-rotate(10deg);
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer { padding: 24px 0 12px; }
    .footer-content { gap: 16px; }
    .footer-title { font-size: 1.2rem; }
    .footer-link { font-size: 0.95rem; }
    .footer-contact { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
}
