/* exact globals.css from spec */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body { height: 100%; background-color: #f3ebe4; font-family: 'Inter', system-ui, sans-serif; }

.destinations-page { overflow-y: auto; }

.hero-container { position: relative; width: 100vw; height: 100vh; display: flex; }
.left-bg  { width: 50vw; height: 100%; background-color: #f3ebe4; }
.right-bg { width: 50vw; height: 100%; position: relative; display: flex; justify-content: flex-end; align-items: flex-end; padding: 30px; }
.bg-image-wrapper { position: absolute; inset: 0; z-index: 0; }

.text-layer-wrapper { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; pointer-events: none; z-index: 20; }
.text-black-side { color: #1c1c1c; clip-path: inset(0 50% 0 0); }
.text-white-side { color: white;   clip-path: inset(0 0 0 50%); }

.gem-card { position: relative; z-index: 30; background: white; border-radius: 32px; padding: 16px; display: flex; gap: 24px; width: 100%; height: 200px; box-shadow: 0 25px 60px -15px rgba(0,0,0,0.15); }
.gem-image-box { width: 200px; height: 100%; border-radius: 20px; }
.gem-content { display: flex; flex-direction: column; justify-content: space-between; padding: 8px 0; }
#explorebtn { padding: 12px 24px; }

.footerLink { color: #000; }
.footerLink:hover { margin-left: 10px; color: #555; }

#destcontainer { padding: 30px; padding-top: 100px; }
#Popular { margin-bottom: 1rem; }
#infocard { padding: 24px; gap: 24px; }
#tourcontainer { padding: 30px; }
#bookbtn { padding: 8px; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }

@media (max-width: 1000px) {
  .gem-image-box { display: none; }
  .gem-content p { font-size: 15px; }
  #destcontainer { padding: 20px; padding-top: 80px; }
}

@media (max-width: 850px) {
  #topContent { padding: 6px; gap: 10px; }
  .left-bg, .text-black-side { display: none; }
  .right-bg { width: 100vw; padding: 0; }
  .text-white-side { clip-path: none; width: 100vw; color: white; }
  .gem-card { max-width: 100%; flex-direction: column; border-radius: 40px 40px 0 0; padding: 24px; gap: 15px; position: fixed; bottom: 0; left: 0; right: 0; box-shadow: 0 -15px 50px rgba(0,0,0,0.15); }
  .gem-image-box { display: none; }
  .gem-content { width: 100%; text-align: left; }
  .gem-content p { font-size: 12px; }
  #destcontainer { padding: 10px; padding-top: 120px; }
}

@media (max-width: 500px) {
  #tourcontainer { padding: 10px; padding-top: 100px; justify-content: center; }
  #searchInput { margin-bottom: 3rem; }
}

::selection { background: black; color: white; }
