/* ========================================
   FOOTER
   Footer styles and links
======================================== */

.footer {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Glass-footer glow at the top edge */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 168, 23, 0.3), transparent);
    z-index: 1;
}

.footer-logo {
    font-family: 'Do Hyeon', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.footer-logo span {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}

.footer h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    text-transform: none;
    margin-bottom: 1.5rem;
    color: var(--accent-color) !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    display: inline-block;
}

.footer a:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.8) !important;
}

.social-links a:hover {
    background: rgba(241, 168, 23, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(241, 168, 23, 0.2);
}

/* Newsletter Form Refinement */
.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 5px;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: rgba(241, 168, 23, 0.5);
    box-shadow: 0 0 15px rgba(241, 168, 23, 0.1);
}

.newsletter-form input {
    background: transparent !important;
    border: none !important;
    color: white !important;
    box-shadow: none !important;
    font-size: 0.9rem;
    padding-left: 15px;
}

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

.newsletter-form .btn-warning {
    border-radius: 8px !important;
    background: var(--accent-color) !important;
    border: none !important;
    color: var(--dark-bg);
    font-weight: bold;
    padding: 8px 20px;
}

.newsletter-form .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 168, 23, 0.4);
}

.footer-bottom-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer Category Scrollbar */
.footer-nav-scroll::-webkit-scrollbar {
    width: 3px;
}

.footer-nav-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.footer-nav-scroll::-webkit-scrollbar-thumb {
    background: rgba(241, 168, 23, 0.2);
    border-radius: 10px;
}

.footer-nav-scroll:hover::-webkit-scrollbar-thumb {
    background: rgba(241, 168, 23, 0.5);
}
@media (max-width: 768px) {
    .footer .container.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .footer-logo {
        justify-content: center; /* Center logo on tablet/mobile if desired, or keep left? Let's keep left for consistency with 33 Studio brand, but maybe center for better balance if content is centered. Actually, left is safer. */
        /* justify-content: flex-start; Default */
    }
    
    /* If we want to center footer on mobile */
    /*
    .footer {
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    */
}
