/* =========================
   ETHEREAL → VERTICAL EVENT PAGE
   ========================= */

/* RESET */
html,body { margin:0; padding:0; }
* { box-sizing: border-box; }

/* TYPO & NGJYRAT */
body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fafafa;
  color: #2b2b2b;
  line-height: 1.6;
}

/* LAYOUT KRYESOR */
#wrapper {
  display: block !important;
  width: 100% !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  overflow-x: hidden !important;
}
#wrapper > .panel {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  width: 100% !important;
  transform: none !important;
  margin: 0 0 72px 0;
}

/* SEKSIONET */
.panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 48px 28px;
}
.section-block > h2.major { margin-bottom: 24px; }

.hero {
  background: linear-gradient(135deg, #6a1b9a, #e91e63);
  color: #fff;
  overflow: hidden;
}
.hero .content { text-align: center; margin-bottom: 20px; }
.hero h1.major {
  color:#fff; /* titulli kryesor i bardhë */
  font-weight:700;
  font-size: clamp(28px, 4vw, 40px);
  margin:0 0 8px;
}
.hero p { color:#ffe6f1; margin:0; }
.hero .image img {
  border-radius: 12px;
  width:100%;
  height:auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.about h2.major,
.section-block h2.major,
.contact-block h2.major {
  color: #7B1FA2;
  text-align: center;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
}

/* IMAZHE */
.fit-contain { width:100%; height:auto; object-fit: contain; }
.fit-cover   { width:100%; height:auto; object-fit: cover; }

/* =========================
   SLIDER GJENERIK
   ========================= */
.slider {
  --spv: 3;
  --gap: 16px;
  position: relative;
  overflow: hidden;
  padding: 8px 40px;
  margin-top: 16px;
  background: #fff;
  border-radius: 12px;
}

.slider .track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.slider .slide {
  flex: 0 0 calc((100% - (var(--gap) * (var(--spv) - 1))) / var(--spv));
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Default (Speakers, Sponsors, Testimonials) = portrete */
.slider .slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform .25s ease;
}
.slider .slide img:hover { transform: scale(1.03); }

/* Variacione për seksione */
.sponsors-slider { --spv: 4; }
.tickets-slider  { --spv: 2; }

/* Tickets = karta horizontale */
.tickets-slider .slide img {
  aspect-ratio: 16 / 9;   /* panoramike */
  object-fit: contain;    /* shfaqet e gjitha pa prerje */
  background: #fff;
  padding: 10px;
  border: 1px solid #eee;
}

/* BUTONAT SLIDER */
.slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(123,31,162,0.8);
  color: #fff;
  font-size: 20px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  transition: background .2s ease, transform .2s ease;
}
.slider .nav:hover { background:#7B1FA2; transform: translateY(-50%) scale(1.06); }
.slider .prev { left: 8px; }
.slider .next { right: 8px; }

/* =========================
   CONTACT FORM
   ========================= */
.contact-block {
  background: #f9f5fb;
}
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 8px; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label { font-weight: 600; color: #7B1FA2; }
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7B1FA2;
  box-shadow: 0 0 0 3px rgba(123,31,162,0.15);
}
.contact-form .button.primary {
  grid-column: 1 / -1;
  justify-self: center;
  background: linear-gradient(135deg, #6a1b9a, #e91e63);
  border: none;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s ease;
}
.contact-form .button.primary:hover { opacity:.9; }
.contact-block .contact-info {
  margin-top: 12px;
  text-align: center;
  color: #5a2b70;
}

/* FOOTER */
.copyright { text-align:center; color:#888; margin: 32px 0 16px; }

/* =========================
   RESPONSIVE
   ========================= */

/* Desktop: zvogëlo Hero & About fotot */
@media (min-width: 1024px) {
  .hero .image img,
  .about .image img {
    max-width: 70%;
    margin: 0 auto;
    display: block;
  }
  .hero, .about { padding: 40px 20px; }
}

/* Tablet */
@media (max-width: 1180px) {
  #wrapper { padding: 20px 12px; }
  .slider { --spv: 2; }
  .sponsors-slider { --spv: 3; }
}

/* Mobile */
@media (max-width: 820px) {
  .panel { padding: 36px 20px; }
  .slider { --spv: 2; }
  .sponsors-slider { --spv: 2; }
  .contact-form { grid-template-columns: 1fr; }
}

/* Very Small Phones */
@media (max-width: 560px) {
  .slider { --spv: 1; padding: 8px 48px; }
  .tickets-slider { --spv: 1; }
  .sponsors-slider { --spv: 1; }
  .slider .nav { width: 40px; height: 40px; line-height: 40px; font-size: 18px; }
  .hero .content { margin-bottom: 16px; }
}

/* =========================
   FIXES
   ========================= */
.image.filtered, .image.tinted { filter: none !important; background: none !important; }
.content.color0, .intro.color2, .intro.color4 { background: transparent !important; }
h1.major, h2.major { color: #7B1FA2 !important; }
.hero h1.major { color:#fff !important; } /* HERO titulli bardhë */
/* LIGHTBOX STYLE */
#lightbox {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.85);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
  }
  #lightbox img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  }
/* SOLD OUT Badge */
.soldout-wrapper {
  position: relative;
  display: inline-block;
}

.soldout-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.soldout-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 0, 0, 0.9);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Reduce space between sections */
.panel {
  padding: 4rem 2rem; /* më ngushtë se default */
}

/* Countdown */
.countdown-block {
  text-align: center;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
}
#countdown {
  font-size: 1.8rem;
  font-weight: bold;
  color: #6a1b9a; /* vjollce/pink */
  letter-spacing: 1px;
}

/* Past Conferences */
.past-conferences {
  text-align: center;
  background: #fafafa;
  border-radius: 8px;
  padding: 2rem;
}
.past-conferences ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #6a1b9a;
}

/* Ngushto hapësirat vertikale midis seksioneve */
.panel {
  padding: 3rem 1.5rem; /* më afër se më parë */
  margin-bottom: 2rem;  /* pak më e vogël mes seksioneve */
}

/* Hero dhe Countdown më afër */
.hero + .countdown-block {
  margin-top: -1rem;
}

.contact-info {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  color: #4a148c; /* vjollcë për t'u përshtatur me temën */
}

.contact-info {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  color: #4a148c; /* vjollcë për t'u përshtatur me temën */
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #555; /* gri e butë, duket bukur */
}
.copyright a {
  color: #6a1b9a; /* vjollcë e përshtatur me temën */
  text-decoration: none;
  font-weight: 600;
}
.copyright a:hover {
  text-decoration: underline;
}

footer.copyright {
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #555;
}

footer.copyright a {
  color: #6a1b9a;
  text-decoration: none;
  font-weight: 600;
}

footer.copyright a:hover {
  text-decoration: underline;
}

/* Contact form styling */
.contact-block {
  padding: 40px 20px;
  background: #faf6fc;
  border-radius: 12px;
  margin-top: 40px;
}

.contact-form .field {
  margin-bottom: 15px;
}

.contact-form label {
  font-weight: 600;
  color: #6a1b9a;
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 15px;
  background: linear-gradient(90deg, #8e24aa, #d81b60);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #7b1fa2, #c2185b);
}

.contact-info {
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
  color: #4a148c;
}

/* Footer styling */
footer.copyright {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #555;
}

footer.copyright a {
  color: #6a1b9a;
  text-decoration: none;
  font-weight: 600;
}

footer.copyright a:hover {
  text-decoration: underline;
}

/* =========================
   HEADER NAVIGATION
   ========================= */

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, #6a1b9a, #e91e63);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

header .logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

header ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

header ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

header ul li a:hover {
  color: #ffe6f1;
}

/* Hamburger for mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Responsive menu */
@media (max-width: 820px) {
  header ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #6a1b9a;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 0 0 12px 12px;
    display: none;
  }
  header ul.active { display: flex; }
  .menu-toggle { display: flex; }
}

#lightbox .lightbox-inner {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
  line-height: 1.6;
}
#lightbox .lightbox-inner img {
  display: block;
  margin: 0 auto 15px auto;
}
