/* Core Styling */
body { font-family: 'Inter', sans-serif; background-color: #F8FAFC; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

/* Navbar Scroll Logic */
.sdm-navbar { transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease !important; padding: 1.25rem 0; }
.navbar-transparent { background-color: transparent !important; box-shadow: none !important; }
.navbar-solid { background-color: #0A192F !important; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important; padding: 0.8rem 0 !important; }

/* Dropdown */
.dropdown-menu { border-radius: 12px; background-color: #FFFFFF; }
.dropdown-item:hover { background-color: #EFF6FF; color: #1E40AF; }

/* Footer Links */
.footer-link { transition: color 0.3s ease, padding 0.3s ease; }
.footer-link:hover { color: #FFFFFF !important; padding-left: 5px; }

/* Cinematic Department Cards */
.creative-dept-card:hover .creative-dept-bg { transform: scale(1.1); }
.creative-dept-card:hover .action-text { color: #E11D48; }
.creative-dept-card .fa-arrow-right { transition: transform 0.3s ease; }
.creative-dept-card:hover .fa-arrow-right { transform: translateX(6px); color: #E11D48; }

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Nav Fix */
@media (max-width: 991px) {
    .navbar-collapse { background-color: #0A192F; padding: 1.5rem; border-radius: 8px; margin-top: 1rem; border: 1px solid rgba(255,255,255,0.1); }
    .nav-actions { width: 100% !important; justify-content: flex-start !important; margin-top: 1rem; }
}