:root {
	--bg: #133e87;
	--bg_light: #608bc1;
	--text: #f3f3e0;
	--text_light: #cbdceb;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: var(--bg);
	color: var(--text);
	line-height: 1.6;
	height: 100vh;
}

a {
	text-decoration: none;
	color: var(--text);
}

.container {
	width: 100%;
	height: 100%;
	background: transparent;
	/* overflow: hidden; */
	/* CSS Smooth Scroll */
	overflow-y: auto;
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
}

.navbar {
	position: fixed;
	top: 0;
	z-index: 10;
	display: flex;
	width: 100%;
	height: 60px;
	/* background-image: url("https://images.unsplash.com/photo-1613690399151-65ea69478674?q=80&w=1173&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-position: top;
	background-size: cover; */
	background: inherit;
}

.navbar ul {
	display: flex;
	list-style-type: none;
	width: 100%;
	justify-content: center;
}

.navbar ul li {
	padding: 1rem 0;
	margin: 0 1.5rem;
	transition: all 0.5s;

	&:hover {
		transform: translateY(-5px);
	}

	@media (max-width: 768px) {
		margin: 0 0.2rem;
	}
}

.navbar ul li a {
	color: var(--bg);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.15rem;
	padding: 0.5rem;
	cursor: pointer;
	color: white !important;
	/* text-shadow: 0 2px 2px #fff; */
	position: relative;

	&:hover::after {
		transform: scaleX(1);
	}
}

.navbar ul li a::after {
	content: "";
	position: absolute;
	/* z-index: 10; */
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background-color: white;
	transition: all 0.3s linear;
	transform: scaleX(0);
	transform-origin: left;
}

/* .active {
	color: #fff !important;
	text-shadow: none !important;
	border-bottom: 2px solid #133e87;
} */

section {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	scroll-snap-align: center;
	position: relative;
}

section div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	width: 100%;
	height: 100%;

	@media (min-width: 768px) {
		width: 80%;
		margin: 0 auto;
	}
}

section h1 {
	width: 100%;
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	background-image: linear-gradient(to right, rgba(58, 140, 248, 0.651), rgba(255, 255, 255, 0));
}

section p {
	font-size: 1.2rem;
	text-align: justify;
	text-shadow: 0 0 10px #000;
}

section#home {
	background-image: linear-gradient(rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.2)),
		url("https://images.unsplash.com/photo-1718031642129-89077713ec0e?q=80&w=1162&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-position: center;
	background-size: cover;
}

section#about {
	background-image: linear-gradient(rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.2)),
		url("https://images.unsplash.com/photo-1604506522146-316c8bedd874?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-position: center;
	background-size: cover;
}

section#service {
	background-image: linear-gradient(rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.2)),
		url("https://images.unsplash.com/photo-1698086033548-c26068357c23?q=80&w=1471&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-position: center;
	background-size: cover;
}

section#contact {
	background-image: linear-gradient(rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.2)),
		url("https://images.unsplash.com/photo-1650499320346-174650da81e1?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-position: center;
	background-size: cover;
}