html { scroll-behavior: smooth; }

.card {
    border-radius: 1rem;
    border: 1px solid rgb(241 245 249);
    background: #fff;
    box-shadow: 0 4px 24px -4px rgb(15 23 42 / 0.08), 0 2px 8px -2px rgb(15 23 42 / 0.06);
    transition: all .3s ease;
}
.dark .card { border-color: rgb(30 41 59); background: #0d2b36; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px -8px rgb(15 23 42 / 0.14); }

.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    border-radius: 9999px; background: #00A7B5; color: #fff; font-weight: 600;
    padding: .75rem 1.5rem; box-shadow: 0 4px 24px -4px rgb(15 23 42 / 0.08);
    transition: all .3s ease;
}
.btn-primary:hover { background: #048697; }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    border-radius: 9999px; border: 2px solid #00A7B5; color: #00A7B5; font-weight: 600;
    padding: .75rem 1.5rem; transition: all .3s ease;
}
.btn-secondary:hover { background: #00A7B5; color: #fff; }

.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    pointer-events: none;
    z-index: 0;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide img {
    animation: kenburns 9s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.09); }
}

.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #00A7B5; border-radius: 9999px; }
::-webkit-scrollbar-track { background: transparent; }
