/**
 * Footer – 4 sütun + alt bar
 * Renkler: #6e301e, #edb61d
 *
 * @package erdaunlumamulleri
 */

.site-footer {
	background-color: #6e301e;
	color: #fff;
	position: relative;
	overflow: visible;
}

.footer-top-border {
	height: 3px;
	background-color: #b77b5a;
}

.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem 2.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2rem 2.5rem;
	align-items: start;
}

.footer-col {
	overflow: visible;
	min-height: 0;
}

/* Logo + hakkında */
.footer-col--brand {
	max-width: 320px;
}

.footer-logo-wrap {
	margin-bottom: 1.25rem;
}

.footer-logo-link {
	display: inline-block;
	line-height: 0;
}

.footer-logo {
	display: block;
	width: 100px;
	height: 100px;
	object-fit: contain;
	border-radius: 50%;
	background-color: rgba( 255, 255, 255, 0.95 );
	padding: 8px;
	box-sizing: border-box;
}

.footer-about {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba( 255, 255, 255, 0.9 );
	margin: 0 0 1.25rem;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
}

.footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid rgba( 255, 255, 255, 0.8 );
	border-radius: 50%;
	color: #fff;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social__link:hover {
	background: #edb61d;
	color: #6e301e;
	border-color: #edb61d;
}

/* Başlıklar – sarı çizgi */
.footer-title {
	position: relative;
	padding-left: 12px;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
}

.footer-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY( -50% );
	width: 4px;
	height: 1.2em;
	background-color: #edb61d;
	border-radius: 2px;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.footer-menu li {
	margin-bottom: 0.5rem;
}

.footer-menu li:last-child {
	margin-bottom: 0;
}

.footer-menu a {
	color: rgba( 255, 255, 255, 0.9 );
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-menu a:hover {
	color: #edb61d;
}

.footer-address {
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba( 255, 255, 255, 0.9 );
	margin: 0 0 0.5rem;
}

.footer-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #edb61d;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-phone:hover {
	color: #fff;
}

.footer-phone__icon {
	display: inline-flex;
	flex-shrink: 0;
	color: inherit;
}

/* Alt bar */
.footer-bottom {
	border-top: 1px solid rgba( 255, 255, 255, 0.15 );
	padding: 1rem 1.5rem;
	overflow: visible;
}

.footer-bottom-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.footer-copy {
	font-size: 0.8rem;
	color: rgba( 255, 255, 255, 0.75 );
	margin: 0;
}

.footer-policies {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	font-size: 0.8rem;
}

.footer-policies a {
	color: rgba( 255, 255, 255, 0.75 );
	text-decoration: none;
	transition: color 0.2s;
}

.footer-policies a:hover {
	color: #edb61d;
}

.footer-policies__sep {
	color: rgba( 255, 255, 255, 0.4 );
	margin: 0 0.15rem;
}

/* Responsive */
@media ( max-width: 992px ) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media ( max-width: 600px ) {
	.footer-inner {
		padding: 1.5rem 1rem 1.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.footer-col--brand {
		max-width: 100%;
	}

	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		padding: 0 0.5rem;
	}
}
