﻿body {
	margin: 0;
	padding: 0;
}

.footer {
	position: relative;
	width: 100%;
	background: transparent;
}

.footer-bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.footer-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 60px 20px 30px;
	text-align: center;
	color: white;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

/* اللوجو */
.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 140px;
}

	.logo img {
		max-width: 220px;
		height: auto;
	}

/* زر الرئيسية */
.home-button-section {
	margin-top: -10px;
}

.home-btn {
	background: rgba(255, 255, 255, 0.9);
	color: #2c5aa0;
	border: none;
	padding: 14px 40px;
	border-radius: 40px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

	.home-btn:hover {
		background: white;
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	}

/* السوشيال ميديا */
.social-section {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
	padding-top: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.follow-text {
	font-size: 1.7rem;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.9);
}

.social-icons {
	display: flex;
	gap: 20px;
}

.social-icon {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

	.social-icon:hover {
		background: rgba(255, 255, 255, 0.2);
		transform: translateY(-3px);
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	}

	.social-icon i {
		font-size: 1.2rem;
	}

/* روابط الفوتر */
.footer-links {
	margin: 20px 0;
}

.links-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.footer-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 1.1rem;
	position: relative;
	padding: 0 20px;
	transition: all 0.3s ease;
	border-inline-start: 1px solid rgba(255, 255, 255, 0.3);
}

	.footer-link:first-child {
		border-inline-start: none;
	}

	.footer-link:hover {
		color: white;
		transform: translateY(-1px);
	}

	.footer-link::after {
		content: '';
		position: absolute;
		bottom: -3px;
		left: 0;
		width: 0;
		height: 2px;
		background: white;
		transition: width 0.3s ease;
	}

	.footer-link:hover::after {
		width: 100%;
	}

/* الحقوق */
.copyright {
	text-align: center;
	margin-top: -20px;
	padding-top: 20px;
	width: 100%;
	font-size: 1rem;
	color: white;
}

@media (max-width: 768px) {
	.footer-content {
		margin-top:30px;
		position: absolute;
		z-index: 2;
		gap: 35px;
		padding: 40px 15px 20px;
	}

	.footer-bg-image img {
		min-height: 800px;
	}

	.logo {
		margin-top: 100px;
	}

		.logo img {
			max-width: 160px;
		}

	.links-row {
		flex-direction: column;
		gap: 10px;
	}
	.footer-link {
		border-left: none !important;
		border-inline-start: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important; 
	}

	.home-btn {
		padding: 10px 25px;
		font-size: 0.9rem;
	}

	.follow-text {
		font-size: 1.3rem;
	}

	.social-icon {
		width: 38px;
		height: 38px;
	}
}
