/* assets/css/footer.css */

.colorful-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    margin-top: 50px;
}

/* Wave Divider */
.custom-shape-divider-top-1623456790 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1623456790 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-top-1623456790 .shape-fill {
    fill: #FFFFFF;
}

/* Footer Sections */
.footer-section {
    padding: 30px 0;
}

.footer-section h4 {
    font-family: 'Comic Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
}

.footer-section h4 i {
    margin-right: 10px;
    color: #FFD700;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: white;
    margin-right: 8px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px) rotate(360deg);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
    color: #FFD700;
}

/* Newsletter */
.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 12px 20px;
    font-family: 'Comic Neue', cursive;
}

.newsletter-form .btn-subscribe {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: white;
    padding: 12px 20px;
    transition: all 0.3s;
}

.newsletter-form .btn-subscribe:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: scale(1.05);
}

/* Footer Mascot */
.footer-mascot {
    margin-top: 20px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50px;
}

.footer-mascot img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.mascot-text {
    font-family: 'Comic Neue', cursive;
    font-size: 1.1rem;
    color: #FFD700;
}

/* Copyright Bar */
.copyright-bar {
    background: rgba(0,0,0,0.2);
    padding: 15px 0;
    font-size: 0.9rem;
}

.copyright-bar p {
    margin: 0;
    opacity: 0.8;
}

.copyright-bar i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.payment-icons {
    height: 30px;
    opacity: 0.8;
}

/* Animations */
@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        text-align: center;
    }
    
    .copyright-bar .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
}