@import url(global.css);
@import url(landing.css);

.signin,
.signup {
  background-image: url("/images/auth_cover.png");
  background-size: cover;
  background-position: center;
}

/* ========== HOME SECTION STYLING ========== */
.home-section {
  background: linear-gradient(135deg, #1e90ff, #6a11cb);
  color: #fff;
  overflow: hidden;
  padding: 5rem 0;
}

/* Judul utama */
.home-section .title {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.home-section .highlight {
  color: #ffeb3b;
}

/* Deskripsi */
.home-section .description {
  max-width: 500px;
  opacity: 0.9;
}

/* Tombol */
.learn-btn {
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}
.learn-btn:hover {
  background-color: #fdd835;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
}

/* Kartu ilustrasi */
.illustration-card {
  max-width: 420px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}
.illustration-card:hover {
  transform: scale(1.03);
}

/* Gambar ilustrasi */
.illustration-img {
  max-height: 320px;
  object-fit: contain;
}

/* Responsif tambahan */
@media (max-width: 768px) {
  .home-section {
    text-align: center;
  }
  .description {
    margin: 0 auto;
  }
  .illustration-card {
    max-width: 300px;
  }
}


.sidebar {
  width: 240px;
  min-height: 100vh;
  position: fixed;
  top: 70px;
  left: 0;
  background-color: #f8f9fa;
  border-right: 1px solid #dee2e6;
  padding-top: 1rem;
  transition: all 0.3s ease;
}
.sidebar.collapsed {
  margin-left: -240px;
}
.content {
  margin-left: 240px;
  padding: 5rem 2rem 2rem 2rem;
  flex-grow: 1;
  transition: all 0.3s ease;
}
.content.expanded {
  margin-left: 0;
}

.pdf-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 123, 255, 0.5); /* biru semi transparan */
  color: white;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pdf-nav-btn:hover {
  background: rgba(0, 123, 255, 0.8);
}
.left-btn {
  left: 10px;
}
.right-btn {
  right: 10px;
}
.note-editable ul {
  margin-left: 1.5rem !important;
  list-style-type: disc !important;
}

/* Untuk ordered list (angka) */
.note-editable ol {
  margin-left: 1.5rem !important;
  list-style-type: decimal !important;
}

#activityModal .modal-body ul {
  list-style-type: disc !important;
  margin-left: 1.4rem !important;
  padding-left: 0.6rem !important;
}

#activityModal .modal-body ol {
  list-style-type: decimal !important;
  margin-left: 1.4rem !important;
  padding-left: 0.6rem !important;
}

#activityModal .modal-body p {
  margin-bottom: 0.75rem !important;
  line-height: 1.6 !important;
}
