/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-links a.active {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffed4a;
}

/* Services Section */
.services-preview {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.services-grid .service-item img {
    border: 2.5px solid #000;
    border-radius: 8px;
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 60px;
    max-height: 60px;
    background: #fff;
}

/* Contact Preview Section */
.contact-preview {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #fff;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #ffd700;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Animation for mobile menu */
.nav-active {
    display: flex;
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background-color: #fff;
    overflow: hidden;
}

.brands-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.brands-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-scroll {
    display: flex;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.brand-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
}

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

/* Pause animation on hover */
.brands-scroll:hover {
    animation-play-state: paused;
}

/* Meet Titans Section */
.meet-titans {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.meet-titans h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    color: #fff;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
}

.shop-now-btn {
    display: block;
    width: 80%;
    margin: 1rem auto;
    padding: 0.8rem;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shop-now-btn:hover {
    background-color: #FFC800;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FFD700;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    z-index: 1;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #FFD700;
    background: transparent;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #FFD700;
    color: #000;
}

/* Enhanced Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #000;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Updated Hero Section */
.hero-section {
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.canyon.com/dw/image/v2/BCML_PRD/on/demandware.static/-/Sites-canyon-storefront/default/dwead92c71/category-landing/mountain/seo-mtb-light.jpg?sw=1280&sfrm=jpg&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-item img {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Hero Image Section (for Contact & Gallery) */
.hero-image {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.canyon.com/dw/image/v2/BCML_PRD/on/demandware.static/-/Sites-canyon-storefront/default/dwead92c71/category-landing/mountain/seo-mtb-light.jpg?sw=1280&sfrm=jpg&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .hero-image {
        height: 35vh;
    }
}

/* Popular Products Section */
.popular-products {
    padding: 4rem 2rem;
    background-color: #fff;
}

.popular-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    text-align: center;
    padding: 2rem 1rem 1.5rem 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.product-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.product-card .sale-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #FFD700;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.buy-now-btn {
    display: block;
    width: 80%;
    margin: 1.2rem auto 0 auto;
    padding: 0.8rem 0;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    letter-spacing: 0.5px;
}

.buy-now-btn:hover {
    background-color: #FFC800;
    color: #222;
}

@media (max-width: 600px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}

/* Workshop Pickups Section - Improved Layout */
.workshop-pickups-section {
    background: #fafbfc;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.workshop-pickups-info, .pickup-steps {
    flex: 1 1 320px;
    min-width: 320px;
}

.workshop-pickups-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #222;
    font-weight: 800;
}

.workshop-pickups-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.7rem 0;
    color: #222;
    font-weight: 700;
}

.workshop-pickups-section ul, .workshop-pickups-section ol {
    margin: 0 0 1.2rem 1.2rem;
    padding: 0;
}

.workshop-pickups-section li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    line-height: 1.6;
}

.pickup-logistics li strong {
    color: #d4af37;
}

.workshop-pickups-section hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 1.5rem 0;
}

.pickup-notes p {
    margin-bottom: 0.7rem;
    color: #444;
    font-size: 1rem;
}

.pickup-steps {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    margin-top: 1.5rem;
}

.pickup-steps h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.pickup-steps ol {
    list-style: none;
    counter-reset: pickup-step;
    margin-left: 0;
}

.pickup-steps li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.08rem;
    color: #222;
}

.pickup-steps li:before {
    content: counter(pickup-step);
    counter-increment: pickup-step;
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 1.7rem;
    height: 1.7rem;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .workshop-pickups-section {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    .workshop-pickups-info, .pickup-steps {
        min-width: 0;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #fafbfc;
    padding: 4rem 0;
}

.contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-size: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #f7f7f7;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #FFD700;
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .submit-btn {
    width: 100%;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}

.contact-form .submit-btn:hover {
    background: #FFC800;
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 1.2rem 0.5rem;
    }
}

/* About Us Section on Homepage */
.about-home {
    background: #fff;
    padding: 4rem 0 3rem 0;
}

.about-home-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-home-text {
    flex: 1 1 340px;
    min-width: 280px;
}

.about-home-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-home-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
}

.about-btn {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
}

.about-btn:hover {
    background: #FFC800;
    color: #222;
}

.about-home-image {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-home-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
    .about-home-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    .about-home-image img {
        max-width: 100%;
    }
} 