/*
Theme Name: Art Life Yapı
Theme URI: https://www.artlifeyapi.com.tr
Description: Art Life Yapı için Kadence alt teması. Proje künyesi ve marka renkleri.
Author: Art Life Yapı
Template: kadence
Version: 1.3.0
Text Domain: artlife
*/

:root {
	--alt-ink: #1c1c1c;
	--alt-muted: #6b6b6b;
	--alt-rule: #e2ded7;
	--alt-accent: #b8955a;
	--alt-wash: #f5f3f0;
}

/* ---- Proje künyesi ---- */

.alt-kunye {
	margin: 2.75rem 0;
}

.alt-kunye__durum {
	display: inline-block;
	margin-bottom: 1.5rem;
	padding: 0.4em 1.1em;
	border-radius: 2em;
	background: var(--alt-accent);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.alt-kunye__durum--tamamlandi {
	background: var(--alt-ink);
}

.alt-kunye__baslik {
	margin: 0 0 1.25rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid var(--alt-rule);
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--alt-ink);
}

.alt-kunye__liste {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1.6rem 2.5rem;
	margin: 0;
}

.alt-kunye__satir {
	margin: 0;
}

.alt-kunye__etiket {
	margin: 0 0 0.3rem;
	font-size: 0.8125rem;
	color: var(--alt-muted);
}

.alt-kunye__deger {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--alt-ink);
}

.alt-kunye__video {
	margin-top: 2.5rem;
}

.alt-kunye__video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

@media (max-width: 767px) {
	.alt-kunye__liste {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.3rem 1.5rem;
	}
}

/* ---- Proje kartları ---- */

.alt-projeler {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 0 0 2.5rem;
}

.alt-kart {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--alt-rule);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.alt-kart:hover {
	box-shadow: 0 12px 32px rgba(28, 28, 28, 0.12);
	transform: translateY(-3px);
}

.alt-kart__gorsel {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--alt-wash);
}

.alt-kart__gorsel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.alt-kart:hover .alt-kart__gorsel img {
	transform: scale(1.04);
}

.alt-kart__rozet {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.3em 0.9em;
	border-radius: 2em;
	background: var(--alt-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.alt-kart__rozet--tamamlandi {
	background: rgba(28, 28, 28, 0.85);
}

.alt-kart__govde {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem;
}

.alt-kart__baslik {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
}

.alt-kart__baslik a {
	color: var(--alt-ink);
	text-decoration: none;
}

.alt-kart__baslik a:hover {
	color: var(--alt-accent);
}

.alt-kart__konum {
	margin: 0 0 0.9rem;
	font-size: 0.875rem;
	color: var(--alt-muted);
}

.alt-kart__ozet {
	margin: 0 0 1.4rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--alt-muted);
}

.alt-kart__link {
	margin-top: auto;
	align-self: flex-start;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--alt-accent);
	text-decoration: none;
}

.alt-kart__link:hover {
	text-decoration: underline;
}

.alt-projeler__alt {
	text-align: center;
}

