/* footer.css - Modern Victorian Footer */
.glitter-footer {
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.95) 0%,
        rgba(45, 27, 27, 0.95) 50%,
        rgba(26, 22, 17, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
    margin-top: 4rem;
}

.glitter-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(201, 169, 97, 0.02) 25%,
        rgba(107, 71, 136, 0.02) 50%,
        rgba(201, 169, 97, 0.02) 75%,
        transparent 100%
    );
    pointer-events: none;
}

.glitter-footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

/* Main Footer Content */
.glitter-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

/* Brand Section */
.glitter-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glitter-footer-logo .glitter-logo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.glitter-footer-logo .glitter-logo-text {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--deep-purple) 50%, var(--warm-gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: glitter-gradient-shift 6s ease-in-out infinite;
}

.glitter-footer-logo .glitter-logo-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 0.8rem;
    color: var(--muted-text);
    font-weight: 300;
    margin-top: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.glitter-footer-description {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-text);
    margin: 0;
    max-width: 320px;
}

/* Footer Sections */
.glitter-footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glitter-footer-title {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--warm-gold);
    margin: 0;
    position: relative;
    padding-bottom: 0.8rem;
}

.glitter-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--warm-gold), var(--deep-purple));
    border-radius: 1px;
}

.glitter-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.glitter-footer-link {
    color: var(--light-text);
    text-decoration: none;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
}

.glitter-footer-link:hover {
    color: var(--warm-gold);
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
    transform: translateX(8px);
}

.glitter-footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--warm-gold);
    transform: translateY(-50%) scaleX(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left;
}

.glitter-footer-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* Bottom Section */
.glitter-footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    padding: 2rem 0;
}

.glitter-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.glitter-footer-copyright {
    color: var(--muted-text);
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
}

.glitter-footer-copyright p {
    margin: 0;
}

/* Social Links */
.glitter-footer-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.glitter-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    text-decoration: none;
    font-family: 'Merriweather', serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 8px;
    background: rgba(201, 169, 97, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.glitter-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.glitter-social-link:hover::before {
    left: 100%;
}

.glitter-social-link:hover {
    color: var(--warm-gold);
    border-color: rgba(201, 169, 97, 0.3);
    background: rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.15);
}

.glitter-social-icon {
    font-size: 1.1rem;
    opacity: 0.9;
}

.glitter-social-text {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .glitter-footer-container {
        padding: 0 2rem;
    }
    
    .glitter-footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .glitter-footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .glitter-footer-container {
        padding: 0 1.5rem;
    }
    
    .glitter-footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
        text-align: center;
    }
    
    .glitter-footer-brand {
        grid-column: 1;
        align-items: center;
        text-align: center;
    }
    
    .glitter-footer-logo .glitter-logo-content {
        align-items: center;
    }
    
    .glitter-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .glitter-footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .glitter-footer-socials {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .glitter-footer-logo .glitter-logo-text {
        font-size: 1.8rem;
    }
    
    .glitter-footer-socials {
        flex-direction: column;
        gap: 1rem;
    }
    
    .glitter-social-link {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }
    
    .glitter-footer-main {
        padding: 2.5rem 0;
    }
}

/* Animation */
@keyframes glitter-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
