@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');

/* Hero Section */
.hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #1e3a5f;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5) 0%,
		rgba(0, 0, 0, 0.35) 50%,
		rgba(0, 0, 0, 0.45) 100%
	);
	pointer-events: none;
}

.hero-container {
	position: relative;
	z-index: 1;
	max-width: 1620px;
	width: 100%;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	margin: 0 0 1.25rem;
	font-family: "Urbanist", sans-serif;
	font-size: clamp(2rem, 5vw, 5.5rem);
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

/* Başlıkta span ile sarılan kısım renkli (örn: Huzurunu) */
.hero-title span {
	color: #2563eb;
	font-family: "Petit Formal Script", cursive;

}

.hero-subtitle {
	margin: 0 0 2rem;
	font-family: "Urbanist", sans-serif;
	font-size: 1.125rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: opacity 0.2s, transform 0.2s;
	font-family: "Urbanist", sans-serif;
}

.hero-btn-arrow {
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	filter: brightness(0) invert(1);
}

.hero-btn:hover {
	opacity: 0.95;
	transform: translateY(1px);
}

.hero-btn-primary {
	background: #2563eb;
	color: #fff !important;
	font-family: "Urbanist", sans-serif;

}

.hero-btn-primary:hover {
	background: #1d4ed8;
}

.hero-btn-secondary {
	background: rgba(255, 255, 255, 0.95);
	color: #374151 !important;
}

.hero-btn-secondary:hover {
	background: #fff;
}

/* ==========================================================================
   Son Videolar Section
   ========================================================================== */
.videos-section {
	padding: 4rem 1.5rem;
	background: #f9fafb;
}

.videos-section-inner {
	max-width: 1620px;
	margin: 0 auto;
}

.videos-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.videos-title {
	margin: 0;
	font-family: "Urbanist", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #111;
}

.videos-link-all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #121212;
	color: #fff !important;
	font-family: "Urbanist", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.2s, opacity 0.2s;
}

.videos-link-all:hover {
	background: #2a2a2a;
	opacity: 0.95;
}

.videos-link-all-arrow {
	display: block;
	filter: brightness(0) invert(1);
}

/* Swiper container - mobilde parçalı slider */
.videos-swiper {
	overflow: hidden;
	margin: 0 -1.5rem;
	padding: 0 1.5rem;
}

.videos-swiper .swiper-wrapper {
	align-items: stretch;
}

.videos-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.videos-swiper .swiper-slide .video-card,
.videos-swiper .swiper-slide .video-card-link {
	height: 100%;
}

.videos-swiper .swiper-slide .video-card-link {
	display: flex;
	flex-direction: column;
}

.videos-swiper .swiper-slide .video-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.video-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
}

.video-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.video-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.video-card-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #1f2937;
	overflow: hidden;
}

.video-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-card-placeholder {
	width: 100%;
	height: 100%;
	background: #374151;
}

.video-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

.video-card-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 -32px;
	border: 3px solid #fff;
	border-radius: 50%;
	box-sizing: border-box;
	pointer-events: none;
}

.video-card-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	margin: -12px 0 0 -6px;
	border: 12px solid transparent;
	border-left-color: #fff;
	border-width: 12px 0 12px 20px;
}

.video-card-duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	padding: 4px 8px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-family: "Urbanist", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	border-radius: 4px;
}

.video-card-body {
	padding: 1.25rem 1.25rem 1.5rem;
}

.video-card-title {
	margin: 0 0 0.5rem;
	font-family: "Urbanist", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #111;
	line-height: 1.35;
}

.video-card-desc {
	margin: 0;
	font-family: "Urbanist", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	color: #4b5563;
	line-height: 1.5;
}

/* ==========================================================================
   Dönüşüm Atölyeleri Section (ss4)
   ========================================================================== */
.atolye-section {
	padding: 4rem 1.5rem;
	background-color: #f8fafc;
}

.atolye-section-inner {
	max-width: 1620px;
	margin: 0 auto;
}

.atolye-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.atolye-subtitle {
	margin: 0 0 0.5rem;
	font-family: "Petit Formal Script", cursive;
	font-size: 1rem;
	font-weight: 500;
	color: #dc2626;
}

.atolye-title {
	margin: 0;
	font-family: "Urbanist", sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #111;
}

.atolye-swiper {
	overflow: hidden;
	margin: 0 -1.5rem;
	padding: 0 1.5rem;
	margin-bottom: 2rem;
}

.atolye-swiper .swiper-wrapper {
	align-items: stretch;
}

.atolye-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
	display: flex;
}

