/* HERO */

.hero-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 8, .5),
      rgba(8, 8, 8, .5));
  z-index: 1;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.15;
  max-width: 700px;
}

.hero-desc {
  font-size: 1.1rem;
  margin-top: 20px;
  max-width: 620px;
  color: #f7e8ee;
  line-height: 1.8;
}

.sek-bg-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.sek-bg-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QUICK INFO */

.quick-info-card {
  border-radius: 24px;
  transition: .3s ease;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  min-height: 220px;
}

.quick-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}

.quick-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.small-title {
  font-size: 1rem;
  color: #12343b;
  line-height: 1.4;
}

/* PARTNER */

.partner-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px 20px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
  transition: .3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.partner-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(10%);
  opacity: .8;
  transition: .3s;
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* EVENT */

.agenda-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 20px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.agenda-card:hover {
  transform: translateY(-5px);
}

.agenda-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff8a2a;
  transform: scaleY(0);
  transition: .3s;
}

.agenda-card:hover::before {
  transform: scaleY(1);
}

.agenda-date {
  min-width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(253, 128, 46, .12);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.agenda-date strong {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.agenda-date span {
  font-size: .8rem;
  font-weight: 600;
  margin-top: 4px;
}

.agenda-content {
  flex: 1;
}

.agenda-content h5 {
  margin-bottom: 12px;
  font-weight: 700;
}

.event-meta {
  color: #6c757d;
  font-size: .9rem;
}

.event-meta i {
  color: var(--primary);
}

.agenda-desc {
  margin-top: 12px;
  margin-bottom: 12px;
  color: #666;
}

.agenda-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--primary-color);
}

.agenda-link:hover {
  color: #ff8a2a;
}

.btn-event {
  color: white;
  font-weight: 600;
  background: var(--primary);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
}

.btn-event:hover {
  color: white;
  background: rgb(234, 111, 31);
}

/* BOOKLET */

.booklet-icon-home {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, rgba(15, 96, 107, .08), rgba(253, 128, 46, .12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}

/* MOBILE */

@media(max-width:768px) {

  .quick-info-card {
    border-radius: 18px;
    padding: 16px 10px !important;
    min-height: 160px;
  }

  .quick-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 12px !important;
  }

  .small-title {
    font-size: .82rem;
    line-height: 1.3;
  }

  .hero-video {
    text-align: center;
  }

  .hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
    max-width: 100%;
  }

  .hero-desc {
    font-size: .95rem;
    line-height: 1.7;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
  }

  .hero-video .badge-custom {
    font-size: .72rem;
    padding: 7px 14px;
  }

  .hero-video .btn {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 18px !important;
  }

  .hero-video .mt-4 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

}