/* frontend/home/index-v1.blade.php — dipindah dari inline <style> (UI v2) */
/* ============================================================
   HOMEPAGE UI V2 — Fresh modern homepage
   ============================================================ */
/* token warna ada di ui-v2/base.css */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  background: var(--hp-bg);
}

/* ============ MAIN BANNER SLIDER ============ */
.events-section.bg-lighter { background: var(--hp-bg) !important; }
.events-section.bg-lighter .event-details-images.mb-50 {
  margin-bottom: 32px !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
}
.events-section.bg-lighter .event-details-images.mb-50 .slick-list,
.events-section.bg-lighter .event-details-images.mb-50 .slick-track {
  height: auto !important;
}
.events-section.bg-lighter .event-details-images.mb-50 img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
}
.events-section.bg-lighter .event-details-images.mb-50 .slick-prev,
.events-section.bg-lighter .event-details-images.mb-50 .slick-next {
  z-index: 10;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  color: var(--hp-ink);
}
.events-section.bg-lighter .event-details-images.mb-50 .slick-prev:before,
.events-section.bg-lighter .event-details-images.mb-50 .slick-next:before {
  color: var(--hp-ink);
  font-size: 18px;
}

/* ============ SECTION TITLE ============ */
.events-section .section-title {
  margin-bottom: 22px;
  align-items: center;
}
.events-section .section-title .head {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hp-ink);
  margin: 0;
}
.events-section .section-title .btn-go a {
  color: var(--hp-brand) !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.events-section .section-title .btn-go a:hover { text-decoration: underline; }
.events-section .section-title .btn-go i {
  color: var(--hp-brand);
  font-size: 12px;
}

/* ============ EVENT CARD GRID ============ */
.whiskey-cards.alignfull {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.whiskey-cards.alignfull .whiskey-card {
  width: 100%;
  margin: 0;
}

/* Event card base style */
.event-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--hp-shadow-md);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.event-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(13, 27, 46, .12);
}
.event-item .event-image {
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  aspect-ratio: 16 / 9;
  background: #e5edf7;
}
.event-item .event-image a { display: block; height: 100%; }
.event-item .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.event-item:hover .event-image img { transform: scale(1.05); }

.event-item .event-content {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.event-item .organizer {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--hp-muted);
  text-decoration: none;
  margin-bottom: 2px;
}
.event-item .organizer:hover { color: var(--hp-brand); }

.event-item h6 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--hp-ink);
}
.event-item h6 a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-item h6 a:hover { color: var(--hp-brand); }

.event-item .location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--hp-ink-soft);
  font-weight: 500;
}
.event-item .location::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--hp-brand);
  flex-shrink: 0;
}
.event-item .price-remain {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--hp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-item .price {
  color: var(--hp-brand);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.event-item .price del {
  color: var(--hp-muted);
  font-weight: 500;
  font-size: 12px;
  margin-left: 6px;
}

/* ============ SECTION VIRAL (dark) ============ */
.events-section.bg-toplist {
  background: linear-gradient(135deg, #0d1b2e 0%, #1e3a6e 100%) !important;
  border-radius: 20px;
  margin: 32px 0;
  padding: 32px 0 !important;
}
.events-section.bg-toplist .badge-topevent {
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.events-section.bg-toplist .head {
  color: #fff !important;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.events-section.bg-toplist .bg-toplist1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.events-section.bg-toplist .event-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.events-section.bg-toplist .marquee-content { width: auto !important; margin: 0 !important; }

/* ============ HOW WORK SECTION ============ */
.work-process-inner {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px !important;
  box-shadow: var(--hp-shadow-md);
  margin: 32px 0;
}
.work-process-inner .section-title h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hp-ink);
  margin-bottom: 8px;
}
.work-process-inner .section-title p {
  font-size: 14px;
  color: var(--hp-ink-soft);
  margin: 0;
}
.work-process-item {
  text-align: center;
  padding: 20px 16px;
}
.work-process-item .icon {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--hp-brand-soft);
  color: var(--hp-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: .25s;
}
.work-process-item:hover .icon {
  background: var(--hp-brand);
  color: #fff;
  transform: translateY(-4px);
}
.work-process-item .icon .number {
  position: absolute;
  top: -6px; right: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #f59e0b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.work-process-item .content h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--hp-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.work-process-item .content p {
  font-size: 13px;
  color: var(--hp-ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============ BOTTOM BANNER ============ */
.client-logo-area {
  background: transparent !important;
  padding: 20px 0 40px !important;
}
.client-logo-area .event-details-images.mb-30 {
  margin: 0 !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--hp-shadow-lg);
}
.client-logo-area .event-details-images.mb-30 a { display: block; line-height: 0; }
.client-logo-area .event-details-images.mb-30 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* style footer ada di ui-v2/base.css (dipakai semua halaman) */

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .whiskey-cards.alignfull { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .events-section.bg-toplist .bg-toplist1 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-process-inner { padding: 30px 20px !important; }
}
@media (max-width: 575.98px) {
  .whiskey-cards.alignfull,
  .events-section.bg-toplist .bg-toplist1 { grid-template-columns: 1fr; }
  .events-section .section-title .head { font-size: 18px; }
  .events-section.bg-toplist .head { font-size: 18px; }
  .work-process-inner .section-title h2 { font-size: 20px; }
}
