/* Footer Styles */
.footer {
    background-color: #1e2a3a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer .footer-section {
    padding: 0 15px;
}

.footer .footer-section h4 {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer .footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #ff6b35;
}

.footer .footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-section ul li {
    margin-bottom: 12px;
}

.footer .footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.footer .footer-section ul li a.email-link {
    font-size: 14px;
    display: inline-block;
    max-width: 100%;
}

.footer .footer-section ul li a:hover {
    color: #ff6b35;
}

.footer .footer-section ul li i {
    margin-right: 10px;
    color: #ff6b35;
}

/* Social Links */
.footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer .social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Creator Info */
.footer .creator-info {
    margin-top: 10px;
}

.footer .creator-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer .creator-info .fa-heart {
    color: #ff6b35;
    animation: heartbeat 1.5s infinite;
}

.footer .creator-link {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .creator-link:hover {
    text-decoration: underline;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer .footer-section {
        text-align: center;
    }
    
    .footer .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer .social-links {
        justify-content: center;
    }
} 