/* -----------------------------
   FOOTER HERO WRAPPER
----------------------------- */
.footer-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding-top: 60px;
    padding-bottom: 40px;
}

/* -----------------------------
   FOOTER CONTENT
----------------------------- */
.footer-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}

/* First column thinner */
.footer-menu-col { 
    flex: 1.2; 
}

/* Second column for contact & socials */
.footer-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

/* -----------------------------
   LOGO
----------------------------- */
.footer-logo {
    width: 80px; /* smaller logo */
    margin-bottom: 25px;
}

/* -----------------------------
   TYPOGRAPHY & HEADINGS
----------------------------- */
.footer-heading {
    font-family: 'Passion One', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #f3fb00, #00eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -----------------------------
   FOOTER MENU
----------------------------- */
.footer-nav .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    width: 50%; /* two-column menu layout */
    display: inline-block;
}

.footer-nav li a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* animated underline */
.footer-nav li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #f3fb00;
    transition: width 0.3s ease;
}

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

.footer-nav li a:hover {
    color: #f3fb00;
    transform: translateX(3px);
}

/* -----------------------------
   FOOTER CONTACT & SOCIAL
----------------------------- */
.footer-contact p {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
}

.footer-contact a {
    color: #f3fb00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #00eaff;
}

.footer-social {
    margin-top: 12px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #f3fb00;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.25s ease;
}

.footer-social a:hover {
    color: #00eaff;
    transform: translateY(-3px);
}

/* subtle fade-in animation for social icons */
.footer-social a {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s forwards;
}

.footer-social a:nth-child(1) { animation-delay: 0.2s; }
.footer-social a:nth-child(2) { animation-delay: 0.35s; }
.footer-social a:nth-child(3) { animation-delay: 0.5s; }

/* -----------------------------
   COPYRIGHT
----------------------------- */
.footer-copy {
    margin-top: 25px;
    font-size: 1rem;
    color: #aaa;
    text-align: center;
    width: 100%;
    letter-spacing: 0.5px;
}

/* -----------------------------
   ANIMATIONS
----------------------------- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(10px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* -----------------------------
   RESPONSIVE
----------------------------- */
@media (max-width: 992px) {
    .footer-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 5% 20px;
    }

    .footer-menu-col {
        margin-bottom: 30px;
    }

    .footer-info-col {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
    }
}