/* Global Styles - style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

body, html {
    font-family: 'Poppins', sans-serif;
}

.bg-black {
    background-color: black;
}

/* Navigation Styles */
.nav-top {
    transition: all .5s ease;
    background: black;
}

.nav-top .nav-item {
    color: white;
    font-size: 17px;
    border-bottom: 2px solid transparent;
    font-style: italic;
    transition: all .5s ease; 
    position: relative;
}

.nav-top .nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 1.5px;
    left: 0;
    background: #d0132b;
    transition: all .5s ease;
}

.nav-top .nav-item.active,
.nav-top .nav-item:hover {
    color: white;
}

.nav-top .nav-item.active:after,
.nav-top .nav-item:hover:after {
    width: 100%;
}

.nav-top.scrolled {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Button Styles */
.btn-red {
    background: #d0132b;
    color: white;
    font-weight: 600;
    border-radius: 0px;
}

.btn-red:hover {
    background: #d0132b;
    color: white;
    opacity: .9;
}

.btn-slide {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 3px solid white;
    color: white;
    transition: all .5s ease;
}

.btn-slide:hover {
    background-color: rgba(212, 16, 33, 0.5);
}

/* Utility Classes */
.color-white {
    color: white;
}

.color-red {
    color: #d0132b;
}

.fs-17 {
    font-size: 17px;
}

.fs-13 {
    font-size: 13px;
}

.fw-500 {
    font-weight: 500;
}

.lh-custom {
    line-height: 160%;
}

/* Card Styles */
.card-howto {
    background: #21232f;
    padding: 2rem 1rem;
    border-radius: 15px;
}

.card-product {
    background: #0a1024;
    padding: 2rem;
    border-radius: 15px;
}

.card-product .title {
    color: white;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1rem;
    font-size: 18px;
    letter-spacing: 1px;
    color: #c6f132;
}

.card-product .subtitle {
    color: white;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    font-style: italic;
}

.card-product img {
    width: 100%;
    transition: all .5s ease;
}

.card-product:hover img {
    transform: translateY(-15px);
}

/* Owl Carousel */
.owl-dots {
    margin-top: 20px !important;
}

/* Gallery */
.gallery .img {
    overflow: hidden;
}

.gallery img {
    object-fit: cover;
    width: 100%;
    transition: all 1s ease;
}

.gallery img:hover {
    transform: scale(1.2);
}

/* Number Badge */
.numb {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #d0132b;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 30px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu {
    position: fixed;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    left: 0;
    width: 100%;
    z-index: 100;
    overflow: auto;
}

.nav-top.show-mobile {
    background: black;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    position: relative;
    padding-left: 40px;
}

.nav-mobile a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: white;
}

.socials a {
    color: white;
    text-decoration: none;
    font-size: 30px;
}

/* Menu Button */
.menu-button {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-button span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}     

.menu-button.open span {
    background: #d0132b !important;
}

.menu-button span:nth-child(1) {
    transform: translateX(-25%) rotate(0deg);
    top: 10px;
}            

.menu-button span:nth-child(2) {
    top: 20px;
}            

.menu-button.open span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}

.menu-button.open span:nth-child(2) {
    top: 14px;
    transform: rotate(-45deg);
}

/* Responsive Utilities */
.x-scroll:not(.show-scroll)::-webkit-scrollbar {
    display: none;
}

.x-scroll:not(.show-scroll) {
    -ms-overflow-style: none;
    scrollbar-width: none;        
}    

.x-scroll {
    width: 100%;
    overflow-x: auto;
}    

.x-item:not(.x-auto) {
    width: 90%;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .fs-sm-15 {
        font-size: 15px;
    }
    
    .nav-top {
        background: transparent;
    }
    
    .nav-top.scrolled {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .btn-red {
        font-size: 14px;
    }
    
    .navbar-brand img {
        width: 55px;
    }
    
    #btn-contact {
        padding: .3rem 1rem !important;
        font-size: 13px;
    }
}