:root {
	--text-padding: 1rem;
	--banner-green: b3ff80ff;
}

* {
	box-sizing: border-box;
}

a {
	color: black;
}

html {
	min-height: 100vh;
}
body {
	margin: 0;
	min-height: 100vh;
}
main {
	min-height: calc(90vh - 2rem);
}

.header {
	background-image: url("../media/banner.png");
	background-position: center;
	background-size:cover;
	background-repeat: no-repeat;
	border-top: 1.5px solid black;
	min-height: 9rem;
}

.menu-icon {
	width: 10%;
	margin-left: 92.5%;
	transform: translate(-50%, 0%);
	cursor: pointer;
}
.nav {
	display: none;
	z-index: 99;
	position: relative;
}
.nav-drop {
	display: block;
	width: 100%;
	background-color: rgb(230, 230, 230);
	font-size: 1.2rem;
	color: rgb(70, 70, 70);

	a {
		display: inline-block;
		width: 100%;
		border-bottom: 1px solid black;
		padding: 0.6rem 1rem;
	}
	a:hover {
		cursor: pointer;
	}
}

.layout-container {
	display: grid;
	grid-template-columns: repeat(12, [col-start] 1fr);
	gap: 20px;
}
.layout-container > * {
	padding: 0.8rem 1.2rem;
	grid-column: col-start / span 12;
}

.text-section {
	grid-column: col-start / span 12;
}
.section-profile {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;

	.image-section-profile {
		background-image: url("../media/blank.png");
		background-position: center;
		background-size:contain;
		background-repeat: no-repeat;
		height: 100%;
		width: 100%;

	}
	.text-section-profile {
		padding-top: 1rem;
		padding-bottom: 2rem;
	}
}

.image-section, .image-section-text {
	width: 100%;
	img {
		width: 100%;
	}
}


footer {
	position: relative;
	bottom: 0px;
	width: 100%;
	background-color: rgb(200, 200, 200);
	height: 10vh;
	margin-top: 2rem;

	.footer-section {
		height: 80%;
		width: 90%;
		margin-left: 5%;
		display: flex;
		justify-content: space-evenly;
		align-items: center;

		a {
			padding: var(--text-padding);

			img {
				width: 3rem;
			}
		}
	}
}



/*-=-=-=-=-=-=-=-=-=-=-*/

/*QUERIES*/

@media (min-width: 576px) {
	.header-wrp {
		padding-bottom: 1rem;
	}
	.menu-icon {
		display: none;
	}
	.nav {
		width: calc(90%);
		margin-left: 5%;
		display: flex;
		justify-content: space-between;
		background-color: rgb(230, 230, 230);
		border-radius: 0.5rem;
		font-size: 1.2rem;
		color: rgb(70, 70, 70);

		a {
			padding: 0.6rem 1rem;
			color: #444444;
		}
		a:hover {
			cursor: pointer;
			color: #000000;
		}
	}

	.layout-container > * {
		grid-column: col-start  2 / span 10;
	}
}
@media (min-width: 768px) {
	* {
		font-size: 1.2rem;
	}

}
@media (min-width: 1200px) {

	.layout-container > * {
		padding: 0.8rem 1.2rem;
		grid-column: col-start 3 / span 8;
	}
	.text-section-image {
		grid-column: col-start 3 / span 8;
	}
	.image-section-text {
		grid-column: col-start 3 / span 8;

		img {
			position: relative;
			top: 0;
			transform: none;
			width: 100%;
		}
	}

	.section-profile {
		margin-top: 1rem;
		.image-section-profile {
			background-position: right;
		} 
	}
}
@media (min-width: 1700px) {
	.layout-container > * {
		grid-column: 4 / span 6;
	}
}

/*dynamic classes*/
.stickyNav {
	position: fixed;
	top: 0;
}