/* Gentle Landing Page Styles */

/* Soft animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(8px) rotate(-1deg); }
  66% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gentle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* Apply animations */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float-delayed 8s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slide-in-left 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.8s ease-out forwards;
}

.animate-gentle-pulse {
  animation: gentle-pulse 3s ease-in-out infinite;
}

/* Animation delays */
.animation-delay-1000 { animation-delay: 1s; }
.animation-delay-1500 { animation-delay: 1.5s; }
.animation-delay-2000 { animation-delay: 2s; }

/* Soft hover effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gentle gradients */
.bg-gentle-gradient {
  background: linear-gradient(135deg, 
    rgba(255, 182, 193, 0.1) 0%,
    rgba(173, 216, 230, 0.1) 25%,
    rgba(221, 160, 221, 0.1) 50%,
    rgba(255, 218, 185, 0.1) 75%,
    rgba(152, 251, 152, 0.1) 100%);
}

/* Soft shadows */
.shadow-gentle {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shadow-gentle-lg {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Rounded corners */
.rounded-gentle {
  border-radius: 2rem;
}

.rounded-gentle-lg {
  border-radius: 3rem;
}

/* Soft borders */
.border-gentle {
  border: 2px solid rgba(255, 182, 193, 0.3);
}

/* Gentle text colors */
.text-gentle-pink {
  color: #f472b6;
}

.text-gentle-blue {
  color: #60a5fa;
}

.text-gentle-purple {
  color: #a78bfa;
}

/* Soft backgrounds */
.bg-gentle-pink {
  background-color: rgba(255, 182, 193, 0.1);
}

.bg-gentle-blue {
  background-color: rgba(173, 216, 230, 0.1);
}

.bg-gentle-purple {
  background-color: rgba(221, 160, 221, 0.1);
}

/* Typing effect */
#typing-display {
  border-right: 3px solid #FCA000;
  animation: typing 3s steps(20) 1s 1 normal both, blink 1s infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Scroll indicator */
@keyframes scroll-indicator {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.animate-scroll-indicator {
  animation: scroll-indicator 2s infinite;
}

/* Gentle button hover effects */
.btn-gentle {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-gentle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-gentle:hover::before {
  left: 100%;
}

.btn-gentle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Soft focus states */
.focus-gentle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 160, 0, 0.3);
  border-color: #FCA000;
}

/* Gentle loading animation */
@keyframes gentle-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-gentle-spin {
  animation: gentle-spin 2s linear infinite;
}

/* Responsive gentle spacing */
@media (max-width: 640px) {
  .gentle-mobile-spacing {
    padding: 1rem;
  }
  
  .gentle-mobile-text {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

/* Gentle transitions for all interactive elements */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Soft selection colors */
::selection {
  background-color: rgba(252, 160, 0, 0.3);
  color: #1f2937;
}

::-moz-selection {
  background-color: rgba(252, 160, 0, 0.3);
  color: #1f2937;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
