/* Navbar, footer, buttons, etc */
.navbar {
    background-color: #222;
}

.navbar-brand:hover {
    color: #00aaff;
    text-decoration: none;
}

.nav-link {
    font-size: 1rem;
    color: #ddd;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #00aaff;
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.2rem;
}

.btn-outline-light {
    border-color: #ddd;
    color: #ddd;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #00aaff;
    border-color: #00aaff;
    color: #fff;
}

#toggle-button {
    margin-left: auto;
}


/* Cart */
.hover-card {
    transition: transform 0.2s; 
}

.hover-card:hover {
    transform: scale(1.02);
}

.hover-card a {
    transition: transform 0.3s, background-color 0.3s;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 10px;
    display: block;
}

.hover-card a:hover {
    transform: scale(1.05);
    background-color: #222;
}

/* Footer */
footer {
    background-color: #1d1d1d;
    color: #fff;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer p{
    text-align: left;  
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 14px;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.footer-social a:hover {
    color: #ccc;
}


/* Media Queries */
@media screen and (max-width: 1024px) {
    .nav-item {
        text-align: center;
        margin-bottom: 0.5rem;
    }


    footer {
        font-size: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        margin-top: 1rem;
    }
}