@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: Inter;
}


.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 15px 0;
    background-color: black;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content p {
    display: inline-block;
    margin: 0 30px;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header img {
    width: 300px;
    padding: 20px;
}

.navbar {
    display: flex;
    width: 100%;
    justify-content: center;
}

.navbar-links {
    display: flex;
    justify-content: center;
    font-size: 20px;
    gap: 30px;
}

.navbar-links a {
    text-decoration: none;
    color: black;
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    object-position: center;
    object-fit: cover;
    translate: 0px -10%;
}

.hero {
    position: relative;
    margin-top: 68vh;
    background-image: url("./src/hero.png");
    background-size: cover;
    width: 100%;
    min-height: 750px;
}

.hero a {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 24px;
    padding: 15px 80px;
    margin: 50px;
    border-radius: 10px;
}

.new-releases {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.new-releases h2 {
    font-size: 36px;
    padding: 50px;
    font-weight: 500;
}

.products-div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #F5F5F5;
    gap: 50px;
    border-radius: 20px;
    padding: 40px 70px;
}

.product {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: 450px;
    border-radius: 20px;
    background-color: white;
}

.product img {
    padding: 10px;
    max-width: 90%;
    height: 280px;
    object-fit: contain;
}

.product h3 {
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    margin-left: 50px;

}

.product-price {
    display: flex;
    margin-left: 50px;
    gap: 10px;
    width: 100%;
}

.product-price span {
    display: inline-block;
    font-size: 20px;
    color: red;
    text-decoration: line-through;
}

.product-price p {
    display: inline-block;
    font-size: 20px;
}

.product a {
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 60px;
    border-radius: 10px;
    margin: 20px;
}

#slideshow-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#slideshow-back {
    translate: 35px 0px;
}

#slideshow-next {
    translate: -35px 0px;
}

.asics-video {
    width: 100%;
    margin: 100px 0px -5px 0px;
}

.brand-div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 100px 100px 100px;
}

.brand-div img {
    width: 400px;
}

.brand {
    display: flex;
    margin: 80px;
    flex-direction: column;
    gap: 5px;
}

.brand p {
    font-size: 24px;
}

.brand h3 {
    font-size: 36px;
}

.brand a {
    font-size: 20px;
    background-color: black;
    padding: 10px 30px;
    width: 100px;
    text-align: center;
    text-decoration: none;
    color: white;
    margin-top: 30px;
}

.about-us {
    display: flex;
    justify-content: space-between;
    padding: 100px;
}

