/*
Theme Name: Hara Child
Theme URI: https://hara.thembaydev.com/
Author: Thembay
Description: This is a child theme for Hara
Version: 1.0
Author URI: https://thembay.com/
Template: hara
Text Domain: hara-child
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */

.ayuu-accordion {
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    font-family: inherit;
}

/* Accordion Title */
.ayuu-acc-title {
    background: #f8f8f8;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    border-top: 1px solid #eee;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease;
}

/* Hover effect */
.ayuu-acc-title:hover {
    background: #eef5f0;
}

/* Add box around first title */
.ayuu-acc-title:first-child {
    border-top: none;
}

/* Plus / Minus icon */
.ayuu-acc-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease, content 0.2s;
}

/* When opened, show – */
.ayuu-acc-title.open::after {
    content: '–';
    transform: translateY(-50%) rotate(180deg);
}

/* Accordion content area */
.ayuu-acc-content {
    display: none;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #eee;
    font-size: 15px;
    line-height: 1.6;
}

.accordion-header{
	margin-left: 15px;
}
