/* ==========================================================================
   Footer Styles - Nosači Farova
   ========================================================================== */

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */

.site-footer {
	background-color: var(--color-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 60px 0 0;
}

/* --------------------------------------------------------------------------
   Footer Grid
   -------------------------------------------------------------------------- */

.footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
	gap: 40px;
}

/* --------------------------------------------------------------------------
   Footer Logo & Description
   -------------------------------------------------------------------------- */

.footer__logo {
	margin-bottom: 20px;
}

.footer__logo a {
	display: inline-block;
}

.footer__logo img {
	max-height: 40px;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer__description {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Footer Column Title
   -------------------------------------------------------------------------- */

.footer__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--color-white);
	position: relative;
	padding-bottom: 12px;
}

.footer__title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: var(--color-primary);
	border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Footer Links
   -------------------------------------------------------------------------- */

.footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__links li {
	margin-bottom: 2px;
}

.footer__links a {
	color: rgba(255, 255, 255, 0.6);
	padding: 6px 0;
	display: block;
	transition: color var(--transition), padding-left var(--transition);
	font-size: 0.95rem;
}

.footer__links a:hover {
	color: var(--color-white);
	padding-left: 5px;
}

/* --------------------------------------------------------------------------
   Footer Contact
   -------------------------------------------------------------------------- */

.footer__contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	transition: color var(--transition);
}

a.footer__contact-item:hover {
	color: var(--color-white);
}

.footer__contact-item svg {
	color: var(--color-primary);
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

/* --------------------------------------------------------------------------
   Footer Social Links
   -------------------------------------------------------------------------- */

.footer__social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.footer__social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	transition: background-color var(--transition), transform var(--transition);
}

.footer__social a:hover {
	background-color: var(--color-primary);
	transform: translateY(-2px);
}

.footer__social a svg {
	width: 18px;
	height: 18px;
}

/* --------------------------------------------------------------------------
   Footer Working Hours
   -------------------------------------------------------------------------- */

.footer__hours {
	margin-bottom: 20px;
}

.footer__hours-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

.footer__hours-row:last-child {
	border-bottom: none;
}

.footer__hours-row span:last-child {
	color: var(--color-white);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Footer Delivery Notice
   -------------------------------------------------------------------------- */

.footer__delivery {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius);
	border-left: 3px solid var(--color-primary);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.footer__delivery svg {
	flex-shrink: 0;
	color: var(--color-primary);
	margin-top: 1px;
}

/* --------------------------------------------------------------------------
   Footer Bottom
   -------------------------------------------------------------------------- */

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 40px;
	background-color: #050505;
}

.footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
}

.footer__copyright {
	margin: 0;
}

.footer__bottom-links {
	display: flex;
	gap: 20px;
}

.footer__bottom-links a {
	color: rgba(255, 255, 255, 0.4);
	transition: color var(--transition);
	font-size: 0.85rem;
}

.footer__bottom-links a:hover {
	color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 992px) {
	.site-footer {
		padding: 50px 0 0;
	}

	.footer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.site-footer {
		padding: 40px 0 0;
	}

	.footer__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer__col {
		text-align: left;
	}

	.footer__bottom-inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.footer__bottom-links {
		justify-content: center;
	}
}
