body {
  margin: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h2 {
  font-weight: bold;
  color: #000;
  text-shadow: 0 0 3px #fff; /* efek glow putih lembut */
}

h1 {
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: 700; /* Bold */
    }
    
h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600; /* Semibold */
    }
h4 {
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: 500; /* Semibold */
      letter-spacing: 10px;
    }
.container-custom {
  width: 1080px;
  height: 1350px;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* konten di atas, footer akan terdorong ke bawah */
  position: relative;
}

.footer-bar {
  margin-top: auto;
  text-align: center;
  font-size: medium;
}

.footer-bar h3 {
  margin-bottom: 10px;
  font-weight: bold;
}

.social-icons {
  display: flex;           /* satu baris */
  flex-direction: row;     /* horizontal */
  align-items: center;
  justify-content: center;
  gap: 20px;               /* jarak antar ikon */
  background: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  gap: 6px;                /* jarak antara ikon dan teks */
  font-size: small;         /* teks lebih kecil */
  color: #000;
  text-decoration: none;
}

.social-icons img {
  width: auto;
  height: 30px;
}



/* overlay transparan di atas gambar */
.container-custom::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /*background: rgba(54, 54, 54, 0.6);  abu-abu transparan */
  z-index: 0;
}

.container-custom > * {
  position: relative;
  z-index: 1; /* konten tetap di atas overlay */
}

h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin: 0 0 60px 0;
  line-height: 1.4;
  color: #000; /* pastikan teks terbaca di atas overlay */
}

.section {
  width: 90%;
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000; /* biar jelas */
}

.table-wrapper {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2); /* putih transparan */
  backdrop-filter: blur(12px);          /* efek blur kaca */
  -webkit-backdrop-filter: blur(12px);  /* untuk Safari */
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.3); /* garis kaca */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

thead th {
  background: rgba(0, 0, 0, 0.6); /* hitam transparan */
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 20px;
}

tbody td {
  border: 1px solid rgba(255,255,255,0.3);
  text-align: left;
  padding: 12px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.15); /* transparan */
}


#downloadBtn {
  margin-top: 20px;
  padding: 25px 60px;
  font-size: 36px;
  border-radius: 20px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-weight: bold;
}

.weekly-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* bikin 7 kolom sejajar */
  gap: 20px;
  justify-items: center; 
  margin: 10px 40px 50px 40px;
}

.day-item {
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.day-name {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  color: grey;
}

.day-num {
  font-size: 15px;
  font-weight: 600;
  color: grey;
}

.day-item.today .day-name,
.day-item.today .day-num {
  color: black;
}

.logo-footer {
    position: relative;
    width: 100%;
    height: 80px; /* tinggi area footer logo */
    margin-top: 20px;
    text-align: center;
}

.logo-footer img {
    height: 60px; /* ukuran logo */
}

.logo-footer .logo-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

.logo-footer .logo-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.logo-footer .logo-text {
    position: absolute;
    bottom: 15px; /* bisa disesuaikan biar sejajar */
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333; /* bisa ganti sesuai tema */
}


