/* Global Styles */
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #333;
	background-color: #f5f5f5;
	line-height: 1.5;
    padding-top: 100px;
}

a {
	color: #007bff;
	text-decoration: none;
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Navbar Styles */
.navbar {
	background-color: #343a40;
}

.nav-link {
	color: #fff !important;
	font-weight: bold;
}

.nav-link:hover {
	color: #ffc107 !important;
}

/* Jumbotron Styles */
.jumbotron {
	background-image: url('https://p1.pxfuel.com/preview/572/753/203/bike-bicycle-ride-travel.jpg');
	background-size: cover;
	background-position: center;
	min-height: 350px;
	padding: 3rem;
	margin-bottom: 2rem;
	color: #fff;
	text-shadow: 1px 1px #333;
}

.jumbotron h1 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.jumbotron p {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

/* Card Styles */
.card {
	background-color: #fff;
	border: none;
	border-radius: .25rem;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
	margin-bottom: 2rem;
}

.card h3 {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.card p {
	margin-bottom: 1rem;
}

.card-img-top {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}

/* Footer Styles */
.page-footer {
	background-color: #343a40;
	color: #fff;
	margin-top: 2rem;
}

.page-footer h5 {
	font-weight: bold;
	margin-bottom: 1rem;
}

.page-footer ul li {
	margin-bottom: .5rem;
}

.page-footer i {
	margin-right: .5rem;
}

/* Blog Styles */
.blog h2 {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 2rem;
}

.blog h3 {
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.blog p {
	margin-bottom: 1rem;
}

.blog img {
	max-width: 100%;
	margin-bottom: 1rem;
}

/* Accessories Styles */
.accessories h2 {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 2rem;
}

.accessories .card {
	max-width: 350px;
	margin-bottom: 2rem;
}

.accessories .card-img-top {
	height: 200px;
	object-fit: cover;
}

.accessories .card-body {
	text-align: center;
}

.accessories .card-title {
	font-weight: bold;
	font-size: 1.25rem;
	margin-bottom: .5rem;
}

.accessories .card-text {
	margin-bottom: 1rem;
}

.accessories .price {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: .5rem;
}

/* Contact Styles */
.contact h2 {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 2rem;
}

.contact .form-group label {
	font-weight: bold;
	margin-bottom: .5rem;
}

.contact .form-control {
	border-radius: 0;
	margin-bottom: 1rem;
}

.contact button {
	background-color: #343a40;
    color: #fff;
    border-radius: 0;
    font-weight: bold;
    }
    
    .contact button:hover {
    background-color: #ffc107;
    }
    
    .contact .alert {
    margin-top: 1rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 768px) {
    .jumbotron h1 {
    font-size: 3rem;
    }

    .jumbotron p {
        font-size: 1.25rem;
    }
    
    .accessories .card {
        max-width: none;
    }
}    