/**
 * Footer Styles - Mobile First
 */

.footer {
    background: linear-gradient(180deg, var(--primary-black), var(--black));
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
    padding: var(--space-2xl) 0 var(--space-xl);
}

/* Footer Top */
.footer-top {
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    gap: var(--space-2xl);
}

.footer-column {
    text-align: center;
}

/* Footer Logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    transform: translateY(-2px);
}

/* Footer Title */
.footer-title {
    color: var(--primary-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-text strong {
    color: var(--white);
}

.footer-text a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 300px;
    margin: 0 auto var(--space-lg);
}

.newsletter-input {
    padding: var(--space-sm) var(--space-md);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(147, 51, 234, 0.05);
}

.newsletter-btn {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary-gold);
    color: var(--primary-black);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom-content {
    margin-bottom: var(--space-lg);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    opacity: 0.6;
}

.payment-methods img {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .footer-column {
        text-align: left;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-desc {
        margin-left: 0;
    }

    .social-links {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: row;
        margin: 0 0 var(--space-lg) 0;
    }

    .newsletter-input {
        flex: 1;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        margin-bottom: 0;
    }

    .footer-bottom-links {
        justify-content: flex-end;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .footer {
        padding: var(--space-3xl) 0 var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }

    .footer-column:first-child {
        grid-column: auto;
    }

    .footer-column {
        text-align: left;
    }

    .footer-desc {
        max-width: 280px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .payment-methods {
        margin-top: var(--space-xl);
    }
}