/* ========================================
   TOKENS (non-warna — warna ada di theme.css)
   ======================================== */
:root {
  --radius: 15px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ========================================
   BASE
   ======================================== */
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 700;

}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  font-family: "Segoe UI";
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-family: "Segoe UI";
}

/* ========================================
   BUTTONS — pakai di <a> atau <button>
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0.75rem 2.2rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn-cyan {
  background-color: var(--color-primary-blue-light);
  color: var(--color-primary-blue-dark);
  border: none;
}

.btn-cyan-outline {
  background-color: transparent;
  color: var(--color-primary-blue-light);
  border: 1.5px solid var(--color-primary-blue-light);
}

.btn-red {
  background-color: var(--color-cta-red);
  color: var(--color-text-light);
  border: none;
}

.btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 1.125rem;
}

.center {
  left: 50%;
  transform: translateX(-50%);
}

/* section 2 */

.section-2 {
  background-image: url("../assets/images/Section 2-Background.jpg");
  background-size: cover;
  background-position: center;
  min-height: 400px;

  display: flex;
  align-items: center;
}

.section-2 h2 {
  font-size: 36px;
}

@media (max-width: 1024px) {

  .section-2 h2 {
    font-size: 30px;
  }

}


/* section 3 */


.section-3 h2 {
  font-size: 36px;
  font-family: "Segoe UI Semibold";
}

.section-3 h3 {
  font-size: 28px;
  font-family: "Segoe UI Semibold";
}

.section-3 p {
  font-size: 18px;
  font-family: "Segoe UI Semibold";
}

.section-3 .desc {
  font-size: 18px;
  font-family: "Segoe UI";
}

.section-3 .about-desc {
  font-family: "Segoe UI";
}

.summit-card {
  max-width: 760px;
  margin: 2rem auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.icon-badge {
  width: 93px;
  height: 93px;
  flex: 0 0 93px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-badge.tone-red {
  background: linear-gradient(135deg, #ba0001, #7a0000);
}

.icon-badge.tone-blue {
  background: linear-gradient(135deg, #16476A, #0f2f45);
}

.topics-row {
  padding-block: 1.25rem;
}

.topics-row p {
  font-size: 22px;
}

.topics-row:last-child {
  border-bottom: none;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  font-size: 20px;
  color: var(--color-text);
}

.tag-pill.is-active {
  background: var(--color-primary-red);
  color: var(--color-text-light);
  border-color: var(--color-primary-red);
}

.divider-vertical {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  width: 1px;
  background: var(--color-primary-red);
}

.about-neutra-box {
  background-color: #f2f2f2;
}

.barongan {
  width: 430px;
}

@media (max-width: 1024px) {
  .divider-vertical {
    display: none;
  }

  .section-3 h2 {
    font-size: 30px;
  }

  .topics-row p {
    font-size: 20px;
  }

}

/* section 4 */

.section-4 {
  background-image: url("../assets/images/Home-Page/Section-4-Choose-Your-Pass/Section 4-Background.png");
  background-size: cover;
  background-position: center;
  min-height: 500px;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.section-4 h2 {
  font-size: 47px;
}

.section-4 p {
  font-size: 20px;
}


.box-pass-container .box-pass:last-child {
  margin-left: 8rem;
}

.box-pass-container .box-pass {
  flex: 1;
}

.section-4 .box-pass .category {
  border: 1px solid white;
  padding: 0.5rem 1rem;
  position: relative;
}

.section-4 .box-pass span {
  flex: 1;
  text-align: center;
  font-size: 1.7rem;
}

.divider-category-pass {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.527);
  margin: 2px 0rem;
}

@media (max-width: 1024px) {
  .section-4 {
    flex-direction: column;
    text-align: center;
    margin: 0rem 0rem;
    padding: 4rem 0rem;
  }

  .section-4 .box-pass {
    width: 100%;
  }

  .section-4 h2 {
    font-size: 32px;
  }

  .section-4 .box-pass span {
    font-size: 1.2rem;
  }


  .box-pass-container .box-pass:last-child {
    margin-left: 0rem;
  }

}

/* section 5 */

.schedule-section {
  background-image: url("../assets/images/Home-Page/Section-5-Event-Schedule/Event-Schedule-Background.png");
  background-size: cover;
  background-position: center;
}

.schedule-section {
  padding: 4rem;
}


.schedule-section h2 {
  font-weight: 500;
}

.schedule-card {
  margin-inline: auto;
  overflow: hidden;
}

/* Tabs */
.day-tabs {
  display: flex;
  gap: 2rem;
}

.day-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text-light);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid white;
  font-family: var(--font-sans);
}

.day-tab .day-num {
  font-size: 2.7rem;
  line-height: 1;
}

.day-tab .day-month {
  font-weight: 400;
  font-size: 1.8rem;
}

@media (max-width: 768px) {

  .schedule-section {
    padding: 2rem 0rem;
  }


  .day-tabs {
    display: flex;
    gap: 1rem;
  }

  .day-tab {
    padding: 0.5rem 0.75rem;
  }

  .day-tab .day-num {
    font-size: 14px;
  }

  .day-tab .day-month {
    font-size: 12px;
  }
}

.day-tab .chevron {
  font-size: 0.7rem;
  opacity: 0.8;
}

.day-tab.is-active {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}

.day-tab.is-active .day-num {
  color: var(--color-primary-red);
}

.day-tab.is-active .day-month {
  color: var(--color-primary-blue);
}

.day-tab.is-active .chevron {
  color: var(--color-primary-blue);
  opacity: 1;
}

.day-banner {
  padding: 4px;
}

.day-panel {
  background-color: white;
}

/* Schedule rows */
.schedule-list {
  padding: 1.75rem;
  min-height: 500px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 1rem;
  padding-block: 2rem;
  border-bottom: 1px solid #BA0001;
  align-items: start;
}

.schedule-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.schedule-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-red);
}

