 

/* Gradient text (Teal tones) */
.gradientText{
  background: linear-gradient(90deg,#0f766e,#0d9488,#14b8a6,#2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* soft outer glow for the title */
.titleGlow{
  text-shadow: 0 1px 0 rgba(13,148,136,0.05), 0 6px 18px rgba(13,148,136,0.18);
}

/* shimmer sweep */
.heroHeader .shine{
  position: absolute;
  inset: 0 auto 0 0;
  width: 30%;
  transform: translateX(-120%);
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 45%, rgba(255,255,255,0) 80%);
  filter: blur(1px);
  pointer-events: none;
  animation: shimmer 2.4s ease-in-out infinite;
}

/* subtle border glow on hover */
.heroHeader:hover{
  box-shadow: 0 8px 28px rgba(13,148,136,0.12), inset 0 0 0 1px rgba(13,148,136,0.15);
}

/* keyframes */
@keyframes shimmer{
  from{ transform: translateX(-120%); }
  to{   transform: translateX(220%);  }
}





 

/* ====== Inputs (Shadow + Focus) ====== */
input[type="text"] {
  transition: box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
input[type="text"]:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
input[type="text"]:focus {
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
  border-color: #14b8a6; /* teal-500 */
}

/* ====== Range input (clean track + thumb) ====== */
.range-clean {
  height: 0.75rem;
  background: #e5e7eb;
  border-radius: 999px;
}
/* WebKit */
.range-clean::-webkit-slider-runnable-track {
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
}
.range-clean::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px; margin-top: -7px;
  background: #0f766e; /* teal-700 */
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(13,148,136,0.2);
}
/* Firefox */
.range-clean::-moz-range-track {
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
}
.range-clean::-moz-range-thumb {
  width: 18px; height: 18px;
  background: #0f766e;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(13,148,136,0.2);
}

/* ====== Fade-up animation utilities ====== */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(12px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.anim-fadeUp {
  animation: fadeUp .55s cubic-bezier(.22,.61,.36,1) both;
}
.anim-delay-100 { animation-delay: .10s; }
.anim-delay-200 { animation-delay: .20s; }
.anim-delay-300 { animation-delay: .30s; }
.anim-delay-400 { animation-delay: .40s; }

/* احترام إعدادات تقليل الحركة */
@media (prefers-reduced-motion: reduce) {
  .anim-fadeUp { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ====== Travel Group Cards ====== */
label:has(> input.peer:checked){
  border-color: #0f766e;        
  background: #f0fdfa;          
}




 /* interests*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}
 



/* generate button*/
 
@keyframes shine {
  100% { transform: translateX(100%); }
}
@keyframes pulse-slow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
}
.animate-pulse-slow {
  animation: pulse-slow 2s infinite;
}




/*reset btn*/
 
@keyframes shine {
  100% { transform: translateX(100%); }
}


   /* output*/
  .cityDays::-webkit-outer-spin-button,
  .cityDays::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .cityDays { -moz-appearance: textfield; }

  @layer components {
    .btn-ghost { @apply rounded-xl border px-4 py-2 hover:bg-gray-50; }
    .decDay, .incDay, .rmCity { @apply border border-gray-300 bg-white rounded-md text-gray-600 hover:bg-gray-100; }
  }

  @layer base {
    input[type="text"],
    input[type="date"],
    input[type="number"],
    input[list],
    select,
    textarea {
      @apply border border-gray-300 rounded-lg px-3 py-2 w-full focus:outline-none focus:ring-2 focus:ring-emerald-600 focus:border-emerald-600 bg-white;
    }
    .step .grid > div,
    .step .flex,
    #cityRows > div { @apply mb-3; }
  }


   
 /* footer*/
  .ink-underline {
    position: relative;
    display: inline-block;
  }
  .ink-underline::after {
    content: "";
    position: absolute;
    left: 50%; bottom: -3px;
    width: 0; height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg,#facc15,#fde047,#facc15);
    transform: translateX(-50%);
    transition: width .42s cubic-bezier(.22,1,.36,1), height .42s cubic-bezier(.22,1,.36,1);
  }
  .ink-underline:hover::after,
  .ink-underline:focus-visible::after {
    width: 100%; height: 3px;
  }

  [data-reveal]{opacity:0; will-change:transform,opacity;}
  @keyframes revealLeft {
    from {opacity:0; transform:translateX(-40px);}
    to   {opacity:1; transform:translateX(0);}
  }
  @keyframes revealRight {
    from {opacity:0; transform:translateX(40px);}
    to   {opacity:1; transform:translateX(0);}
  }

  .is-inview[data-reveal="left"]  {animation:revealLeft .7s cubic-bezier(.22,1,.36,1) both}
  .is-inview[data-reveal="right"] {animation:revealRight .7s cubic-bezier(.22,1,.36,1) both}

  .is-inview{animation-delay:var(--rv-delay,0s)}

  @media (prefers-reduced-motion: reduce){
    .ink-underline::after{transition:none}
    [data-reveal]{opacity:1 !important; transform:none !important; animation:none !important}
  }
 
 

 

 



 

 
