/* Footer Styles */
footer {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(11, 11, 11, 0.95) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 80px;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center,
            rgba(255, 215, 0, 0.05) 0%,
            transparent 70%);
    pointer-events: none;
}

.footer-content {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 25px;
    font-family: 'Big Shoulders Display', sans-serif;
    letter-spacing: 1px;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.5),
        var(--text-shadow-dark);
    line-height: 1.2;
    height: 1.68rem;
    display: flex;
    align-items: center;
}

.footer-section p,
.footer-section li,
.contact-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    text-shadow: var(--text-shadow-light);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li::before {
    content: '✨';
    margin-right: 10px;
    color: gold;
}

.footer-section a,
.contact-info a {
    color: var(--secondary-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover,
.contact-info a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: gold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(77%) sepia(69%) saturate(470%) hue-rotate(6deg) brightness(108%) contrast(98%);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow:
        0 5px 15px rgba(255, 215, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.2);
}

.social-link:hover img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(100%) saturate(400%) hue-rotate(0deg) brightness(120%) contrast(100%);
    transform: scale(1.1);
}

/* Platform-specific hover colors */
.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow:
        0 5px 15px rgba(24, 119, 242, 0.3),
        0 0 20px rgba(24, 119, 242, 0.2);
}

.social-link.facebook:hover img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(96%) saturate(1598%) hue-rotate(213deg) brightness(98%) contrast(93%);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 204, 0, 0.2));
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow:
        0 5px 15px rgba(225, 48, 108, 0.3),
        0 0 20px rgba(255, 204, 0, 0.2);
}

.social-link.instagram:hover img {
    filter: brightness(0) saturate(100%) invert(32%) sepia(92%) saturate(1572%) hue-rotate(315deg) brightness(96%) contrast(86%);
}

.social-link.twitter:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
}

.social-link.twitter:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow:
        0 5px 15px rgba(255, 0, 0, 0.3),
        0 0 20px rgba(255, 0, 0, 0.2);
}

.social-link.youtube:hover img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(7500%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    width: 95vw
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo-text {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 2rem;
    color: var(--primary-gold);
    text-shadow:
        0 0 15px rgba(255, 215, 0, 0.6),
        var(--text-shadow-dark);
    letter-spacing: 2px;
    margin: 0;
}