/* Top Locations Section */
.toploc-section {
  padding: 4rem 1rem;
  background-color: #fff;
}

.toploc-container {
  max-width: 1200px;
  margin: auto;
}

.toploc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.toploc-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.toploc-header p {
  font-size: 1.1rem;
  color: #666;
}

/* Location Grid */
.toploc-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .toploc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .toploc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.toploc-card {
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background-color: #fdfdfd;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.toploc-card:hover {
  transform: translateY(-5px);
}

.toploc-figure {
  margin: 0;
}

.toploc-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content */
.toploc-content {
  padding: 1.25rem;
}

.toploc-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.toploc-description {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.toploc-link {
  color: #3E2723;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.toploc-link:hover {
  color: #000;
}


/*##################################*/

Location Detail Page
/* Location Detail Section */
.locdtl-section {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #f9f9f9;
  padding: 2rem 1rem;
}

/* Hero */
.locdtl-hero {
  display: flex;
  flex-direction: column-reverse;
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 2rem;
  overflow: hidden;
}

.locdtl-hero-text {
  padding: 2rem;
  flex: 1;
}

.locdtl-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #3E2723;
}

.locdtl-meta span {
  display: inline-block;
  font-size: 0.9rem;
  color: #666;
  margin-right: 1rem;
}

.locdtl-brief {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #444;
}

.locdtl-hero-image {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
}

.locdtl-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About */
.locdtl-about {
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  margin-bottom: 2rem;
}

.locdtl-about h2 {
  color: #3E2723;
  margin-bottom: 1rem;
}

.locdtl-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}

/* Video Section */
.locdtl-video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #eee;
  padding: 2rem;
  margin-bottom: 2rem;
}

.locdtl-video-text {
  flex: 1 1 60%;
}

.locdtl-video-text h3 {
  color: #E65100;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.locdtl-video-text p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.locdtl-link {
  text-decoration: none;
  color: #3E2723;
  font-weight: bold;
  transition: color 0.3s ease;
}

.locdtl-link:hover {
  color: #000;
}

.locdtl-video-icon {
  flex: 1 1 30%;
  text-align: center;
  font-size: 2rem;
  color: #E65100;
}

/* Featured Experiences */
.locdtl-experiences {
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  margin-bottom: 2rem;
}

.locdtl-experiences h3 {
  margin-bottom: 1rem;
  color: #3E2723;
}

/* SEO Metadata */
.locdtl-seo {
  background: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  margin-bottom: 2rem;
}

.locdtl-seo h3 {
  color: #3E2723;
  margin-bottom: 1rem;
}

.locdtl-seo ul {
  list-style: none;
  padding: 0;
}

.locdtl-seo li {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.locdtl-footer {
  text-align: right;
  font-size: 0.85rem;
  color: #888;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

/* Responsive */
@media (min-width: 768px) {
  .locdtl-hero {
    flex-direction: row;
  }

  .locdtl-hero-text, .locdtl-hero-image {
    width: 50%;
  }

  .locdtl-video {
    flex-wrap: nowrap;
  }
}
