/* ========================================
   FOOTER - MYCELIA PRIME THEME
   Deep Purple & Bioluminescent Cyan
======================================== */

/* ========================================
   WARFARE CTA BANNER
======================================== */

.footer-cta-banner {
    background: linear-gradient(135deg, #0a0514 0%, #1a0b2e 50%, #0a0514 100%);
    border-top: 2px solid rgba(0, 217, 255, 0.3);
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(181, 166, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-cta-banner .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-text {
    margin-bottom: 2rem;
}

.cta-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #00D9FF;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.cta-text p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: #B5A6E0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, #00D9FF 0%, #4ECDC4 100%);
    color: #0a0514;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4ECDC4 0%, #00D9FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.6);
}

.btn-secondary {
    background: rgba(26, 11, 46, 0.5);
    color: #00D9FF;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(26, 11, 46, 0.7);
    border-color: rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

/* ========================================
   MAIN FOOTER
======================================== */

.main-footer {
    background: linear-gradient(180deg, #0a0514 0%, #1a0b2e 100%);
    color: #E8E8F0;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(0, 217, 255, 0.3);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ========================================
   FOOTER COLUMNS
======================================== */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.6));
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.footer-text {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #B5A6E0;
}

.footer-small {
    font-size: 0.9rem;
}

/* ========================================
   FOOTER LINKS
======================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #B5A6E0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 1rem;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00D9FF;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00D9FF;
    padding-left: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* ========================================
   FOOTER CONTACT & SOCIAL
======================================== */

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #B5A6E0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-email-link:hover {
    color: #00D9FF;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.footer-email-link svg {
    transition: transform 0.3s ease;
}

.footer-email-link:hover svg {
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    color: #00D9FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: #00D9FF;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: #6B5B8C;
    margin-bottom: 1rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-legal-links a {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #6B5B8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #00D9FF;
}

.footer-legal-links .separator {
    color: rgba(0, 217, 255, 0.3);
}

.footer-disclaimer {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: #6B5B8C;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 0.75rem;
    font-style: italic;
}

/* ========================================
   COPY SUCCESS TOAST
======================================== */

.copy-success-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #00D9FF 0%, #4ECDC4 100%);
    color: #0a0514;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.6);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-success-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GLOBAL BULLETIN (Toast Notification)
======================================== */

.global-bulletin {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 400px;
    background: linear-gradient(135deg, #1a0b2e 0%, #0a0514 100%);
    border: 2px solid #00D9FF;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.4);
    z-index: 10000;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bulletin-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bulletin-icon {
    font-size: 2.5rem;
    text-align: center;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
}

.bulletin-text {
    text-align: center;
}

.bulletin-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00D9FF;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.bulletin-message {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #B5A6E0;
    line-height: 1.6;
}

.bulletin-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.bulletin-dismiss,
.bulletin-cta {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bulletin-dismiss {
    background: rgba(26, 11, 46, 0.5);
    color: #B5A6E0;
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.bulletin-dismiss:hover {
    background: rgba(26, 11, 46, 0.7);
    color: #00D9FF;
}

.bulletin-cta {
    background: linear-gradient(135deg, #00D9FF 0%, #4ECDC4 100%);
    color: #0a0514;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.bulletin-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.6);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-cta-banner {
        padding: 2rem 0;
    }

    .cta-text h3 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .main-footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-logo {
        height: 50px;
    }

    .copy-success-toast,
    .global-bulletin {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .footer-cta-banner .container,
    .footer-container {
        padding: 0 1rem;
    }

    .cta-icon {
        font-size: 2.5rem;
    }

    .cta-text h3 {
        font-size: 1.25rem;
    }

    .cta-text p {
        font-size: 0.9rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-text,
    .footer-links a,
    .footer-email-link {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .bulletin-title {
        font-size: 1.1rem;
    }

    .bulletin-message {
        font-size: 0.85rem;
    }

    .bulletin-actions {
        flex-direction: column;
    }

    .bulletin-dismiss,
    .bulletin-cta {
        width: 100%;
    }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {
    .footer-cta-banner,
    .footer-social,
    .copy-success-toast,
    .global-bulletin {
        display: none !important;
    }

    .main-footer {
        border-top: 1px solid #000;
        background: #fff;
        color: #000;
    }

    .footer-heading,
    .footer-links a,
    .footer-text {
        color: #000 !important;
        text-shadow: none !important;
    }
}