/* Navbar tetap di atas */
.custom-navbar {
  background: linear-gradient(to right, #008211, #008211);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* Logo di Navbar */
.navbar-logo {
  height: 80px; /* Sesuaikan ukuran logo */
  width: auto;
  border-radius: 5px; /* Jika ingin sudut membulat */
}


/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  background: url("img/hero.jpg") no-repeat center center/cover;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Bagian Sejarah Desa */
.sejarah-desa {
  background-color: #f8f9fa; /* Warna background abu-abu terang */
  padding: 60px 0;
}


.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #dc3545; /* Warna merah Bootstrap */
}

.section-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.sejarah-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Sambutan Kepala Dukuh */
.sambutan-kepala-dukuh {
  padding: 100px 0;
  background: #f8f9fa;
}

.sambutan-title {
  font-size: 28px;
  font-weight: bold;
  color: #008211;
}

.sambutan-nama {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.sambutan-jabatan {
  font-size: 16px;
  color: #555;
  font-style: italic;
}

.sambutan-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.sambutan-link {
  font-size: 16px;
  color: red;
  font-weight: bold;
  text-decoration: none;
}

.sambutan-link:hover {
  text-decoration: underline;
}

/* Gaya Gambar */
.logo-desa {
  max-width: 250px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Struktur Perangkat Desa */
.struktur-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.card {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* Galeri */
.galeri-section {
  padding: 50px 0;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #006400;
  margin-bottom: 20px;
}

.galeri-img {
  width: 100%;
  height: 200px; /* Sesuaikan tinggi gambar */
  object-fit: cover;
  border-radius: 8px;
}

.btn-success {
  background-color: #007E33;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

/* Footer */
.footer {
  background: #006400; /* Warna hijau sesuai permintaan */
  color: white;
  padding: 40px 0;
  width: 100%;
  text-align: center;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: yellow;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  margin: 5px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: white;
}

.footer-section ul li a:hover {
  color: yellow;
}

/* Media Sosial */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: yellow;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid white;
}