/**
 * Site altı — koyu yeşil zemin, solda marka/iletişim, sağda 5 sütunlu menü.
 */

.tume-footer {
	background: var(--c-koyu);
	color: var(--c-beyaz);
	font-size: var(--wp--preset--font-size--sm);
}

.tume-footer__ic {
	display: grid;
	grid-template-columns: minmax(230px, 1fr) minmax(0, 2.6fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	padding-block: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Marka + iletişim ---------- */

.tume-footer__logo {
	margin-bottom: 1.5rem;
}

.tume-footer__logo img {
	width: 210px;
	height: auto;
}

.tume-footer__satir {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 0 0 0.9rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.85);
}

.tume-footer__satir svg {
	flex: 0 0 auto;
	margin-top: 0.2em;
	color: var(--c-lime);
}

.tume-footer__satir a:hover {
	color: var(--c-lime);
}

.tume-sosyal {
	display: flex;
	gap: 0.9rem;
	margin-top: 1.4rem;
}

.tume-sosyal a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: background var(--gecis);
}

.tume-sosyal a:hover {
	background: rgba(255, 255, 255, 0.12);
}

.tume-sosyal img {
	width: 16px;
	height: 16px;
}

/* ---------- Menü sütunları ---------- */

.tume-footer__menuler {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-content: start;
}

.tume-footer__kolon-baslik {
	margin: 0 0 1rem;
	font-family: var(--f-menu);
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--c-beyaz);
}

.tume-footer__kolon-baslik a:hover {
	color: var(--c-lime);
}

.tume-footer__kolon li {
	margin-bottom: 0.55rem;
}

.tume-footer__kolon li a {
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.35;
}

.tume-footer__kolon li a:hover {
	color: var(--c-lime);
}

/* ---------- Alt bar ---------- */

.tume-footer__alt {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: var(--wp--preset--font-size--xs);
	color: rgba(255, 255, 255, 0.7);
}

.tume-footer__alt-ic {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem 1rem;
	padding-block: 1.1rem;
	text-align: center;
}

.tume-footer__alt-ic p {
	margin: 0;
}

.tume-footer__yasal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1rem;
}

.tume-footer__yasal a:hover {
	color: var(--c-lime);
}

@media (max-width: 1100px) {
	.tume-footer__menuler {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.tume-footer__ic {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.tume-footer__menuler {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