.atolye-swiper .swiper-slide .atolye-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
}

.atolye-swiper .swiper-slide .atolye-card-link {
	flex: 1;
	display: flex;
	height: 100%;
	min-height: 0;
}

.atolye-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}



.atolye-card-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	text-decoration: none;
	color: inherit;
}

.atolye-card-icon-wrap {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.atolye-card-icon {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.atolye-card-icon-placeholder {
	width: 24px;
	height: 24px;
	border-radius: 4px;
}

.atolye-card-body {
	flex: 1;
	min-width: 0;
}

.atolye-card-title {
	margin: 0 0 0.35rem;
	font-family: "Urbanist", sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #111;
	line-height: 1.3;
}

.atolye-card-desc {
	margin: 0;
	font-family: "Urbanist", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	color: #6b7280;
	line-height: 1.45;
}

.atolye-card-arrow {
	flex-shrink: 0;
	font-size: 1.25rem;
	color: #9ca3af;
}

.atolye-actions {
	text-align: center;
}

.atolye-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: #2563eb;
	color: #fff !important;
	font-family: "Urbanist", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: background 0.2s, transform 0.2s;
}

.atolye-btn-arrow {
	display: block;
	filter: brightness(0) invert(1);
}

.atolye-btn:hover {
	background: #1d4ed8;
	transform: translateY(1px);
}

/* ==========================================================================
   Bizi Tanıyın / Hakkımızda Section (ss1)
   ========================================================================== */
.hakkimizda-section {
	padding: 4rem 1.5rem;
	background: #f8fafc;
}

.hakkimizda-section-inner {
	max-width: 1620px;
	margin: 0 auto;
}

.hakkimizda-box {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	background: #1942ff;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(25, 66, 255, 0.25);
	overflow: hidden;
	min-height: 380px;
	padding: 100px;
	gap: 50px;
}

.hakkimizda-content {
	flex: 1;
	min-width: 280px;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hakkimizda-ust-baslik {
	margin: 0 0 0.5rem;
	font-family: "Urbanist", sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.hakkimizda-title {
	margin: 0 0 1.25rem;
	font-family: "Urbanist", sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.hakkimizda-aciklama {
	font-family: "Urbanist", sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 1.5rem;
}

.hakkimizda-aciklama p {
	margin: 0 0 0.75em;
}

.hakkimizda-aciklama p:last-child {
	margin-bottom: 0;
}

.hakkimizda-aciklama em,
.hakkimizda-aciklama i {
	font-style: italic;
}

.hakkimizda-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Urbanist", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #fff !important;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: opacity 0.2s;
}

.hakkimizda-link:hover {
	opacity: 0.9;
}

.hakkimizda-link-arrow {
	display: block;
	filter: brightness(0) invert(1);
}

.hakkimizda-image-wrap {
	flex: 0 0 auto;
	width: 100%;
	max-width: 620px;
	min-height: auto;
	border-radius:24px;
	overflow: hidden;
}

.hakkimizda-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.hakkimizda-box {
		flex-direction: column;
		min-height: 0;
		padding: 2rem 1.5rem;
		gap: 1.5rem;
	}

	.hakkimizda-image-wrap {
		max-width: 100%;
		min-height: 280px;
		border-radius: 16px;
	}
}

/* ==========================================================================
   Blog Section (üst ACF, swiper + ok navigasyonu, mobilde parçalı)
   ========================================================================== */
.blog-section {
	padding: 4rem 1.5rem;
	background: #f8fafc;
}

.blog-section-inner {
	max-width: 1620px;
	margin: 0 auto;
}

.blog-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.blog-header-text {
	flex: 1;
	min-width: 0;
	text-align: center;
}

@media (min-width: 769px) {
	.blog-header-text {
		text-align: left;
	}
}

.blog-description {
	margin: 0 0 0.35rem;
	font-family: "Petit Formal Script", cursive;
	font-size: 1.125rem;
	font-weight: 400;
	font-style: italic;
	color: #dc2626;
	line-height: 1.4;
}

.blog-title {
	margin: 0 0 0.75rem;
	font-family: "Urbanist", sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 700;
	color: #333;
	line-height: 1.25;
}

.blog-devamini-oku {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: "Urbanist", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #2563eb !important;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity 0.2s;
}

.blog-devamini-oku:hover {
	opacity: 0.85;
}

.blog-devamini-oku-arrow {
	display: block;
}

.blog-header-actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.blog-swiper-wrap {
	position: relative;
}

/* Blog swiper – altında pagination dot */
.blog-swiper-pagination {
	position: relative;
	margin-top: 1.5rem;
	text-align: center;
	bottom: -33px !important;
}

.blog-swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 5px;
	background: #d1d5db;
	opacity: 1;
	transition: background 0.2s, transform 0.2s;
}

.blog-swiper-pagination .swiper-pagination-bullet:hover {
	background: #9ca3af;
}

.blog-swiper-pagination .swiper-pagination-bullet-active {
	background: #2563eb;
	transform: scale(1.25);
}

.blog-link-all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: #121212;
	color: #fff !important;
	font-family: "Urbanist", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.2s;
}

