/* ============================================
   SHARED FOOTER — Girl Champion Awards
   Premium, Dark-Mode, Glassmorphic Design
   ============================================ */

footer {
    background: radial-gradient(circle at top right, #1a120c, #110a05);
    color: #fff;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(220, 167, 71, 0.2);
    position: relative;
    z-index: 10;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px !important;
    width: auto !important;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(220, 167, 71, 0.2));
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.footer-links h4 {
    color: #dca747;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links ul li { margin-bottom: 15px; }

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: #dca747;
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 167, 71, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #dca747;
    color: #110a05;
    transform: translateY(-3px);
}

/* Mega Footer Extensions */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(220, 167, 71, 0.15);
    padding: 30px;
    border-radius: 20px;
    margin-top: 15px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
    width: 100%;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    footer { padding: clamp(60px, 10vw, 100px) 0 30px; }
    .footer-content { gap: 40px; margin-bottom: 40px; }
    .footer-links h4 { margin-bottom: 15px; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
    .newsletter-form { flex-direction: column; }
    .footer-newsletter { padding: 20px; }
}

@media (max-width: 576px) {
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
}
