/* ============================================================
   DAURAH TAHFIDZ YUMNA — style.css
   Mobile-first, responsive, semantic CSS
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #cca952;
  --gold-light:  #d1b760;
  --gold-dark:   #a66e24;
  --navy:        #0d1b2e;
  --navy-mid:    #11253d;
  --navy-card:   #162d4a;
  --bg:          #1e293b; /* slate-800 */
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,0.70);
  --text-soft:   rgba(255,255,255,0.90);
  --green:       #22c55e;
  --green-hover: #16a34a;
  --blue-link:   #60a5fa;
  --radius-sm:   0.5rem;
  --radius-md:   0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  padding-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-link);
  text-decoration: underline;
  word-break: break-all;
}

ul {
  list-style: none;
}

/* ---------- Layout ---------- */
main {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Section wrapper (shared) ---------- */
.section {
  max-width: 672px; /* ~max-w-2xl */
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--wide {
  max-width: 896px; /* ~max-w-4xl */
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Section image ---------- */
.section-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.section-img--my {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ---------- Section heading ---------- */
.section-emoji {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  max-width: 672px;
  margin: 2.5rem auto 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__img-wrap {
  width: 100%;
  max-width: 672px;
  margin-bottom: 1.5rem;
  padding: 5px;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold-light));
  border-radius: var(--radius-lg);
}

.hero__img {
  width: 100%;
  border-radius: var(--radius-md);
}

.hero__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero__desc {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero__location {
  font-size: 0.875rem;
  font-weight: 300;
  text-align: center;
  font-style: italic;
}

/* ---------- List items (icon + text) ---------- */
.list {
  width: 100%;
  max-width: 672px;
  margin: 1rem auto 0 auto;
}

.list + .list {
  margin-top: 0;
}

.list__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.list__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list__item-head {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.list__icon {
  flex: none;
  width: 1.5rem;
  text-align: center;
}

.list__label {
  font-weight: 600;
}

.list__body {
  margin-left: 2rem;
  margin-top: 0.25rem;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: justify;
}

/* ---------- Timeline text ---------- */
.timeline-text {
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---------- Kuota info ---------- */
.kuota-update {
  margin-left: 2rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ---------- WA Button ---------- */
.btn-wa {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  background-color: var(--green);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.2s;
}

.btn-wa:hover {
  background-color: var(--green-hover);
}

.btn-wa-wrap {
  margin-left: 2rem;
  margin-top: 0.75rem;
}

.btn-wa-number {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ---------- Schedule ---------- */
.schedule-list {
  width: 100%;
  max-width: 672px;
  margin: 1.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-item {
  display: flex;
  gap: 0.5rem;
}

.schedule-icon {
  flex: none;
  width: 2.5rem;
}

.schedule-notes {
  width: 100%;
  max-width: 672px;
  margin: 1rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: justify;
}

/* ---------- Video thumbnail ---------- */
.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.video-thumb--mt {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.video-thumb--mt2 {
  margin-top: 1rem;
}

.video-play-btn {
  width: 4rem;
  height: 4rem;
  background-color: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  pointer-events: none;
}

/* ---------- FAQ Cards ---------- */
.faq-list {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background-color: var(--navy-card);
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  text-align: left;
}

.faq-card__q {
  font-weight: 700;
}

.faq-card__a {
  margin-left: 1rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--gold);
  margin-top: 0.25rem;
  line-height: 1.7;
}

/* ---------- Profile banner section ---------- */
.profile-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.profile-badge {
  background-color: var(--gold);
  padding: 0.25rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-top: -5rem;
  text-align: center;
}

.profile-badge__title {
  font-size: 1.5rem;
  color: var(--navy-mid);
  font-weight: 700;
}

.profile-badge__sub {
  font-size: 1.125rem;
  color: var(--navy-mid);
  font-weight: 500;
}

.profile-body {
  width: 100%;
  background-color: var(--navy);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  text-align: justify;
  line-height: 1.8;
}

.profile-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ---------- Blink dot ---------- */
@keyframes blink {
  0%, 100% { visibility: visible; }
  50%       { visibility: hidden;  }
}

.blink-dot {
  animation: blink 0.6s step-start infinite;
}

/* ---------- Responsive: tablet & up ---------- */
@media (min-width: 640px) {
  .hero__title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .profile-body {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}