@font-face {
  font-family: "Gordita";
  src:
    url("../fonts/Gordita-Font/Gordita-Regular.woff2") format("woff2"),
    url("../fonts/Gordita-Font/Gordita-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gordita";
  src:
    url("../fonts/Gordita-Font/Gordita-Medium.woff2") format("woff2"),
    url("../fonts/Gordita-Font/Gordita-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gordita";
  src:
    url("../fonts/Gordita-Font/Gordita-Bold.woff2") format("woff2"),
    url("../fonts/Gordita-Font/Gordita-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Gordita";
  src:
    url("../fonts/Gordita-Font/Gordita-Black.woff2") format("woff2"),
    url("../fonts/Gordita-Font/Gordita-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Gordita", "Segoe UI", Arial, sans-serif;
}

/* ─── NAVBAR ─── */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

/* Hamburger toggle (hidden by default on desktop) */
.nav-toggle {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 11;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav-links a:hover {
  color: #c77dff;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #140022;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #140022 0%,
    rgba(20, 0, 34, 0.73) 50%,
    #140022 100%
  );
  z-index: 1;
}

/* ─── HERO CONTENT ─── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 120px 24px 60px;
  max-width: 1000px;
  width: 100%;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero-brand {
  width: 100%;
  max-width: 780px;
}

.brand-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ─── COUNTDOWN ─── */
.countdown-wrapper {
  margin-top: 12px;
}

.countdown {
  display: inline-block;
  background: #9b00ff;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 28px;
  border-radius: 2px;
}

.countdown span {
  display: inline-block;
  min-width: 2ch;
  text-align: center;
}

/* ─── DATE BOX ─── */
.date-box {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  padding: 18px 48px;
  border-radius: 2px;
  min-width: 420px;
}

.date-main {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.date-venue {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

/* ─── BUTTONS ─── */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #140022;
}

/* ─── INFO SECTION ─── */
.info-section {
  background-color: #1e1545;
  background-image: url("../Img/home/grandient_bg_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 2rem;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 40px 48px;
}

.info-card {
  background: #1a0030;
  border: none;
  border-right: 0px solid rgba(155, 0, 255, 0.25);
  border-radius: 0;
  padding: 32px 36px;
  color: #ffffff;
}

.info-card:last-child {
  border-right: none;
}

.info-card--student {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-right: 40px;
  border-right: none !important;
}
.info-card--student .info-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card--startup {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card--includes {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.info-card__arrow {
  font-size: 28px;
  color: #9b00ff;
  line-height: 1;
}

.info-card__sub {
  font-size: 13px;
  color: #a87fd4;
}

.info-card__label {
  font-size: 14px;
  font-weight: 400;
  color: #a87fd4;
  margin-bottom: 8px;
}

.info-card__big {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.info-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-card__list li {
  font-size: 13px;
  color: #d0b8f0;
}

/* ─── TICKER BAR ─── */
.ticker-bar {
  background: #7b00e0;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: ticker-scroll 18s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.ticker-btn {
  background: #ffffff;
  color: #140022;
  border: none;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
}

.ticker-arrow {
  color: #ffffff;
  font-size: 16px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── SCHEDULE ─── */
.schedule-section {
  background: #130f2d;
  padding: 48px;
  display: flex;
  justify-content: center;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  grid-template-rows: 56px 200px 200px 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  max-width: 70%;
}

.sch-cell {
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: #1e1545;
}

.sch-header {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: white;
}

.sch-dim {
  color: white;
}

.sch-time {
  grid-column: 1;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: white;
}

.sch-time:nth-of-type(1) {
  grid-row: 2;
}
.sch-time:nth-of-type(2) {
  grid-row: 3;
}
.sch-time:nth-of-type(3) {
  grid-row: 4;
}

.sch-event {
  margin: 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.sch-event span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.sch-event--purple {
  background: #9b00ff;
}
.sch-event--cyan {
  background: #00c9c9;
}

/* ─── SPEAKERS ─── */
.speakers-section {
  background: #1e1545;
  padding: 60px 48px 72px;
  text-align: center;
}

.speakers-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.speaker-card {
  text-align: left;
}

.speaker-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 2px;
  margin-bottom: 14px;
}

.speaker-card--active .speaker-img-wrap {
  border-color: #00c9c9;
}

.speaker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  display: block;
}

.speaker-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.speaker-role {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 2px;
}

.speaker-company {
  color: #7b5ea7;
  font-size: 12px;
  font-weight: 500;
}

/* ─── SPONSORS ─── */
.sponsors-section {
  background: #8b00ff;
  padding: 32px 80px;
  text-align: center;
}

.sponsors-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}

.sponsors-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.sponsors-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ─── TICKETS ─── */
.tickets-section {
  background: #0d0022;
  padding: 60px 80px 72px;
  text-align: center;
}

.tickets-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}

.tickets-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tickets-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.tickets-table thead th {
  padding: 0 16px 20px;
  text-align: center;
  vertical-align: bottom;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tickets-table thead th:last-child {
  border-right: none;
}

.tt-feature-col {
  width: 220px;
}

.tt-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tt-price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffcc84;
}

.tt-old {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 400;
  margin-right: 4px;
}

.tt-deadline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.tt-btn {
  background: #ffffff;
  color: #140022;
  border: none;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
}

.tickets-table tbody tr {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tickets-table tbody td {
  padding: 14px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tickets-table tbody td:last-child {
  border-right: none;
}

.tickets-table tbody td:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.tickets-table tbody td:not(:first-child) {
  color: #00e5a0;
  font-size: 16px;
  font-weight: 700;
}

/* ─── PARTNERS ─── */
.partners-section {
  background: #8b00ff;
  padding: 28px 80px 36px;
  text-align: center;
}

.partners-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.partners-logos img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  overflow: hidden;
  background: #0d0018;
  min-height: 280px;
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.footer-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 52px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.footer-icon {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.footer-right {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
}

.footer-right strong {
  font-weight: 700;
}

.footer-gap {
  margin-top: 14px;
}

.footer-link {
  color: #ffffff;
  text-decoration: underline;
}

.footer-link:hover {
  color: #c77dff;
}

/* ─── RESPONSIVE (SMALL DESKTOP / TABLET) ─── */
@media (max-width: 1100px) {
  .info-cards {
    flex-wrap: wrap;
    gap: 12px;
    padding: 32px 24px;
  }

  .info-card--student,
  .info-card--startup,
  .info-card--includes {
    flex: 1 1 280px;
    margin-right: 0;
  }
}

/* ─── RESPONSIVE (TABLET) ─── */
@media (max-width: 900px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .schedule-section {
    padding: 32px 16px;
    display: flex;
    justify-content: center;
  }

  .schedule-grid {
    grid-template-columns: 120px 1fr 1fr 1fr;
    grid-template-rows: 48px 160px 160px 160px;
    max-width: 90%;
  }

  .sch-event span {
    font-size: 14px;
  }

  .footer-content {
    padding: 40px 32px;
    gap: 24px;
  }

  .sponsors-section,
  .partners-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .info-cards {
    padding: 32px 24px;
  }

  .ticker-item {
    font-size: 13px;
  }

  .tickets-section {
    padding: 48px 24px;
  }
}

/* ─── RESPONSIVE (MOBILE) ─── */
@media (max-width: 640px) {
  /* NAVBAR */
  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle:checked ~ .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links a {
    font-size: 14px;
  }

  /* HERO */
  .hero-content {
    padding: 100px 16px 40px;
    gap: 12px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .countdown {
    font-size: 16px;
    padding: 8px 18px;
  }

  .date-box {
    min-width: unset;
    padding: 14px 20px;
  }

  .date-main {
    font-size: 18px;
  }

  .date-venue {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* INFO CARDS */
  .info-cards {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 16px;
    gap: 10px;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-card--student,
  .info-card--startup,
  .info-card--includes {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .info-card__title {
    font-size: 13px;
  }

  .info-card__arrow {
    font-size: 20px;
  }

  .info-card__sub {
    font-size: 11px;
  }

  .info-card__big {
    font-size: 15px;
  }

  .info-card__list li {
    font-size: 11px;
  }

  /* SCHEDULE */
  .schedule-section {
    padding: 24px 12px;
    overflow-x: auto;
  }

  .schedule-grid {
    grid-template-columns: 80px 1fr 1fr 1fr;
    grid-template-rows: 40px 100px 100px 100px;
    min-width: 480px;
  }

  .sch-cell {
    font-size: 10px;
  }

  .sch-event span {
    font-size: 12px;
  }

  .sch-event {
    padding: 8px;
    margin: 4px;
  }

  /* SPEAKERS */
  .speakers-section {
    padding: 40px 16px 48px;
  }

  .speakers-title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .speaker-name {
    font-size: 14px;
  }
  .speaker-role {
    font-size: 12px;
  }
  .speaker-company {
    font-size: 11px;
  }

  /* SPONSORS */
  .sponsors-section {
    padding: 24px 20px;
  }

  .sponsors-logos {
    gap: 30px;
  }

  .sponsors-logos img {
    height: 60px;
    max-width: 150px;
  }

  /* TICKETS */
  .tickets-section {
    padding: 40px 12px 48px;
  }

  .tickets-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .tickets-table {
    font-size: 11px;
  }

  .tickets-table thead th {
    padding: 0 8px 16px;
  }

  .tt-feature-col {
    width: 130px;
  }
  .tt-name {
    font-size: 12px;
  }
  .tt-price {
    font-size: 14px;
    color: #ffcc84;
  }

  .tt-btn {
    padding: 5px 10px;
    font-size: 10px;
  }

  .tickets-table tbody td {
    padding: 10px 8px;
    font-size: 10px;
  }

  .tickets-table tbody td:first-child {
    font-size: 11px;
  }

  .tickets-table tbody td:not(:first-child) {
    font-size: 14px;
  }

  /* PARTNERS */
  .partners-section {
    padding: 24px 20px 28px;
  }

  .partners-logos {
    gap: 20px;
  }

  .partners-logos img {
    height: 36px;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 20px;
    gap: 28px;
  }

  .footer-logo {
    margin: 0 auto 14px;
  }

  .footer-icon {
    height: 120px;
  }

  .footer-right {
    font-size: 13px;
  }
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.whatsapp-float .popover-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .popover-text {
  visibility: visible;
  opacity: 1;
}
