:root {
    --nav-color: #012970;
    --light-primary: #4d7ccc;
    --color-assigned: #20c997;
    --color-today: #fd7e14;
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #F4B400 !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: #F4B400;
    transition: width 0.3s ease;
}

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

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-btn-primary {
    background: #F4B400;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: #F4B400;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    color: white;
}

.hero-btn-outline {
    border: 2px solid white;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: white;
    color: #242A69;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}   

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #F4B400;
}

.social-icon {
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #F4B400;
}

.dance-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .dance-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .footer-link {
        text-decoration: none;
        color: #ccc;
        display: block;
        margin-bottom: 6px;
    }

    .footer-link:hover {
        color: #F4B400;
    }

    .social-icon {
        color: #ccc;
        font-size: 1.3rem;
    }

    .social-icon:hover {
        color: #F4B400;
    }

    .user-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.user-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto;
}

.purpose-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

