* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  font-family: "Lato", sans-serif;
}

body {
  background-color: #f0f8ff; /* Soft blue background */
  font-family: "Arial", sans-serif;
}

/* Navbar Start */
#navbar {
  background: #f9f9f9;
  position: sticky; /* Menjadikan navbar sticky */
  top: 0; /* Menempel di atas halaman */
  z-index: 1000; /* Menjaga navbar tetap di atas konten lainnya */
  background-color: rgba(255, 255, 255, 0.8); 
}
#logo {
  font-size: 36px;
  font-weight: 550;
  color: black;
  text-shadow: 0px 1px 1px black;
  margin-bottom: 5px;
}
#logo span {
  color: #3586d7;
}
.navbar-toggler span {
  color: #3586d7;
}
.navbar-nav {
  margin-left: 20px;
}
.nav-item .nav-link {
  font-size: 16px;
  font-weight: 550;
  color: black;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: 0.5s ease;
}
.nav-item .nav-link:hover {
  background: #3586d7;
  color: white;
}
#navbar form button {
  background: orange;
  color: white;
  border: none;
}
/* Navbar End */

/* Home Section Start */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.hero-content {
  flex: 1;
  padding: 2rem;
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #3586d7;
}
.hero-description {
  font-size: 20px;
  color:rgb(112, 112, 112);
  margin-top: 1rem;
}
.hero-buttons {
  margin-top: 2rem;
}
.hero-buttons .btn {
  margin-right: 1rem;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.hero-image img:hover {
  transform: scale(1.05);
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 3rem;
  gap: 1rem;
}
.stats .stat {
  text-align: center;
  flex: 1 1 200px;
}
.stats .stat h4 {
  font-size: 1.5rem;
  color: #333333;
}
.stats .stat p {
  font-size: 1rem;
  color: #666666;
}
@media (max-width: 768px) {
  .hero {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    padding: 1rem 0;
  }
  .hero-image {
    margin-top: 2rem;
  }
}

/* Home Section End */

/*Start Visi Misi dan Struktur Organisasi */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #333333;
}
.visi-misi {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}
.struktur-organisasi {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.list-icon {
  margin-right: 10px;
  color: #3586d7;
}
.struktur-image {
  text-align: center;
}
.struktur-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
/*End Visi Misi dan Struktur Organisasi */

/* Start Jadwal Kebaktian */
/* Jadwal Section */
.jadwal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.jadwal-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 48%;
  min-width: 280px;
}

.jadwal-item h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.jadwal-item p {
  font-size: 1em;
  margin: 5px 0;
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
  .jadwal {
      flex-direction: column;
      align-items: center;
  }

  .jadwal-item {
      width: 90%;
  }
} background-color: #f9f9f9;
}
/* End Jadwal Kebaktian */

/* Tentang Gereja Start */

.profil-section {
  padding: 4rem 0;
}
.profil-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.profil-icon {
  font-size: 3rem;
  color: #3586d7;
}
.profil-img-container {
  text-align: center;
  margin-top: 1.5rem;
}
.profil-img-container img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Tentang Gereja End */

/* Jadwal Kebaktian Start */
.schedule-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.schedule-card:hover {
  transform: translateY(-10px);
}
.icon {
  font-size: 3rem;
  color: #3586d7;
}
.day {
  font-size: 1.2rem;
  font-weight: bold;
}
.time {
  color: #6c757d;
}
/* Jadwal Kebaktian End */

/* Start daftar pendeta */
.pendeta-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pendeta-card img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}
.pendeta-card-body {
  background-color: #f8f9fa;
  text-align: center;
  padding: 20px;
}
.pendeta-card-body h5 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0056b3;
}
.pendeta-card-body p {
  font-size: 1rem;
  color: #333;
}
.pendeta-card-body .btn {
  background-color: #0056b3;
  color: #fff;
}
.pendeta-card-body .btn:hover {
  background-color: #00409a;
}

/* End daftar pendeta */