.alt-buton {
	display: inline-block;
	padding: 0.85em 2.2em;
	border: 1px solid var(--alt-accent);
	border-radius: 4px;
	color: var(--alt-accent);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.alt-buton:hover {
	background: var(--alt-accent);
	color: #fff;
}

/* ---- Mobil ince ayarlar ---- */

@media (max-width: 1024px) {
	.alt-projeler {
		gap: 1.5rem;
	}
}

@media (max-width: 767px) {
	.alt-projeler {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}

	.alt-kart__govde {
		padding: 1.25rem;
	}

	.alt-kart__baslik {
		font-size: 1.15rem;
	}

	/* Dokunmatik cihazlarda hover efektleri anlamsız, kapat */
	.alt-kart:hover {
		transform: none;
		box-shadow: none;
	}

	.alt-kart:hover .alt-kart__gorsel img {
		transform: none;
	}

	.alt-buton {
		display: block;
		text-align: center;
	}

	.alt-kunye {
		margin: 2rem 0;
	}

	.alt-kunye__baslik {
		font-size: 1.05rem;
	}

	.alt-kunye__deger {
		font-size: 1rem;
	}
}

@media (max-width: 420px) {
	.alt-kunye__liste {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   ANASAYFA
   ============================================ */

.alt-anasayfa {
	overflow-x: hidden;
}

.alt-kapsayici {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---- Bölüm kabukları ---- */

.alt-bolum {
	padding: 84px 0;
}

.alt-bolum--beyaz { background: #fff; }
.alt-bolum--bej   { background: var(--alt-wash); }
.alt-bolum--koyu  { background: var(--alt-ink); color: #fff; }

.alt-bolum__ust {
	max-width: 620px;
	margin: 0 auto 48px;
	text-align: center;
}

.alt-bolum__baslik {
	margin: 0 0 12px;
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--alt-ink);
}

.alt-bolum__baslik--sol {
	text-align: left;
}

.alt-bolum__metin {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--alt-muted);
}

/* ---- Butonlar ---- */

.alt-btn {
	display: inline-block;
	padding: 15px 32px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.alt-btn--dolu,
.alt-btn--altin {
	background: var(--alt-accent);
	border-color: var(--alt-accent);
	color: #fff;
}

.alt-btn--dolu:hover,
.alt-btn--altin:hover {
	background: #a07f47;
	border-color: #a07f47;
	color: #fff;
}

.alt-btn--cerceve {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.8);
	color: #fff;
}

.alt-btn--cerceve:hover {
	background: #fff;
	border-color: #fff;
	color: var(--alt-ink);
}

/* ---- 1. Hero ---- */

.alt-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 620px;
	padding: 90px 0;
	background-color: var(--alt-ink);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.alt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		100deg,
		rgba(12, 12, 12, 0.82) 0%,
		rgba(12, 12, 12, 0.62) 55%,
		rgba(12, 12, 12, 0.42) 100%
	);
}

.alt-hero__ic {
	position: relative;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
}

.alt-hero__baslik {
	max-width: 15ch;
	margin: 0 0 18px;
	font-size: clamp(2rem, 4.6vw, 3.25rem);
	font-weight: 700;
	line-height: 1.14;
	color: #fff;
}

.alt-hero__metin {
	max-width: 46ch;
	margin: 0 0 34px;
	font-size: 1.1875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.alt-hero__butonlar {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ---- 3. Rakamlar ---- */

.alt-rakamlar {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 2rem;
	text-align: center;
}

.alt-rakam__deger {
	margin: 0 0 6px;
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1;
	color: var(--alt-accent);
}

.alt-rakam__etiket {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--alt-muted);
}

/* ---- 4. Nasıl çalışıyoruz ---- */

.alt-nedenler {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.5rem;
}

.alt-neden {
	padding-top: 1.25rem;
	border-top: 2px solid var(--alt-accent);
}

.alt-neden__baslik {
	margin: 0 0 0.6rem;
	font-size: 1.1875rem;
	font-weight: 600;
	color: var(--alt-ink);
}

.alt-neden__metin {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--alt-muted);
}

/* ---- 5. Hakkımızda ---- */

.alt-hakkinda {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.alt-hakkinda--tek {
	grid-template-columns: 1fr;
	max-width: 720px;
	margin: 0 auto;
}

.alt-hakkinda__gorsel img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 440px;
	object-fit: cover;
}

.alt-hakkinda__metin p {
	margin: 0 0 1.1rem;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--alt-muted);
}

.alt-hakkinda__metin .alt-btn {
	margin-top: 0.6rem;
}

/* ---- 6. İletişim şeridi ---- */

.alt-serit {
	text-align: center;
}

.alt-serit__baslik {
	margin: 0 0 10px;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.alt-serit__metin {
	margin: 0 0 28px;
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.75);
}

.alt-serit__butonlar {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

.alt-serit__eposta {
	margin: 22px 0 0;
	font-size: 0.9375rem;
}

.alt-serit__eposta a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.alt-serit__eposta a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ---- Anasayfa duyarlı ayarlar ---- */

@media (max-width: 900px) {
	.alt-hakkinda {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.alt-bolum__baslik--sol {
		text-align: center;
	}

	.alt-hakkinda__metin {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.alt-bolum {
		padding: 56px 0;
	}

	.alt-bolum__ust {
		margin-bottom: 32px;
	}

	.alt-hero {
		min-height: 480px;
		padding: 64px 0;
	}

	.alt-hero::before {
		background: rgba(12, 12, 12, 0.68);
	}

	.alt-hero__baslik {
		max-width: none;
	}

	.alt-hero__metin {
		font-size: 1.0625rem;
		margin-bottom: 26px;
	}

	.alt-hero__butonlar {
		flex-direction: column;
		align-items: stretch;
	}

	.alt-hero__butonlar .alt-btn,
	.alt-serit__butonlar .alt-btn {
		text-align: center;
	}

	.alt-rakamlar {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem 1rem;
	}

	.alt-rakam__deger {
		font-size: 2.125rem;
	}

	.alt-nedenler {
		gap: 1.75rem;
	}

	.alt-serit__baslik {
		font-size: 1.5rem;
	}

	.alt-serit__butonlar {
		flex-direction: column;
	}
}

.alt-projeler__bos {
	padding: 1.25rem 1.5rem;
	border: 1px dashed var(--alt-rule);
	color: var(--alt-muted);
	font-size: 0.9375rem;
	text-align: center;
}

/* ---- Hizmetler ---- */

.alt-hizmetler {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}

.alt-hizmet {
	position: relative;
	display: block;
	padding: 1.75rem 1.5rem 3rem;
	background: #fff;
	border: 1px solid var(--alt-rule);
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.alt-hizmet:hover {
	border-color: var(--alt-accent);
	box-shadow: 0 8px 24px rgba(28, 28, 28, 0.08);
}

.alt-hizmet__baslik {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--alt-ink);
}

.alt-hizmet__metin {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--alt-muted);
}

.alt-hizmet__ok {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	font-size: 1.125rem;
	color: var(--alt-accent);
	transition: transform 0.2s ease;
}

.alt-hizmet:hover .alt-hizmet__ok {
	transform: translateX(4px);
}

@media (max-width: 767px) {
	.alt-hizmetler {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.alt-hizmet {
		padding: 1.4rem 1.25rem 2.6rem;
	}
}
