body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  animation: fadeInPage 0.8s ease-out;
header {
  background-color: #003f88;
  color: white;
  padding: 20px;
  text-align: center;
  animation: fadeInDown 1s ease-out;
}

section {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  animation: fadeIn 1.5s ease-in;
}

h2 {
  border-bottom: 2px solid #003f88;
  padding-bottom: 5px;
  margin-top: 40px;
  animation: slideInLeft 1s ease-in-out;
}
.carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 12px;
}

.carousel img.active {
  opacity: 1;
  z-index: 1;
}

.anggota-card {
  background: linear-gradient(135deg, #e0f7fa, #fffde7);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.anggota-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.anggota-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.anggota-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.anggota-card {
  text-align: center;
  background: linear-gradient(135deg, #e0f7fa, #fffde7);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 15px;
}
.anggota-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

footer {
  background-color: #003f88;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out;
}

a {
  color: #ffdd00;
  text-decoration: none;
}
/* Box Visi & Misi */
.visi-misi-box {
  background: #e3f2fd;
  border-left: 6px solid #1976d2;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 20px;
  animation: fadeIn 1s ease-in-out;
}

.visi-misi-box h3 {
  margin-bottom: 8px;
  color: #0d47a1;
}

.visi-misi-box ul {
  padding-left: 20px;
  margin: 0;
}

.visi-misi-box li {
  margin-bottom: 6px;
}
.galeri-agenda img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
  border-radius: 8px;
}
.foto-pameran {
  display: none;
  margin-top: 10px;
}
.foto-pameran img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} 
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow-x: auto;
}

h1, h2 {
  text-align: center;
  color: #333;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

th {
  background-color: #f0f0f0;
}
/* Animasi Welcome */
#welcome {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  color: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
}

#welcome.fade-out {
  opacity: 0;
  pointer-events: none;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInPage { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

