.container {
  max-width: 100vw; /* or whatever fits your design */
  margin: 0 auto;    /* centers the container */
  padding: 0;   /* prevents content from touching the edges on small screens */
}

.experience-hero {
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.experience-hero h1 {
  font-size: clamp(2.5rem, 3.8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0;
  margin-bottom: 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  color: #fff;
  text-shadow:
        0 2px 4px rgba(0,0,0,0.7),
        0 6px 20px rgba(0,0,0,0.6);
}

.experience-location {
  margin-top: 0;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1.2rem;
  width: fit-content;
}

.experience-tag {
  margin-top: 1rem;
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1.2rem;
  width: fit-content;
}


.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #fff8f0;
    padding: 1.5rem;
    border-radius: 20px;
}

/* Experience Highlights */
.experience-highlights {
  background: #f7f7f7;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.experience-highlights h2 {
  text-align: center;
  font-size: 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
}

.highlight-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.highlight-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}


/* Review */
.experience-review {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  line-height: 1.7;
  color: #222;
  
}

.experience-review h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.experience-review p {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  text-align: justify;
}

/* Photos Section */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-card img {
  width: 100%;
  height: 220px; /* or 220px if you like */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.experience-gallery h2 {
  text-align: center;      /* Center the text */
  font-size: 2rem;
  margin-bottom: 2rem;
}

.video-card video {
  width: 100%;
  height: 100%; /* match image card height */
  object-fit: contain;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.video-card:hover video {
  transform: scale(1.05);
}


/* Booking */
.experience-booking {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
  
}

.experience-booking h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.experience-booking p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.experience-booking .btn-book {
  display: inline-block;
  background-color: #f0c040; /* accent color */
  color: #111;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-booking .btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Related Experiences Section */
.related-experiences {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.related-experiences h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.related-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff8f0;
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card h3 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1.1rem;
  padding: 0 10px;
}

.related-card p {
  font-size: 0.9rem;
  color: #555;
  padding: 0 10px;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.experience-map {
  margin: 60px 0;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.experience-map h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}  

.map-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #f0c040;
}

/* Video Feature */ 
.video-feature {
  margin: 60px 0;
  text-align: center;
  background: #f7f7f7;
  padding: 20px;
}

.video-feature h2 {
  font-size: 2em;   /* match your other sections */
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center; /* optional but matches “feature section” feel */
}

.video-feature p {
  max-width: 1050px;
  margin: 0 auto 15px auto;
  line-height: 1.6;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 25px auto;
  aspect-ratio: 16 / 9; /* ✅ modern clean solution */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 12px;
  overflow: hidden;
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  display: block;
}

.video-caption {
  font-size: 0.95em;
  color: #666;
  margin-top: 10px;
}