

    .poiret-one-regular {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    }

    :root {
        --primary-color: #e74c3c;
        --secondary-color: #34495e;
        --background-color: #ecf0f1;
        --text-color: #2c3e50;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body, html {
        font-family: "Poiret One", sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        line-height: 1.6;
        letter-spacing: 1.2px;
    }

    h1   {
        font-family: Rowdies;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    header {
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .top-banner {
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        padding: 10px 0;
        font-weight: bold;
    }

    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 2.5rem;
    /* font-weight: bold; */
    color: #000000;
    text-decoration: none;
    font-family: Rowdies;
    font-style: italic;
    letter-spacing: -1.5px;
    }

    .search-bar {
        flex-grow: 1;
        margin: 0 20px;
    }

    .search-bar input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .user-actions a {
        color: var(--text-color);
        text-decoration: none;
        margin-left: 20px;
    }

    nav {
        background-color: var(--secondary-color);
        font-size: 2.0rem;
        /* font-weight: bold; */
        color: #ffffff;
        text-decoration: none;
        font-family: Rowdies;
        font-style: italic;
    }

    nav ul {
        list-style-type: none;
        display: flex;
        justify-content: center;
    }

    nav ul li {
        position: relative;
    }

    nav ul li a {
        color: white;
        text-decoration: none;
        padding: 15px 20px;
        display: block;
        transition: background-color 0.3s;
    }

    nav ul li a:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .hero {
        background: url('hero-image.jpg') no-repeat center center;
        background-size: cover;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
    }

    .hero-content {
        position: relative;
        z-index: 1;
        background-color: #0000003d;
        border-radius: 30px;
        padding: 28px;

    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
        font-size: 1.1rem;
        font-weight: bold;
    }

    .cta-button:hover {
        background-color: #c0392b;
    }

    .featured-categories {
        padding: 50px 0;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .category-card {
        background-color: white;
        border-radius: 5px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .category-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .category-info {
        padding: 20px;
    }

    .category-info h3 {
        margin-bottom: 10px;
    }

    .featured-products {
        padding: 50px 0;
        background-color: white;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-card {
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .product-card img {
        max-width: 100%;
        height: 200px;
        object-fit: contain;
    }

    .product-info h3 {
        margin: 10px 0;
        font-size: 1rem;
    }

    .price {
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    footer {
        background-color: var(--secondary-color);
        color: white;
        padding: 50px 0;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-section ul {
        list-style-type: none;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        color: white;
        text-decoration: none;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .logoimg {
        width:120px;
    }

    .video-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        
  }

  .bikes-hero {
    background: url('bikes-hero.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.bikes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.bikes-hero-content {
    position: relative;
    z-index: 1;
}

.bikes-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bikes-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.featured-bikes {
    padding: 50px 0;
    background-color: white;
}

.bike-categories {
    padding: 50px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    margin-bottom: 10px;
}

.featured-bikes {
    padding: 50px 0;
    background-color: white;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bike-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bike-card img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

.bike-info h3 {
    margin: 10px 0;
    font-size: 1.1rem;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}