/* Cedar et Gazelle Foundation – custom styles */

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

/* Hero slider transitions */
.hero-slide { transition: opacity 0.5s ease; }
.hero-slide.hidden { display: none; }

/* FAQ accordion */
.faq-answer { transition: max-height 0.3s ease, opacity 0.2s ease; }

/* line-clamp utility (for older browsers without native support) */
.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Admin sidebar active state */
.admin-nav-link.active {
    background-color: rgba(233, 213, 255, 0.3);
    color: #d8b4fe;
}

/* Focus styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

/* Image lazy fade in */
img.lazy { opacity: 0; transition: opacity 0.4s; }
img.lazy.loaded { opacity: 1; }
