/* Base Styles */
nav {
    background-color: #551347;
    /* Use bg-custom color */
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    /* Hide the menu toggle button by default */
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links a.active {
    text-decoration: underline;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    margin-top: 10px;
    /* Adjust as needed */
}

.social-icon {
    margin-left: 15px;
    color: white;
}

.social-icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide the menu items by default on mobile */
        flex-direction: column;
        width: 100%;
        background-color: #551347;
        /* bg-custom color */
        text-align: center;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
        /* Show the menu items when the toggle button is clicked */
    }

    .nav-links li {
        margin: 0;
        border-bottom: 1px solid #fff;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
        /* Show the menu toggle button on mobile */
    }

    .social-icons {
        justify-content: center;
        /* Center the icons on small screens */
    }
}

.content {
    padding: 20px;
}

.container-wrapper {
    min-height: 300px;
    width: 100%;
    background-color: #b0bec5;
    padding: 50px;
    box-sizing: border-box;
}

footer {
    background-color: #551347;
    /* bg-custom color */
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    max-width: 1200px;
    display: flex;
    padding: 0px 50px;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
}

.footer-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-content ul li {
    display: inline;
    margin-right: 20px;
}

.footer-content ul li:last-child {
    margin-right: 0;
}

.footer-content ul li a {
    color: #fff;
    text-decoration: none;
}

.text-custom {
    color: #551347;
}

.bg-custom {
    background-color: #551347;
}

.add-task:hover {
    text-decoration: none;
}

.footer-link {
    color: #551347;
    text-decoration: none;
}

.card-hover {
    transition: transform 0.4s linear;
}

.card-hover:hover {
    transform: scaleX(1.06) scaleY(1.06);
}