/* ===== Global Styles ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  transition: background-color 1s ease;
  padding-top: 0 !important;

  /* 🏍️ Custom Bike Cursor */
  cursor: url("/static/images/bike-cursor.cur"), auto;
}

a, button, .btn, .nav-link {
  cursor: url("/static/images/bike-cursor.cur"), pointer;
}

/* ===== Navbar ===== */
.navbar {
  background-color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.navbar .logo {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.navbar ul li a:hover {
  text-decoration: underline;
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: rgba(255, 255, 255, 0.8);
}

.hero-section {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#typed-text {
  font-size: 28px;
  color: white;
  font-weight: 500;
  margin-top: 10px;
  min-height: 40px;
}

/* ===== Sections ===== */
.about,
.gallery,
.contact {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Gallery ===== */
.gallery-images {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.gallery-images img {
  width: 30%;
  border-radius: 8px;
  object-fit: cover;
}

/* ===== Forms ===== */
form label {
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  max-width: 400px;
  margin-bottom: 15px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

form button {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
}

form button:hover {
  background-color: #2980b9;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 15px 0;
  background-color: #222;
  color: #fff;
}

/* ===== Sliding Banner ===== */
.sliding-banner {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Carousel ===== */
.carousel,
#heroCarousel,
.carousel-inner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.carousel-item img {
  height: 85vh;
  object-fit: cover;
}

/* ===== Author Box ===== */
.author-box {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
}

.author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin: 0;
  font-size: 18px;
}

.author-info p {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.5;
}

.author-links a {
  font-size: 13px;
  text-decoration: none;
  color: #3498db;
}

.author-links a:hover {
  text-decoration: underline;
}
