body {
  background: #2a2a2a;
  background-size: cover;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  padding: 20px;
}

#hero {
  width: 100%;
  height: 70vh;
  background: url("../img/hero-bg.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}
/* 
#hero .hero-text {
  position: absolute;
  left: 0;
  top: 200px;
  right: 0;
  height: calc(50% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
} */

.category-title {
  text-align: center;
  margin: 40px 0;
  font-size: 36px;
  font-weight: 700;
  color: #ff6600;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #ff6600, #ffa500);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.category-item {
  max-width: 300px;
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-item .card-body {
  text-align: center;
}

.category-item h5 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.category-item p {
  color: #cccccc;
  margin-bottom: 15px;
}

.category-item a {
  display: inline-block;
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

.category-item a:hover {
  color: #ffa500;
}

.category-item:hover {
  transform: translateY(-10px);
}
