/* ACGT Theme CSS */
/* Minimale overrides - Tailwind doet het meeste werk */

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

/* Font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* FAQ Accordion */
.faq-open .faq-content {
    display: block !important;
}
.faq-open .faq-icon {
    transform: rotate(180deg);
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
    transform: translateX(0);
}

/* Active nav link */
.nav__link.active,
.mobile-menu__link.active,
nav ul a.active {
    color: #ECD444 !important;
}

/* Nav link active indicator */
nav ul a.active {
    position: relative;
}

nav ul a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ECD444;
}

/* Form message animations */
.form-message {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
