/* Custom Styles for Trakya Atlas Yapı */

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

/* Filter Buttons */
.filter-btn {
    background-color: #e5e7eb;
    color: #374151;
}

.filter-btn.active {
    background-color: #F5A623;
    color: white;
}

.filter-btn:hover {
    background-color: #F5A623;
    color: white;
}

/* Gallery Items Animation */
.gallery-item {
    animation: fadeIn 0.5s ease-in;
}

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

.gallery-item.hidden {
    display: none;
}

/* FAQ Accordion */
.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    opacity: 0;
}

.faq-answer.show {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s ease-in, opacity 0.3s ease-in;
}
