/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #ffffff;
}

/* =========================
   BANNER
   ========================= */
.banner {
  margin-top: 72px; /* tinggi header */
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.banner-slides {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.5s ease;
}

.slide {
  width: 50%;
  object-fit: cover;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #fff;
}

/* =========================
   DASHBOARD MENU
   ========================= */
.dashboard-menu {
  max-width: 1100px;
  margin: 50px auto 90px;
  padding: 0 40px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* MENU CARD */
.menu-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 24px;
  text-decoration: none;
  color: #333;

  display: flex;
  flex-direction: column; /* agar icon di atas text */
  align-items: center;
  gap: 16px;

  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center; /* untuk teks tengah */
}

/* ICON BULAT */
.menu-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #1ea77f;
  border-radius: 50%;
  margin-bottom: 10px;
}

.menu-card .icon svg {
  width: 34px;
  height: 34px;
  stroke: #ffffff;
  fill: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/* TITLE */
.menu-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1ea77f;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.menu-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-top: 0;
}

/* HOVER EFFECT */
.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.menu-card:hover .icon svg {
  transform: scale(1.15);
}

/* =========================
   EVENT DESCRIPTION
   ========================= */
.event-description {
  padding: 60px 40px;
  background: #f9fbfd;
}

.event-description .container {
  max-width: 1000px;
  margin: auto;
  font-family: 'Montserrat', sans-serif;
}

.event-description h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1b7f4b;
}

.event-description p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
  text-align: justify;
}

.event-description ul {
  margin: 10px 0 20px 20px;
}

.event-description ul li {
  margin-bottom: 8px;
}

.event-description .closing {
  font-weight: 600;
}

/* ===============================
   GALERI KEGIATAN
   =============================== */
.event-gallery {
  padding: 60px 40px;
  background: #ffffff;
}

.event-gallery .container {
  max-width: 1100px;
  margin: auto;
}

.event-gallery h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1b7f4b;
  text-align: center;
}

/* Grid galeri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* =========================
   NARAHUBUNG
   ========================= */
.event-contact {
  padding: 60px 40px;
  background: #f9fbfd;
}

.event-contact .container {
  max-width: 1000px;
  margin: auto;
}

.event-contact h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1b7f4b;
  text-align: center;
}

.contact-desc {
  text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* LIST */
.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.contact-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 24px;
  text-decoration: none;
  color: #333;

  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;

  border-left: 6px solid #1ea77f;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1ea77f;
}

.contact-card span {
  font-size: 14px;
  color: #666;
}

/* HOVER */
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
  background: #f0fff8;
}


/* RESPONSIVE */
@media (max-width: 768px) {
   .dashboard-menu {
    display: flex; /* horizontal scroll */
    overflow-x: auto;
    padding: 0 20px;
    gap: 20px;
  }

  .dashboard-menu::-webkit-scrollbar {
    height: 6px;
  }

  .dashboard-menu::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
  }

  .menu-card {
    flex: 0 0 220px; /* lebar tetap 220px */
  }
}

