/* 
 * Footer Styles
 * KpopForever Website
 */

.main-footer {
    background-color: #111;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ff3366;
    transform: translateX(5px);
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form h5 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #ddd;
}

.form-group {
    display: flex;
    max-width: 100%;
}

.form-group input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.form-group input::placeholder {
    color: #999;
}

.form-group button {
    padding: 0.75rem 1rem;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: linear-gradient(90deg, #ff6633, #ff3366);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #ff3366;
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

/* Language Selector */
.language-selector select {
    background-color: rgba(255, 255, 255, 0.1);
    color: #aaa;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.language-selector select:focus {
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-section {
        flex: 0 0 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .language-selector {
        margin-top: 1rem;
    }
}
