/* Estate INPSieme Webinar 2026 - Custom CSS */

/* Scroll Smooth */
html {
    scroll-behavior: smooth;
}

/* Glass Effect */
.glass {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Card Hover Effect */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
}

/* Blob Animations */
.blob-orange {
    background: radial-gradient(circle, rgba(249,115,22,0.4) 0%, transparent 70%);
}

.blob-blue {
    background: radial-gradient(circle, rgba(59,130,246,0.3) 0%, transparent 70%);
}

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Button Scale Effect */
.transform:hover {
    transform: scale(1.02);
}

/* Responsive Images */
@media (max-width: 768px) {
    .rounded-3xl {
        border-radius: 1.5rem;
    }
}

/* WhatsApp Button Pulse */
.bg-\[\#25D366\]:hover {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .8;
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}
