/* Tour-specific styles to add to main styles.css */

/* Tour Hero Section */
.tour-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.tour-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.tour-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.5);
  z-index: -1;
}

.tour-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  z-index: 1;
}

.tour-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tour-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.tour-hero-details {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tour-hero-details .duration,
.tour-hero-details .price {
  background: rgba(217, 119, 6, 0.9);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Tour Details Section */
.tour-details {
  padding: 6rem 0;
  background: white;
}

.tour-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tour-main-content h2 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}

.tour-main-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.tour-highlights {
  background: #faf8f5;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.tour-highlights h3 {
  color: #2c1810;
  margin-bottom: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.detail-item {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #d97706;
}

.detail-item strong {
  color: #2c1810;
}

.included-excluded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.included,
.excluded {
  background: #faf8f5;
  padding: 2rem;
  border-radius: 20px;
}

.included h3 {
  color: #059669;
  margin-bottom: 1rem;
}

.excluded h3 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.included ul,
.excluded ul {
  list-style: none;
  padding: 0;
}

.included li,
.excluded li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.included li:last-child,
.excluded li:last-child {
  border-bottom: none;
}

.tour-description {
  margin-top: 3rem;
}

.tour-description h3 {
  color: #2c1810;
  margin-bottom: 1.5rem;
}

/* Booking Form */
.booking-form-container {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.booking-form {
  background: linear-gradient(135deg, #faf8f5, #f3f4f6);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.booking-form h3 {
  color: #2c1810;
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c1810;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.booking-buttons .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Tour Gallery */
.tour-gallery {
  padding: 6rem 0;
  background: #faf8f5;
}

.tour-gallery h2 {
  text-align: center;
  color: #2c1810;
  margin-bottom: 3rem;
}

/* Reviews Section */
.reviews {
  padding: 4rem 0;
  background: white;
}

.reviews-header {
  text-align: center;
}

.reviews-header h2 {
  color: #2c1810;
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stars {
  color: #fbbf24;
  font-size: 1.5rem;
}

.rating-text {
  color: #6b7280;
  font-weight: 600;
}

.tripadvisor-logo {
  height: 30px;
}

/* Related Tours */
.related-tours {
  padding: 6rem 0;
  background: #faf8f5;
}

.related-tours h2 {
  text-align: center;
  color: #2c1810;
  margin-bottom: 3rem;
}

.related-tours .tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design for Tour Pages */
@media (max-width: 1024px) {
  .tour-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-form-container {
    position: static;
  }
}

@media (max-width: 768px) {
  .tour-hero-content h1 {
    font-size: 2.5rem;
  }

  .tour-hero-details {
    flex-direction: column;
    align-items: center;
  }

  .included-excluded {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .related-tours .tours-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tour-hero-content h1 {
    font-size: 2rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .tour-highlights,
  .included,
  .excluded {
    padding: 1.5rem;
  }
}
