


h2,h3,h4,h5,h6,p{
  color: #bcd4ea;
}


/**************************************
  0) ROOT + GLOBAL UTILITIES
**************************************/
:root{
  --nav-teal:#7ECFDC;
  
}


.site-top {
  position: sticky; top:0; z-index:1000;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-top .container{ min-height:68px; }


.brand {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #0d2740;
}

.btn{ transition: transform .25s ease, box-shadow .25s ease }
.btn:hover{ transform: translateY(-3px) }

/**************************************
  1) HEADER & NAV (site-top, brand, nav)
**************************************/
header.site-top .brand {
  font-size: 1.4rem;
  font-weight: 700;
}
header.site-top .brand span {
  font-size: 1.4rem;
}


.site-top--overlay{
  position:absolute; left:0; right:0; top:0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-top.is-stuck{
  background:#fff;
  border-bottom-color: rgba(0,0,0,.06);
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}


.site-top--overlay{
  background:transparent !important;
  border-bottom:0 !important;
  box-shadow:none !important;
}
.site-top--overlay.shadow-sm,
.site-top--overlay[class*="shadow"]{
  box-shadow:none !important;
}


.site-top .brand{ font-weight:700; font-size:1.6rem; color:var(--nav-dark); text-decoration:none; }
.site-top .brand span{ color:var(--nav-teal); }

.site-top .nav{ display:flex; gap:28px; align-items:center;}
.site-top .nav a{
  position:relative; display:inline-block; padding:6px 2px;
  color:var(--nav-dark); text-decoration:none; font-weight:600; letter-spacing:.2px;
  transition:color .2s ease;
}
.site-top .nav a::after{
  content:""; position:absolute; left:0; bottom:-8px; height:2px; width:0;
  background:var(--nav-teal); transition:width .22s ease;
}
.site-top .nav a:hover{ color:#3aa8ba; }
.site-top .nav a:hover::after{ width:100%; }
.site-top .nav a.active{ color:var(--nav-teal); }
.site-top .nav a.active::after{ width:100%; }

/* Hamburger */
.hamburger {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  color: #0d2740;
}
.hamburger{ display:none; width:44px; height:44px; background:none; border:0; font-size:1.7rem; color:var(--nav-dark); }

/* Mobile drawer */
@media (max-width:991px){
  .hamburger{ display:inline-block; }
  .site-top .nav{
    position:fixed; top:0; right:0; width:280px; height:100vh;
    background:#0d2740; border-left:1px solid rgba(0,0,0,.08);
    box-shadow:-20px 0 40px rgba(0,0,0,.06);
    padding:80px 18px 18px; flex-direction:column; gap:12px;
    transform:translateX(100%); transition:transform .28s ease; z-index:1001;
  }
  .site-top.is-open .nav{ transform:translateX(0); }
  #site-nav{ transition: transform .28s ease }
}

/* Dim overlay for mobile drawer */
.nav-dim{ position:fixed; inset:0; background:rgba(0,0,0,.28); z-index:1000;
  opacity:0; pointer-events:none; transition:opacity .25s ease; }
.nav-dim.show{ opacity:1; pointer-events:auto; }

/* Z-index layering for header/drawer/dimmer */
.site-top { z-index: 2000; }
@media (max-width: 991px){
  .site-top .nav { z-index: 2001; }
}
.nav-dim { z-index: 1500; }



.app-hero .mood {
  width: 30%;        
  max-width: 500px; 
     
}
.mood-wrap img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.mood-wrap img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}









/******************************************
  Lantern Light — App page (app.css)
  One continuous night sky + stars
******************************************/


.app-body{
  color:#e9f2fb;
  background:
    
    linear-gradient(
      180deg,
      #081e3a 0%,
      #0a2448 38%,
      #1a2f59 42%,
      #314c8a 54%,
      #9B9DD4 64%,
       #A1A5DC 78%,
        #A1A5DC 94%,
      #f5f5f5 100%

      
    );
  position: relative; 
}




/* Global stars layer */
.stars {
  position: fixed;
  inset: 0;            
  z-index: -1;         
  pointer-events: none;
  overflow: hidden;
}

.stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: radial-gradient(circle,
    #ffd86b 0 40%,
    rgba(255,215,0,0.85) 70%,
    transparent 80%);
  filter: drop-shadow(0 0 6px #ffd86b);

  animation: starTwinkle var(--twinkleDur, 3.6s) ease-in-out infinite;
  animation-delay: var(--twinkleDelay, 0s);
  opacity: var(--startOpacity, .85);
}

@keyframes starTwinkle {
  0%   { opacity: 0.25; }
  35%  { opacity: 0.9; }
  65%  { opacity: 0.4; }
  100% { opacity: 0.85; }
}












/* ----------------------
   Hero
----------------------- */
.app-hero{
  padding:110px 0 40px;
  background: transparent; 
  position: relative;
}
.app-hero h1{ color:#fff; }
.app-hero .lead{ color:#bcd4ea; }
.mood{ width:210px; margin-inline:auto; }
@media (min-width: 992px){
  .app-hero .mood{ width:280px; }
}

.mood-wrap {
  position: relative;
  display: inline-block;
  text-align: center;
}

.mood-label {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;

}


/* ----------------------
   Sections (transparent blocks on top of the sky)
----------------------- */
.night.section{
  padding:70px 0;
  background: transparent !important;
}
.dawn.section{
  padding:80px 0;
  background: transparent !important;
}

/* ----------------------
   Feature cards
----------------------- */
.feature-card {
  background: #0c2b52;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card .icon {
  font-size: 30px;
  margin-bottom: 6px;
}

.feature-card:hover {
  box-shadow: 
    0 0 60px rgba(0, 255, 150, 0.8),   
    0 0 120px rgba(0, 255, 150, 0.6),  
    0 0 180px rgba(0, 255, 150, 0.4); 
}




/* ----------------------
   Lanterns 
----------------------- */
.lanterns {
  margin-top: 2rem;
}


.lantern-card {
  text-align: center;
  max-width: 500px; 
}

.lantern {
  width: 300px;    
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.lantern1 {
  width: 314px !important;  
  margin-bottom: 0rem !important;  

}



.lantern:hover {
  transform: scale(1.05); 
}

.lantern-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}

.lantern-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0;
}

.lantern:hover{ transform:translateY(-10px); }


.breathwork-row {
  display: flex;
  justify-content:center; 
  align-items: center;
}


.phones {
  display: flex;

  gap: 40px; 
}
.night .container-fluid {
  padding-left: 5%;
  padding-right: 5%;
}

.p-gap{
   margin: 0 20px; 
}



/* Phone sizes */
.phone-img {
  flex: 0 0 auto;
  width: clamp(200px, 22vw, 300x);
  height: auto;
  border-radius: 26px;
}

/* Text box alignment */
.text-col {
  display: flex;
  justify-content: flex-end;
}

.text-box {
  max-width: 560px;
  margin: auto;
    
}
.text-box p{
  font-size: 17px;
}


/* Title bigger */
.breathwork-title {
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Responsive fallback: stack on small screens */
@media (max-width: 991.98px) {
  .breathwork-row {
    flex-direction: column;
    text-align: center;
  }
  .phones {
    justify-content: center;
    margin-bottom: 20px;
  }
  .text-col {
    justify-content: center;
  }
}


/* lets go section */


/* Let this go — phones row */
.letgo .letgo-text{
  
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}

/* the three phones in one centered row */
.letgo .phone-group{
  display: flex;
  justify-content: center;     
  align-items: flex-end;      
  gap: 48px;                  
  flex-wrap: nowrap;           
  margin-top: 16px;
}

/* phone sizing & subtle glow like your comp */
.letgo .phone{
  width: clamp(240px, 22vw, 320px);
  height: auto;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,.35); /* soft drop shadow */
}

/* responsive: allow wrapping + smaller phones on narrower screens */
@media (max-width: 1200px){
  .letgo .phone-group{ gap: 36px; }
  .letgo .phone{ width: clamp(220px, 26vw, 280px); }
}
@media (max-width: 991.98px){
  .letgo .phone-group{
    flex-wrap: wrap;           
    gap: 24px;
  }
  .letgo .phone{ width: clamp(180px, 40vw, 240px); }
}
@media (max-width: 575.98px){
  .letgo .phone{ width: clamp(160px, 44vw, 210px); }
}


.letgo-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: left; /* stays top-left */
}

.letgo-wrapper {
  display: flex;
  justify-content: center; /* phones + arrows centered */
  align-items: center;
  gap: 2rem; /* spacing between elements */
  flex-wrap: wrap; /* for responsiveness */
}

.letgo .phone {
  max-width: 280px;
  height: auto;
}

.letgo .arrow {
  max-width: 30px;



  height: auto;
  transform: translateY(10px); /* moves arrow closer to phones */
}

.arrow-gap
{
   margin: 0 100px ;
}

.letsgo .section h2 {
  text-align: left;
}








/* ===== Feature cards  ===== */



.night.section .row.g-4 > [class*="col-"] { display:flex; }

/* Card */
.feature-card{
 
  --card-bg: rgba(14, 47, 86, 0.96);           
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);     
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .35),           
    inset 0 0 0 1px rgba(255,255,255,.02);    
  
  /* sizing & layout */
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 250px;                          
  width: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  flex: 1;                                     
   text-align:center;
}


