*,  html, body {
	margin:  0;
	padding: 0;
	box-sizing:  border-box;
	font-family:  Helvetica;
	scroll-behavior:  smooth;
}

header {
	background:  #1A2238;
	color:  #eaeaea;
	display: flex;
	justify-content:  center;
	align-items:  center:
	gap:  10px;
	flex-wrap: wrap;
}

.logo {
	margin-right:  auto;
	display:  flex;
	gap:  6px;
}

.logo-img  {
	width: 35px;
	height:  35px;
	margin-left:  10px;
	margin-top:  15px;
}

.logo-title {
	margin-top: 20px;
	cursor: pointer;
	transition: all .5s ease 0s;
}

.logo:hover {
	color:  #FF6A3D;
	transform: rotate(2deg);
}

.btn-cta {
	margin-right:  10px;
	border: none;
	font-size: 20px;
	padding:  6px 12px;
	background:  #FF6A3D;
	color: #eaeaea;
	border-radius: 8px;
	cursor: pointer;
}


nav ul {
	display:  flex;
	padding: 20px;
}

li {
	list-style-type:  none;
	padding:  10px;
}

li a {
		transition: all .5s ease 0s;
		display: inline-block;
}

li a:hover {
	color:  #FF6A3D;
		transform: rotate(2deg);
}

a {
	color: #eaeaea;
	text-decoration: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 0;
}

.intro {
	display: flex;
	flex-direction:  column;
	justify-content:  center;
	align-items:  center;
	gap: 10px;
	text-align: center;
}

.title {
	font-size: 24px;
	font-weight: bold;
}


.img-foto {
  max-width: 500px;
  height: auto;
  width: 100%;
  padding: 10px;
  max-width:  500px;
  
}

.parallax {
	background-image: url('https://raw.githubusercontent.com/TiadorFxCraft/gamvbar-adek/refs/heads/main/WhatsApp_Image_2025-08-10_at_11.54.43-removebg-preview.png');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
}

.tentang {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #1A2238;
	color: #eaeaea;
	padding: 40px;
}

.mt-10 {
	margin-top: 20px;
}

.card {
	display:  flex;
	flex-wrap: wrap;
	justify-content:  center;
	align-items:  center;
	gap: 8px;
}

.card-item {
	text-align:  center;
	width: 25%;
	min-height:  200px;
	max-height:  300px;
	background:  #f7f7f7;
	color:  #222;
    padding:  24px;
	box-shadow:  2px  5px  5px  1px  rgba(0,  0,  0,  0.5);
}

.card-title {
	
	font-size:  18px;
	font-weight:  bolder;
}

.description {
	font-size: 25px;

	
}

.card-description {
	font-size:  14px;
	margin-top:  4px;
}

.icon {
	width:  75px;
	height:  75px;
	margin:  10px;
	padding:  4px;
}

footer {
	padding: 20px;
	text-align:  center;
	background:  #1A2238;
	color: #eaeaea;
}

.description  {
	font-size:  25px;
	font-weight:  bold;
	
}

@media screen and (max-width:  500px) {
	.card  {
		flex-direction: column;
		gap: 0;
	}
	
	.card-item  {
		width: 100%;
		opacity:  0.9;
	}
	
	.container {
		width:  100%;
		padding:  0; 
	}
	
	.intro  {
		margin-top: 20px;
	}
	
	.img-foto {
		padding:  0;
	}
	
	nav {
		position: fixed;
		bottom:  0;
		width: 100%;
		background: #1A2238;
		z-index:  9;
	}
	
	footer {
		margin-bottom: 0;
		margin-top:  70px;
		margin-bottom: 90px;
	}
	}
}