.schedule-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* Speakers */
.speaker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.avatar-dummy {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: var(--color-secondary);
}

.speaker-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.speaker-role {
  font-size: 0.75rem;
  color: black
}

.speaker-label {
  font-size: 0.7rem;
  color: #909090;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  display: block;
}

@media (max-width: 640px) {
  .schedule-row {
    grid-template-columns: 80px 1fr;
  }

  .schedule-desc {
    grid-column: 1 / -1;
  }

  .day-banner {
    text-align: left;
    justify-content: flex-start;
  }
}

/* section 6 */

.section-6 {
  background-image: url("../assets/images/Home-Page/Section-6-About-Sponsors/About\ Sponsors-Background.png");
  background-size: cover;
  background-position: center;
  min-height: 400px;

  display: flex;
  align-items: center;
}

.section-6 h2 {
  font-size: 47px;
}

.section-6 p {
  font-size: 20px;
}

/* section 7 */

.sponsor {
  border-bottom: 1px solid var(--color-accent-red);
  padding: 3.5rem;
}

.sponsor h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.sponsor:last-child {
  border-bottom: none;
}


.sponsor-list {
  background-color: #FAFAFA;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.sponsor-icon {
  max-width: 100%;
  height: auto;
  max-height: 80px;
}

@media (max-width: 1024px) {

  .section-6 h2 {
    font-size: 32px;
  }


  .sponsor-list {
    padding: 5px;
  }

  .sponsor {
    padding: 2rem 0rem;
  }


}

@media (min-width: 768px) {


  .sponsor-grid--silver .sponsor-list:nth-child(9) {
    grid-column-start: 2;
  }

  .sponsor h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

/* section 9 */
.section-9 {
  background-color: #16476A;
  padding: 8rem 0;
}


.documentation-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: 330px;
}

.photo-wrapper {
  overflow: hidden;
  position: relative;
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-wrapper:hover img {
  transform: scale(1.05);
}

/* Ukuran span */
.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

/* FORM */

.form-wrap {
  max-width: 900px;
  margin-inline: auto;
  padding-block: 3rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
}

.form-wrap h2 {
  font-size: 36px;
  font-family: "Segoe UI Semibold";
  color: #595959;
}

.form-wrap .font-bold {
  font-size: 36px;
  font-family: "Segoe UI Bold";
  color: #595959;
}

.form-wrap h3 {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0;
}

.section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Text input box */
.field {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  font-size: 20px;
  line-height: 1;
  background: var(--color-bg);
  font-family: "Poppins";
}

.field::placeholder {
  color: var(--color-text);
  opacity: 0.65;
}

/* Radio / checkbox option row */
.option-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  font-size: 20px;
  line-height: 1.2;
  font-family: "Poppins";
  cursor: pointer;
}

.option-box input[type="radio"],
.option-box input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  accent-color: var(--color-primary-blue);
}

