/* NAVBAR */
.white-logo {
    display: none;
}

.fa-white {
    color: white !important;
}

.logo-white {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    transition: background-color 0.3s ease-out, height 0.3s ease-out;
}

.navbar-scroll {
    background-color: #000000;
    height: 90px;
}

.navbar-scroll-full {
    background: #000000;
    height: 70px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    justify-content: space-around;
    margin: 0 10px;
    transition: 0.3s;
    font-weight: bold !important;
    text-transform: uppercase;
    font-size: 0.6rem !important;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    background-color: #000000;
    height: 2px;
    width: 100%;
    bottom: -7px;
    left: 0;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
    transform: scaleX(0);
    border-radius: 3px;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-item {
    margin-right: 20px;
    cursor: hand;
}

.nav-item i {
    margin: 0 10px;
    transition: 0.3s;
    text-decoration: none;

}

.nav-item i:hover {
    transform: scale(1.2);
}

.hamburger {
    display: none !important;
}

/* Responsif */
@media (max-width: 768px) {
    .black-logo {
        display: none !important;
    }

    .navbar .navbar-brand {
    margin-left: 0 !important;
}

    .white-logo {
        display: block;
    }

    .search-icon {
        display: none !important;
    }

    .hamburger {
        display: block !important;
    }

    .navbar {
        background-color: #000000;
        height: 70px;
    }

    .nav-item {
        color: #ffffff;
    }
}


/* Hero Section */
.mobile-hero {
    display: none;
    margin-top: 70px;
}

/* Responsif */
@media (max-width: 768px) {
    .desktop-hero {
        display: none !important;
    }

    .mobile-hero {
        display: block !important;
    }
}

/* Products */
.products {
    height: 45vh;
}

.new-tittle {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.new-tittle::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #c80566;
    margin: 10px auto 0;
}

.new-image {
    transition: 0.3s all;
}

.new-image:hover {
    transform: scale(1.05);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.modal.show .modal-dialog {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

#modalImage {
    transition: 0.3s all;
}

#modalImage:hover {
    transform: scale(1.05);

}


@media (max-width: 768px) {
    .products .container {
        display: inline !important;
        justify-content: center !important;
        display: flex;
    }
    .products .blog-card {
        width: 400px !important;
        justify-content: center !important;
        margin-bottom: 20px;
    }
    .products {
        height: 120vh;
    }
    .new-container .new-images {
        display: inline !important;
    }
    .fav-container .fav-images {
        display: inline !important;
    }
}

/* footer */


.footer-link li:hover {
    text-decoration: underline !important;
}

.footer-link {
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-title:after {
    content: '';
    width: 3px;
    color: red;
    z-index: 9999;
}

.desc {
    font-size: 15px;
}

.copyright {
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer {
        height: 800px !important;
    }
}