.hero-banner {
  background: url("/images/banner1.jpg") no-repeat center center/cover;
  min-height: 80vh;
}

.btn-warning {
  background: #EAB308 !important;
}

.btn-custom {
  background-color: #EAB308;
  border: none;
  color: #fff;
}

.btn-custom:hover {
  background-color: #d4a107;
  /* darker shade on hover */
  color: #fff;
}

.tour-banner h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.tour-banner p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.tour-banner {
  position: relative;
  color: white;
}

.tour-banner h1,
.tour-banner p {
  position: relative;
  z-index: 2;
}

.price-tag {
  color: #000 !important;
  font-size: 22px;
}

.price-tag small {
  font-size: 16px;
  color: #363636;
}

.badge-left,
.badge-right {
  position: absolute;
  top: 10px;
  padding: 5px 10px;
  background: #ffba00;
  color: #000;
  font-weight: 600;
  border-radius: 5px;
  font-size: 12px;
  z-index: 5;
}

.badge-left {
  left: 10px;
}

.badge-right {
  right: 10px;
}

.card {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  /* hides image overflow when zoomed */
}

.card img {
  transition: transform 0.5s ease;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.counter-style h2 {
  color: #d1a306 !important;
}

.destination-box {
  height: 350px;
  border-radius: 12px;
  background-size: 100%;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.destination-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  transition: background 0.3s ease;
}

.destination-box:hover {
  background-size: 110%;
  /* zoom effect */
}

.destination-box:hover::before {
  background: rgba(0, 0, 0, 0.5);
  /* darker overlay on hover */
}

.destination-box .overlay {
  position: relative;
  z-index: 2;
}

.testimonial-img img {
  object-fit: contain;
  width: 20%;
  border-radius: 10px !important;
}

.btn-custom {
  background-color: #EAB308;
  border: none;
  color: #fff;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #d4a107;
  color: #fff;
}

.explore-btn {
  background-color: #EAB308;
  color: #000;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.explore-btn:hover {
  background-color: #d1a306;
  color: #fff;
  transform: scale(1.05);
}

.footer {
  background: linear-gradient(180deg, #1a2734 0%, #223344 100%);
}

.footer h6,
.footer h5 {
  margin-bottom: 15px;
}

.footer a:hover {
  color: #EAB308 !important;
  /* Yellow hover */
}

.footer hr {
  margin: 20px 0;
}

/*  ABOUT PAGE */

.about-banner {
  background-color: #2C3E51;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-banner h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.about-banner h1 span {
  color: #D4AF37;
  /* Wanderlust color */
}

.about-banner p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  background-color: #F9FAFB;
  padding: 80px 20px;
}

.about-section .container {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.about-section .col {
  flex: 1;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #2C3E51;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-section img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important;
}

.value-box {
  border-radius: 20px;
  padding: 20px 10px;
  border: none !important;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important;
}

.container-tour {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  gap: 20px;
}

/* Left Column (Filters) */
.filters {
  width: 25%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filters h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.filters h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

.filters label {
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
}

/* Right Column (Tours) */
.tours {
  width: 75%;
}

.tours h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.tours p {
  margin-bottom: 20px;
  color: #555;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.tour-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tour-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-info {
  padding: 15px;
}

.tour-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.tour-info p {
  font-size: 14px;
  color: #666;
  margin: 5px 0 10px;
}

.price {
  font-weight: bold;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background: #EAB308;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
}

.btn:hover {
  background: #d99a00;
}

.sidebar {
  height: 100%;
  background-color: #fff;
  padding: 20px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.logo span {
  margin-left: 10px;
}

.nav-link {
  color: #374151;
  font-weight: 500;
  margin-bottom: 10px;
}

.nav-link.active {
  background-color: #fef3c7;
  border-radius: 8px;
  padding: 8px 12px;
}

.card-box {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
}

.card-box h5 {
  font-size: 14px;
  color: #6b7280;
}

.card-box h2 {
  font-size: 28px;
  font-weight: bold;
}

.quick-actions .btn {
  width: 48%;
}

.main-content {
  flex: 1;
  padding: 30px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 24px;
  margin: 0;
}

.header p {
  margin: 5px 0 0;
  color: #555;
}

.header button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.header button:hover {
  background-color: #1d4ed8;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}

th {
  background-color: #f3f4f6;
  font-weight: bold;
}

td button {
  margin-right: 8px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.btn-edit {
  background-color: #10b981;
  color: white;
}

.btn-delete {
  background-color: #ef4444;
  color: white;
}

.btn-edit:hover {
  background-color: #059669;
}

.btn-delete:hover {
  background-color: #dc2626;
}

@media (max-width: 425px) {
  .footer {
    text-align: center !important;
  }

  .tours .row>div {
    width: 100% !important;
  }

  .container-tour {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .filters {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .filters h2,
  .filters h3,
  .filters label {
    text-align: center;
    display: block;
  }

  .tours {
    width: 100%;
    text-align: center;
  }

  .tours .row>div {
    width: 100% !important;
  }

  .tour-card {
    text-align: center;
  }

  .tour-card .d-flex {
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .tours .row>div {
    width: 50% !important;
  }
}

@media (max-width: 768px) {
  #filtersSection {
    display: none;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
  }

  #filtersSection.active {
    display: block;
  }
}

/* 📱 Filter Toggle */
#filtersSection {
  display: block;
}

@media (max-width: 768px) {
  #filtersSection {
    display: none;
  }

  #filtersSection.active {
    display: block;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
  }
}

/* 📱 Responsive card image */
.tour-card img {
  height: 200px;
  object-fit: cover;
}

.about-banner span {
  color: #ffc107;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}

.modal-dialog {
  max-width: 90%;
}

.modal-body img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}