:root{
    --green-color:#00712D;
    --light-green-color:#DEF9C4;
}

h1{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h3{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h4{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h5{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h6{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p{
    font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.btn-success{
    background-color: var(--green-color);
}

.text-primary {
    color: #025589 !important;
}

.text-success{
    color:var(--green-color);
}

.top-navbar {
    background-color: var(--green-color);
    color: white;
    padding: 5px 15px;
}
.nav-link {
    color: black !important;
}
.top-navbar span {
    margin-left: 15px;
}
@media (max-width: 768px) {
  .top-navbar {
    flex-direction: column !important;
    align-items: start !important;
    padding: 10px;
    gap: 5px;
  }

  .top-navbar span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
.card-beranda{
    /* padding-left: 50px; */
    /* padding-right: 50px; */
    background-color: #f8f9fa;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}



.title-post{
    background-color: var(--green-color);
    padding: 10px;
}

.album-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
}

.album-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background: #fff;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.album-item:hover {
  transform: scale(1.02);
}

.album-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.album-item:hover .album-overlay {
  opacity: 1;
}

.album-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.album-desc {
  font-size: 14px;
}

.filter-btn {
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--green-color);
  color: white;
}

.filter-btn.active {
  background-color: var(--green-color) !important;
  color: white !important;
}

/* Modal caption fix: move below image */
.modal-caption-outside {
  padding: 15px 20px;
  background: #fff;
  color: #000;
  text-align: left;
  border-top: 1px solid #eee;
}

  

  /* footer */
  .footer {
    background: linear-gradient(rgba(0, 113, 45, 0.6), rgba(0, 113, 45, 0.6)), url('../images/silat3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0;
}
.social-icons a {
    color: white;
    
    font-size: 24px;
}
.contact-info p {
    margin: 5px 0;
}
.map-container {
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
}
.footer-logo img {
    max-width: 200px;
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}