@charset "utf-8";
/* DemonLEDNinja: FAQ | CSS */

/* =========================================
  FAQ: HERO
========================================= */
.faq-hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-faq.png') center/cover no-repeat;
    z-index: 0;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 125px;
}

/* teleport 𖣘 */
.faq-teleport {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin: 40px 0;
	font-family: 'Metal Mania', cursive;
	font-size: 16px;
	text-transform: uppercase;
}

.faq-teleport a {
	color: #eaeaea;
	text-decoration: none;
	transition: color .2s, text-shadow .2s;
}

.faq-teleport a:hover {
	color: #00ffd5;
	text-shadow: 0 0 8px rgba(0,255,213,.7);
}

.faq-teleport .icon {
	opacity: .4;
}

/* ================================
   FAQ
================================ */
.faq {
	max-width: 1000px;
	margin: 0 auto;
}

/* Category */
.faq-category {
	margin-bottom: 25px;
	border: 1px solid rgba(255,255,255,0.15);
	background: rgba(0,0,0,0.55);
	box-shadow:
		0 0 0 1px rgba(255,255,255,0.08),
		0 25px 60px rgba(0,0,0,0.85);
}

/* Category Header */
.faq-category-toggle {
	font-family: 'Metal Mania', cursive;
	font-size: 22px;
	letter-spacing: 2px;
	padding: 20px 24px;
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
}

.faq-category.open .faq-category-toggle {
	color: #64b7b4;
}

.faq-category-toggle .icon {
	font-size: 30px;
	font-weight: 700;
}

/* Description */
.faq-category-desc {
	padding: 0 24px 18px;
	font-size: 14px;
	opacity: 0.7;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-category.open .faq-category-desc {
	opacity: 0.9;
	color: #64b7b4;
}

/* Content */
.faq-category-content {
	padding: 0 24px 20px;
	display: none;
}

/* Question */
.faq-item {
	border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
	background: none;
	border: 0;
	color: #fff;
	width: 100%;
	padding: 16px 0;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:hover {
	color: #64b7b4;
}

/* SMALL icon — inner questions */
.faq-question .icon {
	font-size: 18px;
	font-weight: 600;
}

/* Answer */
.faq-answer {
	display: none;
	padding-bottom: 16px;
}

.faq-answer p {
	margin: 0;
	font-size: 15px;
	opacity: 0.85;
	line-height: 1.6;
}

/* Icon */
.icon {
	font-size: 22px;
	transition: transform 0.25s ease, color 0.25s ease;
}

.open > .icon {
	transform: rotate(45deg);
	color: #64b7b4;
}
