/* Thor's Thunder Wash — public landing (Dynamic Watercolor Theme) */
html, body {
  max-width: 100%;
  overflow-x: hidden; /* Forcefully destroys the horizontal scrollbar entirely */
}



body.landing-page {
  /* This creates room at the top of the webpage so the fixed navbar doesn't cover your image content */
  padding-top: 63px !important; 
}


.landing-page {
  /* Water Flow Color Palette Variables */
  --landing-deep: #0c4a6e;      /* Deep Abyssal Sea Blue */
  --landing-primary: #0284c7;   /* Rich Water Blue */
  --landing-light: #e0f2fe;     /* Clear Crystal Sky Blue */
  --landing-accent: #f1c40f;    /* Thor's Thunder Yellow */
  font-family: 'Inter', system-ui, sans-serif;
  color: #1e293b;
  background: #d8deff;          /* Softest light water background tint */
}

/* Glassmorphism Top Navigation Bar Grid */
.landing-nav {
  background: rgba(12, 74, 110, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid #0ea5e9;
  box-shadow: 0 4px 24px rgba(2, 132, 199, 0.15);
  padding: 0.85rem 0;
  z-index: 1030 !important;
}

.landing-nav .navbar-brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff !important;
  text-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.landing-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.landing-nav .nav-link:hover {
  color: var(--landing-accent) !important;
}

/* Interface Layout Interactive Buttons */
.landing-btn-login {
  border: 2px solid rgba(14, 165, 233, 0.4);
  color: #fff !important;
  font-weight: 600;
  padding: 0.45rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}

.landing-btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff !important;
}

.landing-btn-cta {
  background: linear-gradient(135deg, var(--landing-accent) 0%, #d4ac0d 100%);
  color: var(--landing-deep) !important;
  font-weight: 700;
  padding: 0.5rem 1.45rem;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0 4px 14px rgba(241, 196, 15, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.5);
}

/* FORCE BREAKOUT WRAPPER UPWARD */
.landing-hero-wrap {
  position: relative;
  width: 100%;               /* Changed from 100vw to a safe 100% boundary */
  margin-left: 0 !important;  /* Cleans up and removes the offset margin calculations */
  margin-right: 0 !important; /* Cleans up and removes the offset margin calculations */
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  height: auto;
  display: block;
  overflow: hidden;           /* Cleanly slices off any potential pixel leakage */
}


.landing-hero-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to top, #f0f9ff 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.landing-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: none !important;
  margin: 0 !important;         /* Forces absolute resetting */
}


@media (min-width: 1200px) {
  .landing-hero-img {
    max-height: none !important;
    margin-top: -45px; /* Pulls it up slightly more on wider laptop/desktop views */
  }
}


/* Content Typography Wrappers */
.landing-tagline {
  text-align: center;
  padding: 6rem 1rem 1.5rem;
  max-width: 740px;
  margin: 0 auto;
}

.landing-tagline h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  color: var(--landing-deep);
  line-height: 1.25;
  background: linear-gradient(135deg, var(--landing-deep) 0%, var(--landing-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-tagline p {
  color: #475569;
  font-size: 1.05rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.landing-features {
  padding: 2.5rem 0 4rem;
}

/* Watercolor Dynamic Feature Info Cards */
.landing-feature-card {
  background: #fff;
  border-radius: 1.15rem;
  padding: 2.25rem 1.75rem;
  height: 100%;
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: 0 10px 35px rgba(2, 132, 199, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 16px 45px rgba(2, 132, 199, 0.1);
}

.landing-feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #38bdf8 0%, var(--landing-primary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.landing-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--landing-deep);
  margin-bottom: 0.65rem;
}

.landing-feature-card p {
  font-size: 0.94rem;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Wave-like Deep Ocean Bottom Action Band */
.landing-cta-band {
  background: linear-gradient(135deg, var(--landing-deep) 0%, #032436 100%);
  color: #fff;
  padding: 4.5rem 1.5rem;
  text-align: center;
  border-radius: 2.5rem 2.5rem 0 0;
  box-shadow: 0 -10px 30px rgba(2, 132, 199, 0.05);
}

.landing-cta-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.landing-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Deep Sea Footer base layout */
.landing-footer {
  background: #061521;
  color: rgba(255, 255, 255, 0.55);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.landing-footer strong {
  color: #38bdf8;
  letter-spacing: 0.5px;
}



/* --- THOR'S THUNDER WASH — POPPABLE BUBBLE SYSTEM --- */

.water-bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* CHANGED: Set to auto so mouse clicks can touch the bubbles, but z-index -1 keeps them behind main cards */
  pointer-events: auto; 
  z-index: -1; /* Bring slightly forward so they can be clicked, background text stays readable */
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -40px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(2, 132, 199, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.5);
  animation: floatUp 15s infinite linear;
  cursor: pointer; /* Changes mouse cursor to a pointer hand when hovering over a bubble */
  transition: transform 0.1s ease;
}

/* Subtle varying positions, slow duration, and staggered delays for a calm look */
.bubble:nth-child(1) { left: 15%; width: 35px; height: 35px; animation-delay: 0s; animation-duration: 16s; }
.bubble:nth-child(2) { left: 35%; width: 25px; height: 25px; animation-delay: 3s; animation-duration: 12s; }
.bubble:nth-child(3) { left: 60%; width: 45px; height: 45px; animation-delay: 6s; animation-duration: 18s; }
.bubble:nth-child(4) { left: 78%; width: 28px; height: 28px; animation-delay: 1.5s; animation-duration: 14s; }
.bubble:nth-child(5) { left: 90%; width: 40px; height: 40px; animation-delay: 8s; animation-duration: 15s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.8; }
  85% { opacity: 0.7; }
  100% { transform: translateY(-115vh) scale(1.1); opacity: 0; }
}

