/* ===== FOOTER COMPONENT STYLES ===== */

/* === FOOTER IMPROVEMENTS === */
.footer-custom .logo-container {
    margin-right: 20px;
}

.footer-custom-logo {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.footer-custom-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(255,255,255,0.2));
}

/* Footer Brand Text */
.footer-custom .brand-info {
    margin-left: 4px;
}

.footer-custom .brand-name {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    margin: 0 0 4px 0 !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-custom .brand-subtitle {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    margin: 0 0 2px 0 !important;
    color: #FFB74D !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

/* Legal Links Styles */
.legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.legal-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FFB300;
    text-decoration: underline;
}

.legal-separator {
    color: #666666;
    font-weight: bold;
    margin: 0 4px;
}

@media (max-width: 768px) {
    .legal-links {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .legal-separator {
        display: none;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--secondary-black-light) 100%);
    color: #ffffff;
    margin-top: auto;
}

.footer-main {
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

/* Logo Styling */
.header-logo,
.footer-logo {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.3);
}

/* Brand Section */
.footer-brand {
    margin-bottom: 2rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--accent-gold);
    margin: 0;
    font-weight: 500;
}

.footer-description {
    color: #B0BEC5;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Section Titles */
.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Social Media Grid */
.social-section {
    margin-top: 2rem;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 200px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover { background: linear-gradient(45deg, #833AB4, #FD1D1D, #F77737); }
.social-link.youtube:hover { background: #FF0000; }
.social-link.spotify:hover { background: #1DB954; }
.social-link.soundcloud:hover { background: #FF5500; }
.social-link.facebook:hover { background: #1877F2; }
.social-link.apple-music:hover { background: #FA57C1; }

/* Navigation Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nav-link {
    color: #B0BEC5;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 12px;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
}

.contact-icon {
    margin-right: 1rem;
    background: rgba(255, 183, 0, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.contact-link {
    color: #B0BEC5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.contact-text {
    color: #B0BEC5;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.newsletter-desc {
    color: #B0BEC5;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Newsletter Form */
.input-group {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #90A4AE;
}

.newsletter-btn {
    background: var(--gradient-accent);
    border: none;
    padding: 1rem 1.5rem;
    color: var(--secondary-black);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover:not(:disabled) {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #90A4AE;
    margin: 0;
    font-size: 0.9rem;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #90A4AE;
    font-size: 0.9rem;
}

.developer-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 183, 0, 0.1);
}

.developer-link:hover {
    color: var(--accent-gold-light);
    background: rgba(255, 183, 0, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Enhanced Social Icons - Keep essential Vuetify overrides */
.social-icons .v-btn,
.social-links .v-btn {
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icons .v-btn:hover,
.social-links .v-btn:hover {
    transform: translateY(-3px) scale(1.1);
    background: var(--primary-blue) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
}

/* Mobile Responsive Footer */
@media (max-width: 960px) {
    /* Footer Responsive */
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 100%;
        justify-items: center;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-section {
        padding: 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .footer-custom-logo {
        width: 70px !important;
        height: 70px !important;
    }

    .footer-custom .logo-container {
        margin-right: 16px;
    }

    .footer-custom .brand-name {
        font-size: 1.4rem !important;
    }

    .footer-custom .brand-subtitle {
        font-size: 0.8rem !important;
    }

    /* Footer Mobile */
    .footer-main .py-12 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .newsletter-section {
        padding: 1rem;
    }

    .input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        border-radius: 0 0 12px 12px;
    }

    .newsletter-input {
        border-radius: 12px 12px 0 0;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
        text-align: center;
    }
}