
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #555;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn.active {
    background-color: #555;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}


header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a:hover {
    color: #ea0707e1;
}

.hero {
    height: 100vh;
    background: url('high sneaker.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    animation: zoom 20s infinite alternate;
}

@keyframes zoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 120%;
    }
}

.hero-content {
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}


.products {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-buttons {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-container {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    text-align: center;
    padding: 0 1rem;
}

.slide img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 0 1rem;
    margin-top: 1rem;
}

.product-card p {
    padding: 0 1rem;
    margin: 0.5rem 0;
    font-weight: bold;
    color: #555;
}

.product-card .btn {
    margin: 1rem;
    width: calc(100% - 2rem);
}


.contact {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
}

.error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}


footer {
    text-align: center;
    padding: 2rem;
    background-color: #333;
    color: white;
}


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    nav ul {
        display: none;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slider-btn {
        padding: 0.5rem;
        font-size: 1rem;
    }
}