/**
 * @package     mod_uk_accordion
 * @copyright   © 2026 Joomlaplates. All rights reserved.
 * @license     GNU General Public License version 3 or later; see LICENSE.txt
 */

/* Image hover effect */
img.hover-effect {
    vertical-align: top;
    transition: opacity 0.3s;
    -webkit-transition: opacity 0.3s;
    opacity: 1;
}

img.hover-effect:hover {
    opacity: 0.5;
}

/* Accordion spacing */
.uk-accordion > :nth-child(n+2) {
    margin-top: 0;
}

.uk-accordion-content {
    margin-top: 0;
}

/* Responsive images */
@media (max-width: 768px) {
    img.accordion-img {
        width: 100% !important;
    }
}

/* Font Awesome icons with rotation */
.uk-accordion-title::before {
    content: "\f105"; /* angle-right */
    font-family: "FontAwesome", sans-serif;
    background-image: none;
    font-size: 1.2rem;
    padding-right: 1rem;
    display: inline-block;
    transition: transform 0.2s ease;
    transform-origin: center;
	background-image: none;
}

.uk-open > .uk-accordion-title::before {
    transform: rotate(90deg);
    content: "\f105";
    padding: 0;
    margin-right: 1rem;
}

/* Fallback if FontAwesome is not loaded */
@supports not (font-family: "FontAwesome") {
    .uk-accordion-title::before {
        content: "+";
        font-family: inherit;
    }
    
    .uk-open > .uk-accordion-title::before {
        content: "-";
        transform: none;
    }
}