.form-options-narrow {
  max-width: 48%;
}

@media (max-width: 768px) {

  .documentation-grid {
    grid-auto-rows: 150px;
  }


  .form-options-narrow {
    max-width: 100%;
  }

  .section-9 {
    padding: 6rem 0;
  }
}

.form-wrap .referral-card h2 {
  color: var(--color-primary-blue);
  font-size: 28px;
  margin-bottom: 0.5rem;
}

.referral-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.price-card.referral-card {
  background-color: #BA0001;
}

.price-card.referral-card h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-card.referral-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-blue-light);
  line-height: 1;
}

.price-card.referral-card .price-sub {
  font-size: 1rem;
  color: var(--color-primary-blue-light);
  margin-bottom: 0.75rem;
}

.price-card.referral-card p.desc {
  font-size: 0.8rem;
  color: white;
  margin-bottom: 0;
}

.referral-card {
  border: 1px solid var(--color-border);
  padding: 1.5rem 3.5rem;
}

.price-card {
  border: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
}

.price-card {
  cursor: pointer;
}

.price-card h4 {
  color: var(--color-primary-blue);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.price-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: #909090;
  line-height: 1;
}

.price-card .price-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.price-card p.desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.radio-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-dark);
  border-radius: 9999px;
  flex: 0 0 18px;
  accent-color: var(--color-primary-blue-light);
}

.logistics-note {
  font-size: 18px;
  margin-bottom: 0.25rem;
  font-family: "Segoe UI Light";
}

.logistics-note strong {
  font-family: "Segoe UI Semibold";
}

.logistics .option-box {
  font-family: "Segoe UI Light";
}

.summary-wrap {
  max-width: 640px;
  margin-inline: auto;
  padding-block: 3rem;
}

.summary-wrap h2 {
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #909090;
  padding-bottom: 3rem;
}

.summary-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 0.6rem;
}

.summary-label {
  flex: 0 0 340px;
  font-weight: 700;
  font-size: 24px;
  font-family: "Segoe UI Semibold";
}

.summary-value {
  font-size: 24px;
}

.summary-divider {
  border-top: 1px solid #909090;
  margin-block: 1.25rem;
}

.agree-box {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  width: 500px;
  line-height: 1.2;
}

.agree-box input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 0.15rem;
  accent-color: var(--color-primary-blue);
}

@media (max-width: 1024px) {

  .summary-label {
    font-size: 14px;
    flex: 0 0 50%;
  }

  .summary-value {
    font-size: 14px;
  }

  .agree-box {
    width: 100%;
  }

}



/* thank you */

.thankyou-content-overlay {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.thankyou-content-overlay .hide-m {
  flex: 1;
}

.thankyou-content-overlay>.flex-1:last-child {
  flex: 1;
}

.thankyou-card {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  padding-left: 8rem;
}

.thankyou-card h1 {
  font-weight: 500;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.thankyou-card p {
  margin-bottom: 2rem;
  color: var(--color-text-light);
}

.thankyou-content-mobile {
  display: none;
}

.thankyou-card--mobile h1,
.thankyou-card--mobile p {
  color: var(--color-text);
}

.thankyou-card--mobile h1 {
  font-size: clamp(2rem, 8vw, 3rem);
}

/* sponsor registration */

.sponsor-form-overlay {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.sponsor-form-overlay .hide-m {
  flex: 1;
}

.sponsor-form-overlay>.flex-1:last-child {
  flex: 1;
}

.sponsor-card {
  width: 100%;
  max-width: 660px;
  padding: 2rem;
}

.sponsor-card h2 {
  font-family: "Segoe UI Semibold";
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.sponsor-card .field {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  font-size: 20px;
  font-family: "Segoe UI Light";
  color: black;
}

.sponsor-card .field::placeholder {
  color: black;
}

.sponsor-form-mobile {
  display: none;
}

.sponsor-card--mobile h2 {
  color: var(--color-text);
}

@media (max-width: 1024px) {

  .sponsor-form-overlay--desktop,
  .thankyou-content-overlay--desktop {
    display: none;
  }

  .sponsor-form-mobile,
  .thankyou-content-mobile {
    display: block;
    padding-block: 2rem;
  }

  .sponsor-card--mobile,
  .thankyou-card--mobile {
    padding: 0;
    max-width: none;
  }

  .sponsor-card--mobile .field {
    border: 1px solid #000;
  }
}