.feature-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(126, 207, 220, .12) inset;
  border-color: rgba(126, 207, 220, .28);
}

/* Icon (styled like a thin-line teal glyph) */
.feature-card .icon{
  font-size: 56px;                           
  line-height: 1;
  color: #7ECFDC;                          
  text-shadow:
    0 0 10px rgba(126,207,220,.28),
    0 0 20px rgba(126,207,220,.18);           
  margin-bottom: 6px;
}

/* Title */
.feature-card h5{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 22px;
  color: #EAF2FF;                            
  margin: 4px 0 2px;
    text-align:center;
}

/* Body copy */
.feature-card p{
  color: #A9C2DB;                              
  font-size: 14px;
  line-height: 1.55;
  max-width: 240px;                            
  margin: 0 auto;
  text-align:center;
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .feature-card{ min-height: 240px; }
  .feature-card .icon{ font-size: 52px; }
}

@media (max-width: 575.98px){
  .feature-card{ padding: 24px 18px; min-height: 220px; }
  .feature-card .icon{ font-size: 48px; }
  .feature-card p{ font-size: 13px; }
}


.feature-card  .ic2 img {
  width: 80px;      
  height: 80px;
  display: block;
  margin: 1rem auto 1rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4)); 
}


.feature-card  .ic1 img {
  height: 90px;      

  display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4)); 
}



/* footer */


.say.btn.btn-outline {
  border: 2px solid #9A9FD6;   
  color: #5e6a73;             
  transition: all 0.3s ease;   
}

.say.btn.btn-outline:hover {
  background-color: #9A9FD6;   
  color: #fff;                 
  box-shadow: 0 0 15px #9A9FD6, 0 0 30px #9A9FD6; 
  transform: translateY(-2px); 
}





/* override  */


/* --- HARD STOP: no horizontal scroll anywhere --- */
html, body { max-width: 100%; overflow-x: hidden; }
.app-body { overflow-x: clip; } /* modern browsers; falls back to hidden above */

/* If a huge glow/box-shadow causes scrollbars, clip it at section level */
.night.section, .dawn.section, .app-hero { overflow-x: clip; }

/* Images never exceed their container */
img, svg { max-width: 100%; height: auto; }

/* Fix a typo that can break sizing: 300x → 300px */
.phone-img { width: clamp(200px, 22vw, 300px); }


@media (max-width: 1034px) {
  .arrow {
    display: none !important;
  }
}




@media (max-width: 991px) {
  .mood-label {
    display: none;
  }
}
  