.about-us img {
    width: 400px;
    object-fit: cover;
    height: 400px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-text h2 {
    font-size: 30px;
    font-weight: 500;
}

.about-text p {
    font-size: 18px;
    width: 550px;
    text-align: justify;
}

.about-text a {
    font-size: 18px;
    background-color: black;
    padding: 10px 30px;
    width: 150px;
    margin-top: 50px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.contact-message {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    background-image: url("./src/borders.png");
    width: 100%;
    min-height: 400px;
    background-repeat: no-repeat;
    object-fit: cover;
}

.contact-us {
    display: flex;
    justify-content: space-between;
    padding: 100px;
}

.contact-us img {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-text h2 {
    font-size: 30px;
    font-weight: 500;
}

.contact-text p {
    font-size: 18px;
    width: 500px;
    text-align: justify;
}

.contact-socials {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 10px;
}

.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social a {
    text-decoration: none;
    font-size: 18px;
    color: black;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: black;
    padding: 50px;
}

.footer p {
    font-size: 16px;
    padding: 50px;
    color: white;
}

.footer-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

.footer-navbar img {
    width: 300px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

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

.legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 500px;
    padding: 30px;
    gap: 10px;
}

.legal a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.sneakers-title {
    font-weight: 500;
    margin: 150px 0px 50px 150px;
}

.sneakers-div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #F5F5F5;
    gap: 50px;
    border-radius: 20px;
    padding: 40px 70px;
    margin: 0px 150px 150px 150px;
}

.sneaker {
    display: flex;
    flex-direction: column;
    height: max-content;
    border-radius: 20px;
    background-color: white;
}

.sneaker img {
    padding: 10px;
    max-width: 90%;
}

.sneaker h3 {
    font-weight: 400;
    font-size: 1.2vw;
    width: 80%;
    margin-left: 50px;
}

.sneaker p {
    width: 100%;
    font-size: 1.3vw;
    margin-left: 50px;
    margin-bottom: 50px;
}

.sneaker-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sneaker-message img {
    width: 50%;
}

.page-title {
    font-weight: 600;
    font-size: 48px;
    margin: 10vw;
    text-align: center;
}

.hero2 {
    position: relative;
    background-image: url("./src/hero2.png");
    background-size: cover;
    width: 100%;
    min-height: 1000px;
    margin-top: 100px;
}

.hero2 a {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 24px;
    padding: 15px 80px;
    margin: 50px;
    border-radius: 10px;
}

.wrap {
    max-width: 90%;
    margin: 100px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 1.8rem;
    color: #222;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.sec {
    font-size: 1.1rem;
    color: #222;
    margin-top: 25px;
    border-left: 4px solid #222;
    padding-left: 10px;
}

.txt {
    line-height: 1.7;
    margin: 12px 0;
}

.line {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 30px 0;
}

.bold {
    font-weight: bold;
}

.link {
    color: #0066cc;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1000px) {
.header img {
    width: 250px;
    padding: 20px;
}
    .header-video {
        height: 400px;
        translate: 0px 50px;
    }

    .hero {
        position: relative;
        margin-top: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
    }

    .hero a {
        position: absolute;
        font-size: 14px;
        padding: 5px 30px;
        border-radius: 5px;
        margin: 10px;
    }

    .hero2 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        object-fit: cover;
        min-height: 30vh;
    }

    .hero2 a {
        position: absolute;
        font-size: 14px;
        padding: 5px 30px;
        border-radius: 5px;
        margin: 10px;
    }

    .new-releases h2 {
        font-size: 24px;
        padding: 20px;
    }

    .products-div {
        width: 100%;
        padding: 30px 0px;
    }

    .product {
        width: 250px;
        height: 400px;
    }

    #slideshow-back,
    #slideshow-next {
        display: none;
    }

    .asics-video {
        display: none;
    }

    .brand-div {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .brand-div img {
        width: 300px;
    }

    .brand {
        width: 300px;
        margin: 20px;
    }

    .brand a {
        width: 120px;
        text-align: center;
        margin-top: 20px;
    }

    .about-us {
        padding: 40px;
        flex-direction: column;
    }

    .about-us img {
        display: none;
    }

    .about-text {
        margin: 0;
        width: 100%;
    }

    .about-text p {
        width: 100%;
    }

    .about-text a {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .contact-us img {
        display: none;
    }

    .contact-us {
        padding: 40px;
    }

    .contact-text p {
        width: 100%;
    }

    .footer-navbar img {
        display: none;
    }

    .footer {
        padding: 30px;
    }

    .footer p {
        text-align: center;
    }

    .legal {
        width: 100%;
    }

    .sneakers-title {
        margin: 0;
        text-align: center;
        font-size: 24px;
        padding: 50px 0px;
    }

    .sneakers-div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 0;
        padding: 30px 20px;
    }
    .sneaker {
        justify-content: center;
        align-items: center;
    }
    .sneaker h3 {
        font-size: 3vw;
        margin-left: 10px;
    }

    .sneaker p {
        font-size: 3.5vw;
        margin-left: 0;
        width: 50%;
        text-align: center;
        padding: 15px;
    }

    .sneaker a {
        font-size: 2.75vw;
    }

    .sneaker-message img {
        padding: 10px;
        width: 80%;
    }

    .wrap {
        margin: 80px 20px;
        padding: 20px;
    }

    .title {
        font-size: 1.5rem;
    }

    .sec {
        font-size: 1rem;
        padding-left: 8px;
    }

    .txt {
        font-size: 0.95rem;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0; /* Initially hidden */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.appear {
    animation: fadeInUp 1s forwards;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0; /* Start hidden */
}
.product:hover, .sneaker:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero a:hover, .brand a:hover, .about-text a:hover, a:hover {
    animation: bounce 0.5s;
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
    opacity: 0;
}
#slideshow-back:hover, #slideshow-next:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
