/* ===== MAIN CSS FILE ===== */
/* Import semua file CSS dalam urutan yang benar */

/* 1. Variables & Base */
@import url('./base.css');

/* 2. Layout Components */
@import url('./header.css');
@import url('./hero.css');
@import url('./about.css');
@import url('./keunggulan.css');
@import url('./hasil.css');
@import url('./teori.css');
@import url('./content.css');
@import url('./upcoming.css');
@import url('./footer.css');
@import url('./icon.css');
@import url('./galerievent.css');
@import url('./gallery_kota.css');
@import url('./mirakas.css');
@import url('./profile.css');
@import url('./pricing.css');
@import url('./testimonial.css');


/* 3. Responsive (terakhir untuk override) */
@import url('./responsive.css');

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #6a5af9;
    --dark-grey: #333;
    --medium-grey: #555;
    --light-grey: #f4f4f4;
    --text-color: #2c3e50;
    --white-color: #ffffff;
    
    /* Animation variables */
    --ease-in-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.3s;
    --transition-normal: 0.5s;
    --transition-slow: 1s;
}

body {
  background: linear-gradient(120deg, #ddeefa 0%, #f8f7ff 100%);
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.upcoming-event-section {
  padding: 64px 0 36px 0;
  background: linear-gradient(120deg, #eaeefc 0%, #f8faff 100%);
}

.event-title {
  text-align: center;
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: #444eaf;
  margin-bottom: 44px;
  text-shadow: 0 4px 32px #e1e7ff22;
}

.version-content {
  display: flex;
  gap: 36px;
  max-width: 1020px;
  margin: 50px auto 0 auto;
  align-items: flex-start;
}

.event-side-list {
  width: 225px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-side-card {
  background: #2c2e53;
  box-shadow: 0 2px 10px rgba(80,80,120,0.15);
  color: #ffeeee;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;
  transition: transform .13s;
}
.event-side-card:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 22px #bbaaffe3;
}
.event-side-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 0 0 13px 13px;
  margin-bottom: 0;
}
.event-side-card span {
  display: block;
  text-align: center;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 7px 14px 7px;
  letter-spacing: .02em;
}

.event-main-card {
  flex: 1;
  max-width: 460px;
  background: linear-gradient(135deg,#5c5cbb 80%,#988fca 120%);
  color: white;
  padding: 35px 40px 34px 40px;
  border-radius: 34px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 68px rgba(100,140,255,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.event-main-card img {
  width: 100%;
  max-width: 290px;
  max-height: 260px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 35px;
  box-shadow: 0 4px 28px #201e3b55;
}
.event-main-card h2 {
  font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
  font-size: 2.2rem;
  margin: 0 0 .7rem 0;
  font-weight: 600;
  text-shadow: 0 2px 21px #5c6bf922;
}
.event-main-card p {
  margin: 0;
  padding: 0;
  color: #f1f1ff;
  font-size: 1.12em;
  font-weight: 400;
  text-align: center;
  opacity: 0.88;
}
.event-main-card:before {
  content: "";
  position: absolute;
  left: 10%;
  top: -40px;
  width: 80%;
  height: 24px;
  background: radial-gradient(circle, #f9d1fe33 0%, transparent 75%);
  filter: blur(7px);
  z-index: 0;
  pointer-events: none;
}