main {
  padding: 20px;
}

h2 {
  color: #00695c;
}
/* index */
.halaman-utama {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 10px;
}

.logo-majelis {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.halaman-utama h2 {
  font-size: 2.5em;
  color: #00695c;
  margin-bottom: 15px;
}

.marquee {
  font-size: 3em;
  color: #004d40;
  font-weight: bold;
  background: #e0f2f1;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 105, 92, 0.1);
}

/* Nadzom dan Sholawat */
.baris-arab {
  font-size: 1.4em;
  font-family: 'Amiri', serif;
  margin: 10px 0;
  padding: 5px 10px;
  background: #fff;
}

.kanan {
  direction: rtl;
  text-align: right;
}

.kiri {
  direction: rtl;
  text-align: left;
}

.judul-expandable {
  background-color: #e0f2f1;
  padding: 10px;
  margin-top: 15px;
  border-left: 5px solid #00695c;
  font-size: 1.2em;
  cursor: pointer;
}

.judul-expandable:hover {
  background-color: #b2dfdb;
}
/*Berita*/
.berita-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.berita-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

.berita-info h3 {
  margin: 0 0 5px 0;
  font-size: 2em;
  color: #00695c;
}

.berita-info a {
  color: #00796b;
  text-decoration: none;
}

.berita-info a:hover {
  text-decoration: underline;
}

/*kontak*/
.kontak-container {
  max-width: 600px;
  margin: auto;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kontak-container h2 {
  color: #00695c;
  text-align: center;
  margin-bottom: 25px;
}

.kontak-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 1.1em;
}

.kontak-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}

.kontak-item a {
  text-decoration: none;
  color: #004d40;
  transition: color 0.3s ease;
}

.kontak-item a:hover {
  color: #009688;
}
/*Kitab*/
.kitab-container {
  max-width: 800px;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}

.kitab-container h2 {
  color: #00695c;
  margin-bottom: 25px;
}

.kitab-list {
  list-style: none;
  padding: 0;
}

.kitab-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: left;
}

.kitab-item h3 {
  margin: 0 0 10px;
  color: #004d40;
}

.btn-pdf {
  display: inline-block;
  padding: 8px 15px;
  background-color: #00796b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-pdf:hover {
  background-color: #004d40;
}