/* Section Book Start */
.book {
  background: #f9f9f9;
  padding: 50px;
}
.main-text h1 {
  text-align: center;
  text-shadow: 0px 1px 1px black;
  font-weight: 600;
}
.main-text h1 span {
  color: #3586d7;
}
.book .card {
  border-radius: 10px;
  box-shadow: 0px 5px 5px -6px black;
}
.book .row {
  margin-top: 30px;
}
.book form input {
  padding: 10px;
  color: black;
  border: none;
  outline: none;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0px 5px 5px -6px black;
}
.book form textarea {
  border: none;
  border-radius: 10px;
  resize: none;
  box-shadow: 0px 5px 5px -6px black;
  height: 200px;
}
.book .submit {
  width: 160px;
  font-size: 16px;
  font-weight: 550;
  background: #3586d7;
  color: white;
  margin-top: 10px;
  transition: 0.5s;
}
.book .submit:hover {
  width: 170px;
}
@media (max-width: 765px) {
  .book {
    padding: 0;
  }
  .main-text h1 {
    padding: 20px;
  }
}
/* Section Book End */

/* Section Packages Start */
.main-txt h1 {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  text-shadow: 0px 1px 1px black;
}
.main-txt h1 span {
  color: #3586d7;
}
.packages .card {
  border-radius: 5px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.packages .card img {
  border-radius: 5px;
}
.packages .card .card-body {
  background: transparent;
}
.packages .card .card-body h3 {
  font-size: 25px;
  font-weight: 600;
}
.packages .card .card-body p {
  font-size: 15px;
}
.checked {
  color: #3586d7;
}
.star i {
  font-size: 15px;
}
.packages .card .card-body h6 {
  font-size: 20px;
}
.packages .card .card-body a {
  padding: 10px;
  text-decoration: none;
  background: #3586d7;
  color: white;
  border-radius: 5px;
}
/* Section Packages End */

/* Section Services Start */
.services {
  background: #f9f9f9;
  margin-top: 50px;
}
.services .card {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border: none;
  cursor: pointer;
}
.services .card i {
  font-size: 80px;
  text-align: center;
  color: #3586d7;
  margin-top: 20px;
}
.services .card .card-body h3 {
  font-weight: 600;
}
.services .card .card-body {
  text-align: center;
}
/* Section Services End */

/* Section Gallary Start */
.gallary {
  margin-top: 50px;
}
.gallary .card {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  cursor: pointer;
}
.gallary .card img {
  border-radius: 10px;
  transition: 0.5s;
}
.gallary .card img:hover {
  transform: scale(1.1);
}
/* Section Gallary End */

/* About Start */
.about {
  padding: 50px;
  margin-top: 50px;
  background: #f9f9f9;
}
.about .card {
  border-radius: 10px;
}
.about .card img {
  border-radius: 10px;
}
.about h2 {
  font-weight: 600;
  letter-spacing: 1px;
}
.about p {
  font-weight: 500;
}
#about-btn {
  width: 150px;
  height: 38px;
  border: none;
  border-radius: 5px;
  background: #3586d7;
  color: white;
  letter-spacing: 2px;
  font-weight: 550;
  transition: 0.5s ease;
  cursor: pointer;
}
#about-btn:hover {
  width: 170px;
}
@media (max-width: 765px) {
  .about {
    padding: 0;
  }
}
/* About End */


/* Footer Start */
#footer {
  width: 100%;
  margin-top: 150px;
  text-align: center;
  background: #f9f9f9;
}
#footer h1 {
  font-weight: 600;
  padding-top: 30px;
  text-shadow: 0px 0px 1px black;
}
#footer h1 span {
  color: #3586d7;
}
.social-links i {
  padding: 10px;
  border-radius: 5px;
  font-size: 20px;
  background: black;
  color: white;
  margin-left: 10px;
  margin-bottom: 10px;
  transition: 0.5s ease;
  cursor: pointer;
}
.social-links i:hover {
  background: #3586d7;
}
/* Footer End */
