@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.bg-img {

    background-image: url(../img/web/newbg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-attachment: fixed;

}

/* landing-shop-btn */

.btn-custom {
    transition-duration: 0.5s;
    scale: 100%;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -50%;
    width: 200%;
    height: 100%;
    background: rgba(138, 138, 138, 0.3);
    transform: rotate(45deg);
    transition: left 0.5s;
}

.btn-custom:hover::before {
    left: 150%;
}

.btn-custom:hover {
    background-color: rgb(1, 15, 82);
    color: rgb(255, 255, 255);
    scale: 110%;
}





/* after landing 3 img  */

.image-container {
    position: relative;
    display: inline-block;

}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    scale: 95%;
    transition-duration: 0.2s;
    cursor: pointer;

}

.image-container img:hover {
    scale: 100%;
    filter: brightness(80%);
}

.image-container .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}



.image-container:hover .icon {
    opacity: 1;
    cursor: pointer;
}

.anton-font {
    font-family: "Anton", sans-serif;
}




/* shop-banner */

.shop-banner {
    background-image: url(../img/web/shop-banner.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

/* Media query for mobile devices */
@media (max-width: 640px) {

    /* landing_page_img */
    .bg-img {
        background-image: url(../img/web/mobileImg.jpg);
        background-size: cover;
        width: 100%;
        height: 100vh;
        background-position: center;
        background-attachment: fixed;

    }
}




/* Initial state: hidden and slightly translated down */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 2s ease-out, transform 1s ease-out;
  }
  
  /* Visible state: fully visible and no translation */
  .fade-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
