/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f7f9;
  color: #333;
}

.pejabat {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip-text {
  visibility: hidden;
  width: 140px;
  background-color: #4996e8;
  color: white;
  text-align: center;
  padding: 6px;
  border-radius: 6pxposition: absolute;
  bottom: 130%; /* letakkan di atas gambar */
  left: 50%;
  transform: translateX(-50%);
}

.pejabat:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header & Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(90deg, #ff6363, #ed0909);
  color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e2e2e2;
}

/* Sections */
section {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  color: #555;
}

/* About Us Section */
.about-us {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-text {
  flex: 1;
}

.about-image {
  flex-shrink: 0;
  width: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Struktur & Galeri Grid */
.struktur-grid,
.galeri-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  text-align: center;
}

.pejabat,
.galeri-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.3s;
}

.pejabat:hover,
.galeri-item:hover {
  transform: translateY(-5px);
}

.pejabat img {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;

  margin-bottom: 10px;
}

.galeri-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* Berita & Artikel */
.berita-grid {
  display: flex;
  gap: 20px;
}

.berita-item {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.pagination {
  text-align: center;
  margin-top: 20px;
}

.pagination a {
  text-decoration: none;
  color: #6c63ff;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 0 4px;
}

.pagination a.active {
  background-color: #6c63ff;
  color: white;
  border-color: #6c63ff;
}

/* Kontak Form */
.kontak form {
  display: flex;
  flex-direction: column;
}

.kontak label {
  margin-bottom: 5px;
  font-weight: bold;
}

.kontak input,
.kontak textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.kontak button {
  padding: 12px 20px;
  background-color: #6c63ff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.kontak button:hover {
  background-color: #5a53e3;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  margin-top: 20px;
}
