/* ========= Root Variables ========= */
:root {
	--pink: #ff2d6c;
	--pink-100: #ffe5ef;
	--pink-200: #ff9abb;
	--ink: #333;
	--muted: #666;
	--border: #e5e5e5;
	--radius-md: 10px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
	--container: 1200px;
}

.font-family-rubic {
	font-family: "Rubik", sans-serif;
}

.aesthetic-text {
	color: var(--pink) !important;
}

/* ========= Layout ========= */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 16px;
}

.section:first-child {
	padding: 60px 0 30px 0;
}

@media (max-width: 768px) {
	.section {
		padding: 40px 0;
	}
}

/* ========= Section Titles ========= */
.turkey-weddings-page .section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	line-height: 1.2;
	margin: 0 0 1rem;
	color: var(--ink);
	position: relative;
	display: inline-block;
}

.turkey-weddings-page .section-title::after {
	content: "";
	display: block;
	height: 3px;
	width: 72%;
	margin-top: 10px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pink) 0%, var(--pink-200) 100%);
}

@media (max-width: 720px) {
	.turkey-weddings-page .section-title::after {
		width: 56%;
	}
}

/* ========= Hero ========= */
.hero-title {
	font-size: clamp(2rem, 5vw, 2.8rem);
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--muted);
}

/* ========= Services ========= */
.service-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.service-item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
	color: var(--ink);
	margin-bottom: 10px;
	font-size: 1.1rem;
	font-weight: 600;
}

.service-item p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ========= Reasons / Features ========= */
.reasons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.reason {
	background: var(--pink-100);
	border-radius: var(--radius-md);
	padding: 20px;
	transition: background 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.reason:hover {
	background: #fff;
	border: 1px solid var(--pink-200);
	box-shadow: var(--shadow-sm);
}

.reason h3 {
	color: var(--ink);
	margin-bottom: 8px;
	font-size: 1.05rem;
	font-weight: 600;
}

.reason p {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ========= FAQs ========= */
.section-faqs .faq-list {
	display: grid;
	gap: 10px;
	margin-top: 8px;
}

.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: #fff;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
	border-color: var(--pink-200);
	box-shadow: var(--shadow-sm);
}

.faq-item > summary {
	cursor: pointer;
	list-style: none;
	padding: 14px 16px;
	position: relative;
	font-weight: 600;
	color: var(--ink);
}

.faq-item > summary::-webkit-details-marker {
	display: none;
}

.faq-item > summary::after {
	content: "+";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
	color: var(--pink);
}

.faq-item[open] > summary::after {
	content: "–";
}

.faq-a {
	padding: 0 16px 14px;
	color: var(--muted);
	border-top: 1px dashed var(--pink-100);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ========= General Text ========= */
p {
	margin-bottom: 1rem;
	color: var(--muted);
	line-height: 1.6;
	font-size: 1rem;
}

h1,
h2,
h3 {
	font-weight: 600;
	line-height: 1.3;
}
