/**
 * Designify Persona Responsive & Animation Styles
 */

/* --- Reveal Animations --- */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.9); }

.reveal-up.active, .reveal-left.active, .reveal-right.active, .reveal-scale.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* --- Bounce Animations --- */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce-slower {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.animate-bounce-slow { animation: bounce-slow 4s infinite ease-in-out; }
.animate-bounce-slower { animation: bounce-slower 5s infinite ease-in-out; }

/* --- Mobile Breakpoints (320px - 767px) --- */
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 48px;
        line-height: 52px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .py-24 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .px-6 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .glass {
        padding: 30px 20px;
    }
    
    .site-navigation {
        padding: 15px 20px !important;
    }
}

/* --- Tablet Breakpoints (768px - 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 64px;
        line-height: 70px;
    }
    
    .grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- Desktop Breakpoints (1025px+) --- */
@media (min-width: 1025px) {
    .hero-content {
        padding-right: 40px;
    }
}

/* --- Utility Classes --- */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Scroll Reveal Animations --- */
.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active, 
.reveal-scale.active {
  opacity: 1;
  transform: translate(0) scale(1);
}