/* Section layout */
.section-tours {
  padding: 4rem 1rem;
  background-color: #fafafa;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Grid layout */
.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .tour-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card design */
.tour-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.tour-image {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.tour-content {
  padding: 1rem;
  flex: 1;
}

.tour-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tour-duration {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 1rem;
}

.tour-description {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Footer link */
.tour-footer {
  padding: 1rem;
  border-top: 1px solid #eee;
  background-color: #f8f8f8;
  text-align: right;
}

.tour-link {
  color: #3E2723;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.tour-link:hover {
  color: #000;
}




/*TOUR DETAIL*/
/* Tour Detail Container */
.trdtl-section {
  padding: 4rem 1rem;
  background-color: #fff;
}

.trdtl-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header Section */
.trdtl-header {
  margin-bottom: 2rem;
}

.trdtl-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.trdtl-description {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Image */
.trdtl-image-wrapper {
  margin: 2rem 0;
}

.trdtl-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid #ddd;
}

/* Itinerary */
.trdtl-itinerary {
  margin-top: 2rem;
}

.trdtl-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #3E2723;
  padding-bottom: 0.5rem;
}

.trdtl-day {
  margin-bottom: 2rem;
}

.trdtl-day-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trdtl-day-list {
  list-style: none;
  padding: 0;
  color: #333;
}

.trdtl-day-list li {
  margin-bottom: 0.5rem;
}

/* Form Section */
.trdtl-form-section {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border: 1px solid #eee;
}

.trdtl-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trdtl-form p {
  margin: 0;
}

.trdtl-button {
  background-color: #3E2723;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.trdtl-button:hover {
  background-color: #5D4037;
}
