/* MODERN STYLING - Links and Footer Redesign */

/* ===========================
   1. HYPERLINK STYLING
   =========================== */

/* Global link styles */
a {
    color: #FF8500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative;
}

a:hover {
    color: #FF9019 !important;
    text-decoration: none !important;
}

a:visited {
    color: #FF8500 !important;
}

/* Info card links - white with orange hover */
.info-card a {
    color: white !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.info-card a:hover {
    color: #FF8500 !important;
}

/* Social links in info-card */
.social-links a {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.social-links a:hover {
    background: #FF8500 !important;
    border-color: #FF8500 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(255, 133, 0, 0.4) !important;
}

.social-links svg {
    width: 20px !important;
    height: 20px !important;
    fill: white !important;
}

/* Navigation links */
.nav-link {
    color: white !important;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF8500;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Button links */
.btn {
    text-decoration: none !important;
    color: white !important;
}

.btn-outline {
    color: #FF8500 !important;
}

.btn-outline:hover {
    color: white !important;
}

/* Social links */
.social-link {
    color: white !important;
    background: rgba(255, 133, 0, 0.1);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF8500 !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 133, 0, 0.4);
}

/* ===========================
   2. FOOTER REDESIGN
   =========================== */

.footer {
    background: linear-gradient(135deg, #0a1628 0%, #132545 100%) !important;
    padding: 80px 0 20px !important;
    position: relative !important;
    overflow: hidden !important;
    border-top: 3px solid #FF8500 !important;
}

/* Film strip decoration at top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    opacity: 0.6;
}

/* Animated film reel background */
.footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, transparent 30%, #FF8500 30%, #FF8500 32%, transparent 32%);
    opacity: 0.05;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 40px !important;
    align-items: center !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Footer Logo Section */
.footer-logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.footer-logo img {
    max-height: 120px !important;
    width: auto !important;
    filter: brightness(1.1) !important;
    transition: transform 0.3s ease !important;
}

.footer-logo img:hover {
    transform: scale(1.05) !important;
}

/* Footer Text Section */
.footer-text {
    text-align: center !important;
    color: white !important;
}

.footer-text h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 28px !important;
    color: #FF8500 !important;
    margin-bottom: 15px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Footer Copyright - Single line at bottom */
.footer-copyright {
    text-align: center !important;
    color: rgba(255, 255, 255, 0.5) !important;
    padding: 20px 0 !important;
    margin-top: 40px !important;
    border-top: 1px solid rgba(255, 133, 0, 0.2) !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.footer-copyright p {
    font-size: 14px !important;
    margin: 0 !important;
    display: inline !important;
}

.footer-copyright p:not(:last-child)::after {
    content: ' | ' !important;
    margin: 0 10px !important;
    opacity: 0.5 !important;
}

/* Add social links section */
.footer-social {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 20px !important;
}

.footer-social a {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.footer-social a:hover {
    background: #FF8500 !important;
    border-color: #FF8500 !important;
    color: white !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(255, 133, 0, 0.3) !important;
}

/* Quick Links Section (if needed) */
.footer-links {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin: 30px 0 !important;
    padding: 30px 0 !important;
    border-top: 1px solid rgba(255, 133, 0, 0.2) !important;
    border-bottom: 1px solid rgba(255, 133, 0, 0.2) !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    padding: 5px 0 !important;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #FF8500;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #FF8500 !important;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-logo {
        margin-bottom: 20px !important;
    }

    .footer-links {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px !important;
    }

    .footer-text h3 {
        font-size: 24px !important;
    }

    .footer-text p {
        font-size: 14px !important;
    }

    .footer-links {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .footer-social a {
        width: 35px !important;
        height: 35px !important;
    }
}

/* Film reel decoration (existing) - style it better */
.film-reel-decoration {
    display: none !important; /* Remove if it looks bad */
}