/*
Theme Name: Polinc Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Custom theme for Polinc site (landing, blog, pricing, contact) using Tailwind CSS.
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: polinc-theme
*/

/*
 * Core theme styles.
 * Tailwind utility classes are loaded via CDN in header.php,
 * so you do NOT need any build step to see styling changes.
 */

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

/* Custom checkmark list for asset section (from main1.html) */
.asset-list li {
	position: relative;
	padding-left: 28px;
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #4b5563; /* text-gray-600 */
}

.asset-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 4px;
	color: #29618d; /* pol-primary */
	font-weight: 700;
	font-size: 1rem;
}

/* FAQ accordion behaviour (paired with JS in assets/js/main.js) */
.faq-question svg {
	transition: transform 0.2s ease-in-out;
}

.faq-question.active svg {
	transform: rotate(180deg);
}

.faq-answer {
	transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
	max-height: 0;
	overflow: hidden;
}

.faq-question.active + .faq-answer {
	max-height: 200px;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

