/* The Main Welcome Area (Standard Markvtech UI) */
.chill-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  transition: opacity 0.8s ease, filter 0.8s ease;
}

.chill-hero.hide {
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}

.greeting-text {
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.sub-text {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* Markvtech Styled Button */
.chill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 86, 219, 0.2);
  color: #fff;
  padding: 18px 36px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 86, 219, 0.5);
  box-shadow: 0 0 24px rgba(26, 86, 219, 0.4);
  transition: all 0.3s;
  cursor: pointer;
}

.chill-btn:hover {
  background: rgba(26, 86, 219, 0.4);
  box-shadow: 0 0 32px rgba(26, 86, 219, 0.6);
}

/* The Immersive Experience Overlay */
.exhale-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  overflow-y: auto; /* allows scrolling inside overlay if needed on small devices */
}

.exhale-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Exit Button */
.exit-overlay-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 20000;
}
.exit-overlay-btn:hover {
  color: #fff;
}

/* Breathing Circle Animation */
.breath-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.3) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: all 4s cubic-bezier(0.4, 0, 0.2, 1);
}

.breath-circle.inhale {
  transform: translate(-50%, -50%) scale(2);
  opacity: 1;
}

.breath-circle.exhale {
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0.2;
}

/* Journey Text */
.journey-text {
  position: relative;
  z-index: 10;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 400;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
  max-width: 800px;
  padding: 0 20px;
}

.journey-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form Elements (Hidden initially) */
.interactive-form {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 1s ease;
  text-align: center;
}

.interactive-form.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.interactive-form h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.3;
  color:#fff;
}

.minimal-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  padding: 10px 0;
  margin-bottom: 40px;
  outline: none;
  text-align: center;
  transition: border-color 0.3s;
}

.minimal-input:focus {
  border-color: #1A56DB;
}

.minimal-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.next-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 40px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.next-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* Stages display management */
.stage { 
  display: none; 
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.stage.active { 
  display: block; 
}
.stage.visible {
  opacity: 1;
  transform: translateY(0);
}
.stage.exit {
  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 768px) {
  .contact-inputs {
    flex-direction: column;
  }
}
