/* ---------- HERO (landing banner) ---------- */
.hero{
  position: relative;
  min-height: 100vh;                 /* full screen */
  background: url('/images/andaman.jpg') center center / cover no-repeat; /* put your image in public/images */
  color: #fff;
}
.hero .overlay{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);        /* darken image so text pops */
}
.hero .content{
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}

.footer-theme{
  background:#0a4b78;            /* choose your footer color */
  color:#e9f2f9;
}
.footer-theme h6{ color:#fff; }
.footer-theme a{ color:#cfe6ff; text-decoration:none; }
.footer-theme a:hover{ color:#fff; text-decoration:underline; }
.footer-theme hr{ border-color:rgba(255,255,255,.18); }
.footer-theme .text-muted{ color:#d7e4ef !important; }
/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: .6s ease; }
.reveal.show { opacity: 1; transform: none; }
.package-card:hover { transform: translateY(-3px); transition: .2s; }
