/* =========================================
   PERFECTLY POSH POMS
   LUXURY FOOTER
========================================= */

.pp-lux-footer {
	position: relative;
	overflow: hidden;
	padding: 42px 0 20px;

	color: #ffffff;

	background:
		radial-gradient(
			circle at 50% 20%,
			rgba(183, 141, 76, 0.05),
			transparent 40%
		),
		#070707;

	border-top: 1px solid #b78d4c;
}


/* =========================================
   MAIN FOOTER GRID
========================================= */

.pp-lux-footer__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	align-items: center;
	gap: 70px;

	width: min(1160px, calc(100% - 60px));
	margin-inline: auto;
}


/* =========================================
   LEFT - ABOUT
========================================= */

.pp-lux-footer__about {
	max-width: 310px;
}

.pp-lux-footer__about h3 {
	margin: 0 0 12px;

	color: #d1b277;

	font-family: "Montserrat", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.7px;

	text-transform: uppercase;
}

.pp-lux-footer__about p {
	margin: 0;

	color: rgba(255, 255, 255, 0.78);

	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}


/* =========================================
   CENTER
========================================= */

.pp-lux-footer__center {
	text-align: center;
}


/* =========================================
   LOGO IMAGE
========================================= */

.pp-lux-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin: 0 auto 8px;

	text-decoration: none !important;
}

.pp-lux-footer__logo img {
	display: block;

	width: 100px;
	height: 100px;

	object-fit: contain;

	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

.pp-lux-footer__logo:hover img {
	transform: scale(1.04);
}


/* =========================================
   CENTER HEADING
========================================= */

.pp-lux-footer__center h2 {
	margin: 0;

	color: #d1b277;

	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 46px;
	font-weight: 500;
	line-height: 1;
}

.pp-lux-footer__center > p {
	margin: 7px 0 0;

	color: #c5a96f;

	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 22px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
}


/* =========================================
   RIGHT - CONTACT
========================================= */

.pp-lux-footer__contact {
	max-width: 330px;

	justify-self: end;
}

.pp-lux-footer__contact h3 {
	margin: 0 0 15px;

	color: #d1b277;

	font-family: "Montserrat", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.7px;

	text-transform: uppercase;
}

.pp-lux-footer__contact ul {
	margin: 0;
	padding: 0;

	list-style: none;
}

.pp-lux-footer__contact li {
	display: grid;
	grid-template-columns: 30px 1fr;
	align-items: center;
	gap: 10px;

	margin-bottom: 14px;
}

.pp-lux-footer__contact li:last-child {
	margin-bottom: 0;
}

.pp-lux-footer__contact-icon {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 26px;

	color: #c89c59;

	font-size: 21px;
	line-height: 1;
}

.pp-lux-footer__contact a,
.pp-lux-footer__contact li > span:last-child {
	color: rgba(255, 255, 255, 0.82) !important;

	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;

	text-decoration: none !important;
}

.pp-lux-footer__contact a:hover {
	color: #d1b277 !important;
}


/* =========================================
   SOCIAL DIVIDER
========================================= */

.pp-lux-footer__social-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	width: min(1160px, calc(100% - 60px));

	margin: 28px auto 0;
}

.pp-lux-footer__line {
	flex: 1;

	height: 1px;

	background: rgba(183, 141, 76, 0.72);
}

.pp-lux-footer__ornament {
	flex: none;

	color: #b78d4c;

	font-size: 13px;
	line-height: 1;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.pp-lux-footer__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.pp-lux-footer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 36px;
	height: 36px;

	color: #d1b277 !important;
	background: transparent;

	border: 1px solid #b78d4c;
	border-radius: 50%;

	text-decoration: none !important;

	transition:
		background-color .25s ease,
		color .25s ease,
		transform .25s ease;
}

.pp-lux-footer__socials svg {
	width: 16px;
	height: 16px;

	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.5;
}

.pp-lux-footer__socials a:hover {
	color: #070707 !important;
	background: #b78d4c;
	transform: translateY(-2px);
}

/* Instagram uses line icon */
.pp-lux-footer__socials a[aria-label="Instagram"] svg {
	fill: none;
}

/* Facebook / Pinterest filled icons */
.pp-lux-footer__socials a[aria-label="Facebook"] svg,
.pp-lux-footer__socials a[aria-label="Pinterest"] svg {
	stroke: none;
	fill: currentColor;
}


/* =========================================
   COPYRIGHT
========================================= */

.pp-lux-footer__copyright {
	width: min(1160px, calc(100% - 60px));

	margin: 18px auto 0;

	text-align: center;
}

.pp-lux-footer__copyright p {
	margin: 0;

	color: rgba(255, 255, 255, 0.34);

	font-family: "Montserrat", Arial, sans-serif;
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

	.pp-lux-footer {
		padding-top: 50px;
	}

	.pp-lux-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 45px;
	}

	.pp-lux-footer__center {
		grid-column: 1 / -1;
		grid-row: 1;

		margin-bottom: 10px;
	}

	.pp-lux-footer__about {
		grid-column: 1;
	}

	.pp-lux-footer__contact {
		grid-column: 2;

		justify-self: end;
	}

	.pp-lux-footer__logo img {
		width: 90px;
		height: 90px;
	}

	.pp-lux-footer__center h2 {
		font-size: 42px;
	}
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

	.pp-lux-footer {
		padding: 50px 0 20px;
	}

	.pp-lux-footer__inner {
		display: flex;
		flex-direction: column;

		width: calc(100% - 40px);

		gap: 38px;

		text-align: center;
	}

	.pp-lux-footer__center {
		order: 1;

		margin: 0;
	}

	.pp-lux-footer__about {
		order: 2;

		max-width: 430px;
		margin-inline: auto;
	}

	.pp-lux-footer__contact {
		order: 3;

		max-width: 430px;
		margin-inline: auto;

		justify-self: auto;
	}

	.pp-lux-footer__logo img {
		width: 88px;
		height: 88px;
	}

	.pp-lux-footer__center h2 {
		font-size: 40px;
	}

	.pp-lux-footer__center > p {
		font-size: 20px;
	}

	.pp-lux-footer__about p {
		font-size: 17px;
	}

	.pp-lux-footer__contact ul {
		display: inline-block;

		text-align: left;
	}

	.pp-lux-footer__contact li {
		grid-template-columns: 28px auto;
	}

	.pp-lux-footer__social-row {
		width: calc(100% - 30px);

		margin-top: 38px;
	}

	.pp-lux-footer__copyright {
		width: calc(100% - 30px);
	}
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

	.pp-lux-footer {
		padding-top: 45px;
	}

	.pp-lux-footer__inner {
		width: calc(100% - 30px);
	}

	.pp-lux-footer__logo img {
		width: 80px;
		height: 80px;
	}

	.pp-lux-footer__center h2 {
		font-size: 36px;
	}

	.pp-lux-footer__center > p {
		font-size: 19px;
	}

	.pp-lux-footer__about p {
		font-size: 16px;
	}

	.pp-lux-footer__contact a,
	.pp-lux-footer__contact li > span:last-child {
		font-size: 11px;
	}

	.pp-lux-footer__socials {
		gap: 9px;
	}

	.pp-lux-footer__socials a {
		width: 31px;
		height: 31px;

		font-size: 14px;
	}

	.pp-lux-footer__line {
		min-width: 20px;
	}

}