/* Marsa Journeys - site-wide styles (moved unchanged from the base template) */

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at 25% 20%, #ffffff 0%, #f7faff 30%, #e3ecff 67%, #c9d8ff 100%),
    radial-gradient(circle at bottom right, rgba(183,210,255,0.55), transparent 70%);
  background-blend-mode: overlay;
  background-attachment: fixed;
  color: #132554;
  scroll-behavior: smooth;
  overflow-x: visible;
  min-height: 100vh;
}

/* NAVBAR */
.navbar {
  background: rgba(11, 34, 82, 0.6)!important;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(11, 34, 82, 0.85)!important;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}
.navbar-brand, .nav-link {
  color: #e9f2ff!important;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(0,0,0,0.35);
  transition: color .3s ease;
}
.navbar-brand img {
  height: 55px;
  margin-right: 8px;
  transition: transform .3s ease;
}
.navbar-brand:hover img { transform: scale(1.06) rotate(5deg); }
.nav-link:hover { color: #79b6ff!important; text-shadow: 0 0 8px rgba(95,155,255,0.7); }

/* HERO */
.hero-sec {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #fff;
}
.hero-sec video {
  position: absolute; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; filter: brightness(99%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,20,60,0.25), rgba(10,35,100,0.25));
  backdrop-filter: blur(0px); z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 880px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(7px);
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  animation: fadeInUp 1.8s ease both;
}
.hero-content h1 {
  font-size: 3rem; font-weight: 700;
  color: #eef5ff; text-shadow:0 5px 15px rgba(0,0,0,0.22);
}
.hero-content p {
  font-size: 1.25rem; color: #dbe3ff;
  margin-bottom: 2rem;
}

/* BUTTONS */
.compass-btn {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  min-width: 120px;
  cursor: default !important;
  transition: none !important;
  text-decoration: none !important;
}
.compass-btn:hover,
.compass-btn:focus,
.compass-btn:active {
   background: rgba(255,255,255,0.15) !important;
   color: #fff !important;
   border: 1px solid rgba(255,255,255,0.3) !important;
   box-shadow: none !important;
   transform: none !important;
}

.btn-hero {
  background: linear-gradient(145deg,#2d9eff,#0053ec);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all .3s ease-in-out;
  box-shadow: 0 5px 18px rgba(0,0,0,0.28);
}
.btn-hero:hover {
  box-shadow: 0 0 28px rgba(37,159,255,0.65);
  transform: scale(1.06);
}

/* CONTENT */
main {
  margin-top: 100px;
  padding: 60px 30px;
}

/* FOOTER */
footer {
  background: rgba(10,35,95,0.88);
  backdrop-filter: blur(14px);
  color: #e3ebff;
  position: relative;
  overflow: hidden;
}
footer::after {
  content: ''; position: absolute;
  top:-50%; left:0; width:200%; height:200%;
  background: radial-gradient(circle at 50% 10%, rgba(160,190,255,0.25) 0%, transparent 70%);
  animation: waveDrift 15s infinite alternate linear;
  opacity: .6;
}
@keyframes waveDrift { from{transform:translateX(0);} to{transform:translateX(-25%);} }

.footer-content {
  position: relative; z-index: 2;
  padding: 40px 20px 30px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  width: 90%;
  margin: auto;
}
.footer-content img {
  height: 120px;
  margin-bottom: 15px;
}
.footer-content p {
  font-size: 1.05rem;
  margin-bottom: 10px; color: #b9d3ff;
}
.footer-links a {
  color: #99c3ff;
  font-weight: 500;
  margin: 0 10px;
  text-decoration: none;
  transition: .3s ease;
}
.footer-links a:hover {
  color: #fff; text-shadow: 0 0 8px #1e90ff;
}
.social-icons i {
  font-size: 1.25rem; margin: 0 6px;
  color: #99c3ff;
  transition: color .3s ease, transform .3s ease;
}
.social-icons i:hover {
  transform: scale(1.15); color: #fff;
}
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 10px 0; font-size: .85rem; font-weight: 500;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Honeypot field for the public forms: invisible to humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
