
/* Footer */
footer {
	background-color: var(--dark-blue-accent);
	color: var(--text-color);
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	z-index: 1;
	align-items: center;
	position: relative;
	margin-top: 240px;
}

.footer-contact-section {
	position: absolute;
	top: 0;
	height: 400px;
	display: flex;
	max-width: 1200px;
	transform: translateY(-50%);
	z-index: 2;
	border: 1px solid black;
	width: calc(100% - 40px);
}
.footer-contact-title {
	font-size: 1.5rem;
	letter-spacing: .1em;
	font-weight: 500;
}
.footer-contact-section .left {
	width: calc(50% - 8rem);
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 4rem;
	font-size: 0.8rem;
	font-weight: 300;
	background-color: var(--main-content-background);
	justify-content: center;
}
.footer-contact-section .right {
	width: 50%;
}
.footer-contact-section .right img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.footer-contact-icons-container {
	display: flex;
	justify-content: space-evenly;
	gap: 2rem;
}
.footer-contact-icon {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	font-size: 0.8rem;
	letter-spacing: .1em;
	font-weight: 600;
	color: #444;
}
.footer-contact-icon:hover {
	opacity: 0.8;
}
.svg-container {
	width: 30px;
	height: 30px;
	padding: 10px;
	border-radius: 25px;
	background-color: var(--main-accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-contact-icon svg {
	width: 26px;
	height: 26px;
	color: white;
}

.footer-socials-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-top: 60px;
}
.social-icons-container {
	display: flex;
	flex-direction: row;
	gap: 1rem;
}
.social-icons-container svg {
	color: white;
	width: 26px;
	height: 26px;
}
.social-icons-container svg:hover {
	color: #79b0ff;
}

.socials-span {
	color: #8d8d8d;
}

.footer-content,
.footer-team-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: calc(100% - 40px);
	color: white;
	flex-direction: column;
	gap: 20px;
	max-width: 1400px;
	margin-top: 40px;
}
.footer-content {
	border-top: 1px solid #444;
	padding-top: 30px;
	margin-bottom: 40px;
}
.footer-team-section {
	margin-top: 240px;
	max-width: 900px;
}
.our-team-title {
	font-size: 1.3rem;
	margin-right: auto;
	display: none; /* TODO: REMOVE AFTER PHOTOS ARE TAKEN AND TEAM SECTION VISIBLE */
}
.team-grid {
	width: 100%;
	display: flex;
	justify-content: space-between;
	justify-items: center;
	gap: 1rem;
	display: none; /* TODO: REMOVE AFTER PHOTOS ARE TAKEN AND TEAM SECTION VISIBLE */
}
.team-member {
	display: flex;
	flex-direction: column;
}
.team-member img {
	height: 180px;
	width: 180px;
	border-radius: 90px;
	background-color: gray;
	margin-bottom: 10px;
	filter: saturate(0);
}

.team-member-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.team-member-name {
	font-size: 1rem;
}
.team-member-title {
	font-weight: 200;
}


.footer-grid {
	display: grid;
	width: 100%;
	gap: 3rem;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.footer-column-container {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.footer-column-title {
	color: #aaa;
}
.footer-column-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.footer-column-links a {
	color: white;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: .12em;
}

.footer-column-links a:hover,
.footer-column-links a.current {
    text-decoration: underline;
    text-decoration: underline;
}


.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #444;
	height: 70px;
	width: calc(100% - 40px);
	color: white;
	max-width: 1400px;
}
.footer-bottom a {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	text-decoration: none;
	margin: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    text-decoration: none;
	color: #828282;
}

.powered-by-container {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 20px;
}
.powered-by {
    height: 25px;
}

/* End of Footer */


@media (max-width: 1000px) {
	footer,
	.footer-team-section {
		margin-top: 340px;
	}
	
	.footer-contact-section .right {
		width: 100%;
		height: 50%;
	}
	.footer-contact-section .left {
		height: calc(50% - 8rem);
		width: calc(100% - 8rem);
	}

	.footer-contact-section {
		height: 600px;
		flex-direction: column;
		max-width: 800px;
	}

}



@media (max-width: 768px) {
	.footer-contact-section .left {
		height: calc(50% - 4rem);
		width: calc(100% - 4rem);
		padding: 2rem;
	}

	.team-grid {
		flex-direction: column;
	}
	.team-member {
		flex-direction: row;
		align-items: flex-end;
		gap: 1rem;
	}
	.team-member img {
		height: 120px;
		width: 120px;
		border-radius: 60px;
	}
	.team-member-details {
		margin-bottom: 20px;
	}
}

@media (max-width: 500px) {
	.footer-contact-section .left {
		height: calc(50% - 2rem);
		width: calc(100% - 2rem);
		padding: 1rem;
		gap: 1rem;
	}
	.footer-contact-title {
		font-size: 1rem;
	}
	.footer-contact-icons-container {
		gap: 1rem;
	}
	.footer-contact-icon {
		font-size: 0.7rem;
	}

	.footer-bottom p {
		display: none;
	}
}