/* ============================================
   MOBILE FIX - Hamburger Menu & Footer Icons
   ============================================ */

/* Make hamburger visible on mobile */
.hamburger {
    display: none !important;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger:hover span {
    width: 32px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .navbar-content {
        gap: 0;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        background: linear-gradient(135deg, #0F3A7D 0%, #082847 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        display: none !important;
        z-index: 999;
        border-top: 3px solid #D4AF37;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        display: block;
        width: 100%;
        text-align: right;
        color: white;
    }

    .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }

    .nav-link.featured {
        background: #D4AF37;
        color: #0F3A7D !important;
        border-bottom: none;
    }

    .logo p {
        display: none;
    }

    .logo h1 {
        font-size: 20px;
    }
}

/* Footer Icons Fix */
.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #D4AF37;
    color: #0F3A7D;
}

.social-links a i {
    font-size: 18px;
    color: white;
}

.social-links a:hover i {
    color: #0F3A7D;
}

/* Emoji fallback for footer icons */
.footer-icon {
    font-size: 18px;
}
