
/* Footer */

footer {
	background-color: var(--main-content-background);
	color: var(--text-color);
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	z-index: 1;
}

.footer-content {
    display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	position: relative;
	width: 100%;
	background-color: var(--lightaccent1-color);
	color: black;
	flex-direction: column;
	border-radius: 30px 30px 0 0;
    gap: 20px;
}
.footer-first-section {
	gap: 20px;
	width: calc(100% - 40px);
	display: flex;
	justify-content: space-between;
}
.footer-top-section {
	gap: 10px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.footer-middle-section {
    width: 100%;
	display: flex;
    max-width: 600px;
	justify-content: space-between;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.footer-column-title {
	font-weight: 500;
	font-size: 21px;
}
.footer-column-links {
	display: flex;
	flex-direction: column;
    gap: 10px;
}
.footer-column-links a {
	color: #444;
	text-decoration: none;
	font-size: 17px;
	font-weight: 200;
	font-family: system-ui;
}
.footer-column-links a:hover,
.footer-column-links a.current {
    text-decoration: underline;
    text-decoration: underline;
}


.footer-bottom {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0;
	width: 100%;
	background-color: var(--lightaccent1-color);
	color: #000000;
}
.footer-bottom a {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	text-decoration: none;
	margin: 10px;
}

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

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

.footer-yt-item,
.footer-insta-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 600;
}

.footer-logo {
	height: 100px;
	width: 500px;
	display: flex;
	justify-content: flex-start;
}
.footer-logo img {
	height: 100%;
	width: fit-content;
	max-width: 400px;
}
/* End of Footer */


@media (max-width: 1000px) {
    .footer-first-section {
        flex-direction: column;
        gap: 40px;
    }
    .footer-middle-section {
        max-width: unset;
    }
    .footer-content {
        gap: 40px;
    }

	.footer-logo {
        width: 100%;
		max-width: 250px;
		height: fit-content;
    }
	.footer-logo img {
		height: 100%;
		width: 100%;
	}
}



@media (max-width: 600px) {
	.footer-first-section {
		flex-direction: column;
		gap: 25px;
	}
    .footer-middle-section {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column-title {
	    font-size: 21px;
    }
    .footer-column-links a {
        font-size: 16px;
    }
}