/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

.text-success {
  color: #28a745 !important;
}

/* Header Styles */
.top-bar {
  font-size: 0.9rem;
}

.social-links a {
  font-size: 1rem;
}

header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h1 {
  font-weight: 700;
  font-size: 1.8rem;
}

.main-nav ul {
  padding: 0;
}

.main-nav ul li a {
  font-weight: 500;
  position: relative;
}

.main-nav ul li a:hover {
  color: #198754;
}

.main-nav ul li a.active {
  color: #198754;
  font-weight: 600;
}

.main-nav ul li a.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #198754;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: white;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.8);
}

/* Tour Cards */
.section-title {
  position: relative;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 3px;
  background-color: #198754;
}

.tour-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.tour-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.1);
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 0;
  background-color: #dc3545;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.best-selling-badge {
  position: absolute;
  top: 10px;
  right: 0;
  background-color: #ffc107;
  color: #333;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.tour-card-body {
  padding: 20px;
  background-color: white;
}

.tour-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.tour-card-price {
  margin-bottom: 10px;
}

.original-price {
  text-decoration: line-through;
  color: #dc3545;
  margin-right: 10px;
  font-weight: 500;
}

.discounted-price,
.current-price {
  color: #198754;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
}

footer h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
}

footer a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 0.8rem;
  }

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

  .hero-section {
    padding: 40px 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }
}