.blog-link-all:hover {
	background: #2a2a2a;
}

.blog-link-arrow {
	display: block;
	filter: brightness(0) invert(1);
}

.blog-swiper {
	overflow: hidden;
}

.blog-swiper .swiper-wrapper {
	align-items: stretch;
}

.blog-swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.blog-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
}


.blog-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.blog-card-thumb {
	aspect-ratio: 16 / 10;
	background: #e5e7eb;
	overflow: hidden;
}

.blog-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card-thumb-placeholder {
	background: #d1d5db;
}

.blog-card-body {
	flex: 1;
	padding: 1.25rem 1.25rem 0.5rem;
}

.blog-card-title {
	margin: 0 0 0.5rem;
	font-family: "Urbanist", sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #111;
	line-height: 1.35;
}

.blog-card-excerpt {
	margin: 0;
	font-family: "Urbanist", sans-serif;
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.5;
}

.blog-card-devamini {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	align-self: flex-start;
	padding: 0 1.25rem 1.25rem;
	font-family: "Urbanist", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #121212;
}

.blog-card-devamini-arrow {
	display: block;
}

@media (max-width: 768px) {
	.blog-header {
		justify-content: center;
	}

	.blog-header-text {
		text-align: center;
	}
}

/* ==========================================================================
   Gelişim Rehberleri & Kaynaklar Section
   ========================================================================== */
.kaynaklar-section {
	position: relative;
	padding: 10rem 1.5rem;
	background-color: #2563eb;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.kaynaklar-overlay {
	position: absolute;
	inset: 0;
	background: rgba(37, 99, 235, 0.88);
	pointer-events: none;
}

.kaynaklar-section-inner {
	position: relative;
	z-index: 1;
	max-width: 1620px;
	margin: 0 auto;
}

.kaynaklar-title {
	margin: 0 0 2rem;
	font-family: "Urbanist", sans-serif;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.kaynaklar-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 2rem;
}

.kaynaklar-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	text-decoration: none;
	color: #111;
	transition: box-shadow 0.2s, transform 0.2s;
}

.kaynaklar-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
	transform: translateY(-2px);
}

.kaynaklar-card-icon {
	flex-shrink: 0;
	width: 25px;
	height: 25px;
	border-radius: 10px;
	background: #f97316;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kaynaklar-card-icon img {
	display: block;
	filter: brightness(0) invert(1);
}

.kaynaklar-card-label {
	font-family: "Urbanist", sans-serif;
	font-size: 1.0625rem;
	font-weight: 600;
	color: #111;
}

.kaynaklar-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: #fff;
	color: #121212 !important;
	font-family: "Urbanist", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #2563eb;
	border-radius: 50px;
	transition: background 0.2s, color 0.2s;
}

.kaynaklar-btn:hover {
	background: #2563eb;
	color: #fff !important;
}

.kaynaklar-btn-arrow {
	display: block;
}

/* ==========================================================================
   Sosyal Kanallarımız Section (ss1 style)
   ========================================================================== */
.sosyal-section {
	background-color: #f8fafc;
	padding: 10rem 1.5rem;
}

.sosyal-section-inner {
	max-width: 1620px;
	margin: 0 auto;
	text-align: center;
}

.sosyal-ust-baslik {
	margin: 0 0 0.5rem;
	font-family: "Urbanist", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #f97316;
	line-height: 1.4;
}

.sosyal-title {
	margin: 0 0 2rem;
	font-family: "Urbanist", sans-serif;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #1e3a5f;
	line-height: 1.2;
}

.sosyal-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.sosyal-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #d4d4d4;
	border: 1px solid rgba(0, 0, 0, 0.08);
	text-decoration: none;
	transition: background-color 0.2s, transform 0.2s;
}

.sosyal-icon-link:hover {
	background-color: #c4c4c4;
	transform: scale(1.05);
}

.sosyal-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.sosyal-icon-img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
	color: #525252;
}

.sosyal-icon-link .sosyal-icon-img {
	filter: none;
}
