/* Glazbena Pandemija — Footer layout and responsive footer rules. */

/* ==========================================================
   FOOTER
========================================================== */

.gp-footer {
	position: relative;
	background: linear-gradient(110deg, #151218 0%, #24102e 48%, #5d00a1 100%);
	color: #fff;
}

.gp-footer__accent {
	height: 7px;
	background: linear-gradient(90deg, #7d00ff 0%, #b000ff 55%, #7d00ff 100%);
}

.gp-footer__grid {
	display: grid;
	grid-template-columns: .85fr .85fr 1.35fr 1.15fr .7fr;
	gap: 44px;
	align-items: start;
	padding: 66px 0 52px;
}

.gp-footer__title {
	margin: 0 0 14px;
	color: var(--gp-orange);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.1;
}

.gp-footer__links,
.gp-footer__contact-list {
	display: grid;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.gp-footer__links a,
.gp-footer__contact-list a,
.gp-footer__location {
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.35;
}

.gp-footer__links a,
.gp-footer__contact-list a {
	transition: color .18s ease;
}

.gp-footer__links a:hover,
.gp-footer__contact-list a:hover {
	color: var(--gp-orange);
}

.gp-footer__contact-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.gp-footer__contact-list .dashicons,
.gp-footer__location .dashicons,
.gp-footer__whatsapp {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	color: var(--gp-orange);
	font-size: 20px;
	line-height: 20px;
}

.gp-footer__whatsapp {
	display: inline-grid;
	place-items: center;
	font-size: 16px;
	font-weight: 900;
}

.gp-footer__location {
	display: flex;
	align-items: flex-start;
	gap: 11px;
}

.gp-footer__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
}

.gp-footer__logo {
	display: block;
	width: auto;
	max-width: 170px;
	max-height: 160px;
	object-fit: contain;
}

.gp-footer__copyright {
	padding: 16px 0 20px;
	border-top: 1px solid rgba(255,255,255,.1);
	color: rgba(255,255,255,.55);
	font-size: 12px;
}

/* ==========================================================
   FOOTER RESPONSIVE
========================================================== */
@media (max-width: 1100px) {
	.gp-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 48px;
	}

	.gp-footer__logo-wrap {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.gp-footer__accent {
		height: 5px;
	}

	.gp-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 20px;
		padding: 46px 0 38px;
	}

	.gp-footer__column--contact,
	.gp-footer__column--location,
	.gp-footer__logo-wrap {
		grid-column: 1 / -1;
	}

	.gp-footer__title {
		font-size: 19px;
	}

	.gp-footer__links a,
	.gp-footer__contact-list a,
	.gp-footer__location {
		font-size: 15px;
	}

	.gp-footer__logo-wrap {
		justify-content: center;
		min-height: 110px;
	}

	.gp-footer__logo {
		max-width: 145px;
		max-height: 130px;
	}

	.gp-footer__copyright {
		text-align: center;
	}
}

@media (max-width: 430px) {
	.gp-footer__grid {
		grid-template-columns: 1fr;
	}

	.gp-footer__column--contact,
	.gp-footer__column--location,
	.gp-footer__logo-wrap {
		grid-column: auto;
	}

	.gp-footer__contact-list a {
		word-break: break-word;
	}
}

