*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins' , sans-serif;
	text-decoration: none;
	list-style: none;
}

.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 5%;
	background: #213448;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	flex-wrap: wrap;
}
.logo{
	font-family: 28px;
	color: white;
	font-weight: 800;
	transition: 0.3s ease;
}
.logo:hover{
	color: #547792;
	text-shadow: 0 0 25px #547792, 0 0 50px #547792;
	transform: scale(1.1);
}
span{
	color: #547792;
}

.navbar a{
	font-size: 16px;
	color: white;
	font-weight: 500;
	margin: 0 12px;
	border-bottom: 3px solid transparent;
	transition: 0.3s ease;
}
.navbar a:hover,
.navbar a.active{
	color: #547792;
	border-bottom: 3px solid #547792;
}
.contact{
	padding: 8px 20px;
	background-color: white;
	color: black;
	border: 2px solid transparent;
	border-radius: 8px;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 600;
	transition: 0.3s ease;
}
.contact:hover{
	background-color: #547792;
	box-shadow: 0 0 25px #547792;
	color: white;
}

.banner {
	background-image: url('terangbg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 600px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 20px;
}

.banner img{
	margin: 0 auto;
  border-radius: 9999px;
  width: 180px;
  height: 180px;
  border: 6px solid #547792;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.banner h1{
	margin: 20px 0;
}

.banner button{
	margin-top: 40px;
	padding: 10px 28px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	transition: 0.3s ease;
	background-color: #547792;
	color: white;
	width: 200px;
	cursor: pointer;
}

.banner button:hover{
	background-color: #547792;
  box-shadow: 0 0 25px #547792;
}

.container{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	gap: 40px;
	flex-wrap: wrap;
	background-color: #547792;
	color: white;
	min-height: 100vh;
	text-align: center;
}

.photo img {
    width: 180px;
    border-radius: 20px;
    border: 6px solid white;
    box-shadow: 0 4px 10px rgb(0, 0, 0, 0.3);
}

.biodata {
    max-width: 600px;
}

.biodata h1 {
    font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

.biodata p {
    font-size: 20px;
    line-height: 1.6;
    margin: 14px 0;

}

.biodata-item {
  display: flex;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.label {
  width: 120px;
  font-weight: bold;
  text-align: left;
}

.value {
  flex: 1;
  text-align: left;
}
.biodata span{
	color: white;
}

.box-pendidikan {
  text-align: center;
  padding: 60px 20px;
  background-color: #fefefe;
  min-height: 100vh;
}

.box-pendidikan h1 {
  margin-bottom: 40px;
}

.box-pendidikan-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.box-card {
  width: 250px;
  max-width: 90%;
  background-color: #fefefe;
  color: black;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.box-card:hover{
  background-color: #547792;
  color: white;
}

.box-card img {
  margin: 0 auto 20px auto;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 0 15px grey, 0 0 40px grey;
}

@media (max-width: 768px){
	.box-card{
			width: 100%;
			max-width: 90%;
	}
}


.kontak{
	background-color: #547792;
	width: 100%;
	min-height: 100vh; /* agar penuh layar */
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

    .contact-form {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 600px;
    }
    .contact-form h2 {
      text-align: center;
      margin-bottom: 20px;
    }
    .contact-form label {
      font-weight: bold;
      margin-top: 10px;
    }
    .contact-form input,
    .contact-form textarea {
      margin-top: 5px;
      padding: 12px;
      border-radius: 6px;
      border: 1 solid #ccc;
      font-size: 14px;
      resize: vertical;
 }
.contact-form textarea {
      min-height: 100px;
  }

.contact-form button {
      margin-top: 20px;
      padding: 12px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
}

.contact-form button:hover{
	background-color: #0056b3;
}

@media (max-width: 480px) {
	.contact-form{
		padding: 20px;
	}
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #567996;
  color: white;
  text-align: center;
  flex-wrap: wrap;
}

.footer p{
	margin: 0;
	font-size: 1rem;
}

@media (max-width: 600px) {
	.footer p{
		font-size: 0.9rem;
	}
}
