@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:wght@300;400;500&family=Poppins:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #ffffffe1;
    z-index: 999;
}

.logo-box {
    display: flex;
    gap: 10px;
    font-weight: 800;
}

.image-div {
    background: url(assets/shoeLogo.png);
    width: 50px;
    height: 20px;
    background-position: center;
    background-size: cover;
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 50px;
    list-style: none;
}

.navbar ul li a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-family: 'DM Mono';
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: black;
    transition: transform 0.3s ease;
}

.navbar ul li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 100px 30px 0 30px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    padding: 15px 0 25px 0;
    border-top: 2px solid #454545;
}

.mobile-menu ul li a {
    position: relative;
    text-decoration: none;
    font-size: 64px;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.8px;
    font-family: 'Bebas Neue', sans-serif;
}

.mobile-menu ul li:last-child {
    border-bottom: 2px solid #454545;
}

.mobile-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    transform: scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 5px;
    border-radius: 25px;
    background-color: black;
    transition: transform 0.3s ease;
}

.mobile-menu ul li a:hover::after {
    transform: scaleX(1);
}

.hero {
    width: 100vw;
    height: 100vh;
    background: url(assets/bg.png) center/cover no-repeat;
    padding: 80px 30px 0 30px;
    display: flex;
    flex-direction: row;
}

.text {
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text h1 {
    font-size: 12vw;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.8;
}

.desc {
    font-size: 18px;
    font-family: cursive, sans-serif;
}

.buy-btn {
    color: white;
    font-size: 18px;
    width: fit-content;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    border-radius: 25px;
    padding: 10px 20px;
    background: linear-gradient(to right, #000, #171717, #242424, #454545);
    transition: all 0.5s ease;
}

.buy-btn:hover {
    scale: 1.05;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}

.image-swipper{
    width: 50%;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin: auto;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}


.swiper-pagination .swiper-pagination-bullet {
    background-color: #999;
    opacity: 1;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 6px ;
    transition: background-color 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #000;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        flex-direction: column;
    }

    .text,
    .image-swipper {
        width: 100%;
        height: 100%;
    }

    .swiper {
        height: 100%;
    }
}
