/* KONFERENCIA SPECIFIC STYLES */

.conf-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 180px 48px 100px;
  position: relative;
  overflow: hidden;
  background: var(--bd);
}

.conf-hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0503; /* Deep, rich black */
  z-index: 0;
}

.conf-hero-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(232, 92, 26, 0.08) 0%, transparent 70%);
  z-index: 1;
  filter: blur(80px);
}

.conf-hero-overlay {
  display: none; /* Removed for a cleaner look */
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.conf-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.conf-hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--or);
  text-transform: uppercase;
  opacity: 0.8;
}

.conf-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 10vw, 140px); /* Lowered min slightly for safety */
  line-height: 0.85;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 10px 0;
  white-space: nowrap;
}

.conf-hero-claim {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--cr);
  max-width: 700px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.conf-hero-info {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.conf-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cr);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 100px; /* Pill shape for modern look */
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.conf-info-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--or);
  transform: translateY(-2px);
}

.conf-info-item svg {
  color: var(--or);
  width: 16px;
  height: 16px;
}

.conf-hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* COUNTDOWN */
.conf-countdown-section {
  padding: 120px 48px;
  background: #0a0503; /* Always dark for impact */
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 92, 26, 0.2);
  border-bottom: 1px solid rgba(232, 92, 26, 0.2);
}

.conf-countdown-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(232, 92, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.countdown-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: var(--or);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.countdown-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  color: #fff;
  letter-spacing: 0.1em;
}

.countdown-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.countdown-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 140px);
  color: #fff;
  line-height: 0.9;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(232, 92, 26, 0.3);
}

.countdown-label {
  font-size: 13px;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  opacity: 0.8;
}

body.light-mode .btn-primary {
  color: #ffffff !important;
}

/* Light mode override to keep it dark and distinct */
body.light-mode .conf-countdown-section {
  background: #0a0503;
}

body.light-mode .countdown-val,
body.light-mode .countdown-title {
  color: #fff;
}

/* ABOUT SECTION */
.about-conf {
  background: var(--bm);
}

.about-conf-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--cr);
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--tm);
  margin-bottom: 24px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bd);
  padding: 24px;
  border-left: 3px solid var(--or);
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.highlight-item h4 {
  font-size: 16px;
  color: var(--cr);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.highlight-item p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

/* IMPACT STATS */
.impact-section {
  background: var(--bd);
  padding: 80px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.stat-card {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--or);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 0 40px rgba(232, 92, 26, 0.3);
}

.stat-label {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cr);
}

/* PROGRAM / TIMELINE */
.program-section {
  background: var(--bm);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 2px;
  background: rgba(255,255,255,0.1);
}

.timeline-block {
  margin-bottom: 60px;
  position: relative;
}

.block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--or);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  padding-left: 160px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.block-title::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--or);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  position: relative;
  transition: transform 0.3s;
}

.timeline-item:hover {
  transform: translateX(10px);
}

.time-col {
  width: 120px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--cr);
  position: relative;
}

.time-col::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bd);
  border: 2px solid var(--or);
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}

.timeline-item:hover .time-col::after {
  background: var(--or);
  box-shadow: 0 0 15px var(--or);
}

.content-col {
  flex: 1;
  background: var(--bd);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  position: relative;
}

.content-col::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--bd);
  border-left: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transform: rotate(45deg);
}

.timeline-item.highlight .content-col {
  border-color: rgba(232, 92, 26, 0.4);
  background: linear-gradient(135deg, rgba(26,15,10,1) 0%, rgba(45,26,14,1) 100%);
}

.timeline-item.highlight .content-col::before {
  border-color: rgba(232, 92, 26, 0.4);
  background: rgba(26,15,10,1);
}

.timeline-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--cr);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.timeline-speakers {
  font-size: 15px;
  color: var(--or);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-desc {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.6;
}

.timeline-desc ul {
  list-style: none;
  margin-top: 12px;
}

.timeline-desc li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-desc li::before {
  content: '→';
  color: var(--or);
}

.coffee-break {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  justify-content: center;
  color: var(--tm);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
}

.coffee-break::before, .coffee-break::after {
  content: '';
  height: 1px;
  background: rgba(255,255,255,0.1);
  flex: 1;
  max-width: 100px;
}

/* SPEAKERS */
.speakers-section {
  background: var(--bd);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.speaker-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}

.speaker-card:hover .speaker-photo {
  border-color: var(--or);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) sepia(10%) contrast(1.1) brightness(0.9);
  transition: filter 0.4s, transform 0.4s;
}

.speaker-card:hover .speaker-photo img {
  filter: grayscale(0%) sepia(0%) contrast(1) brightness(1);
}

.speaker-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--cr);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.speaker-role {
  font-size: 12px;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 600;
}

.speaker-bio {
  font-size: 14px;
  color: var(--tm);
  line-height: 1.6;
}

/* VALUE PROPOSITION (Why Attend) */
.value-section {
  padding: 120px 48px;
  background: var(--bm);
}

.value-grid-new {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.value-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  border-left: 1px solid var(--or);
}

.value-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--or);
  opacity: 0.4;
  margin-bottom: 12px;
  letter-spacing: 0.2em;
}

.value-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--cr);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.value-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-item li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--tm);
  margin-bottom: 16px;
  position: relative;
}

@media (max-width: 992px) {
  .value-grid-new {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .value-section {
    padding: 80px 24px;
  }
}

/* MINI LANDING / PR */
.mini-landing {
  position: relative;
  padding: 120px 48px;
  background: var(--bd);
  overflow: hidden;
}

.ml-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/KRT24_LES_4_1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.2;
}

.ml-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(26,15,10,0.85);
  padding: 60px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.ml-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--or);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.ml-content p {
  font-size: 18px;
  color: var(--cr);
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.ml-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.ml-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cr);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* PRACTICAL INFO */
.practical-section {
  background: var(--bm);
}

.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch; /* Fotka sa teraz natiahne na výšku textu */
}

.practical-info, .map-container {
  min-width: 0; /* Allow grid items to shrink */
}

.practical-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--cr);
  margin-bottom: 40px;
  line-height: 1.1;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  background: var(--bd);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
}

.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(232, 92, 26, 0.1);
  border: 1px solid rgba(232, 92, 26, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
}

.info-text h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--cr);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.info-text p {
  font-size: 15px;
  color: var(--tm);
  line-height: 1.6;
}

.info-text a {
  color: var(--or);
  text-decoration: none;
  font-weight: 600;
}

.info-text a:hover {
  text-decoration: underline;
}

.map-container {
  height: 100%;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: var(--bd);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--tm);
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://tabacka.sk/wp-content/uploads/2020/03/velkasala.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: grayscale(100%);
}

.map-placeholder-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.map-placeholder svg {
  color: var(--or);
  margin-bottom: 16px;
}

/* PARTNERS */
.partners-section {
  background: var(--bd);
  text-align: center;
  padding: 80px 48px;
}

.partners-logos {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.partners-logos img {
  height: 60px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.partner-logo-tabacka {
  filter: grayscale(100%) brightness(0) invert(1) !important;
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* PRESS RELEASE HERO BUTTON */
.btn-outline-sm {
  font-size: 10px;
  padding: 12px 22px;
  opacity: 0.75;
  letter-spacing: 0.2em;
}

.btn-outline-sm:hover {
  opacity: 1;
}

.partners-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 64px 0 56px;
}

.partners-support {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 40px 20px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 40px;
}

.partners-support a {
  display: block;
  max-width: 100%;
}

.partner-support-logo {
  width: 380px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
  filter: none !important;
  opacity: 1 !important;
  transition: transform 0.3s;
}

.partner-support-logo:hover {
  transform: scale(1.03);
  filter: none !important;
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,15,10,0.95);
  border-top: 1px solid rgba(232, 92, 26, 0.2);
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--cr);
  letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-conf-inner, .practical-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 40px;
  }
  .block-title {
    padding-left: 60px;
  }
  .timeline-item {
    flex-direction: column;
    gap: 16px;
  }
  .time-col {
    text-align: left;
    width: 100%;
    padding-left: 60px;
  }
  .time-col::after {
    left: 34px;
    top: 5px;
  }
  .content-col {
    margin-left: 60px;
  }
  .content-col::before {
    left: 50px;
    top: -8px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .sticky-cta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .conf-hero-info {
    flex-direction: column;
    gap: 16px;
  }
  .ml-content {
    padding: 32px 24px;
  }
  .info-item {
    flex-direction: column;
  }
}
/* LIGHT MODE OVERRIDES */
body.light-mode .conf-hero-bg {
  background: #fff; /* Pure white in light mode for maximum clarity */
}

body.light-mode .conf-hero-title {
  color: #1a0f0a; /* SLG Deep Brown */
}

body.light-mode .conf-hero-bg::after {
  background: radial-gradient(circle, rgba(232, 92, 26, 0.05) 0%, transparent 70%);
}

body.light-mode .conf-info-item {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}

body.light-mode .conf-info-item:hover {
  background: rgba(0,0,0,0.06);
  border-color: var(--or);
}

body.light-mode .about-conf {
  background: var(--bm);
}

body.light-mode .stat-card {
  border-color: rgba(0,0,0,0.05);
}

body.light-mode .timeline::before {
  background: rgba(0,0,0,0.1);
}

body.light-mode .content-col {
  background: var(--bd);
  border-color: rgba(0,0,0,0.1);
}

body.light-mode .content-col::before {
  background: var(--bd);
  border-color: rgba(0,0,0,0.1);
}

body.light-mode .timeline-item.highlight .content-col {
  background: var(--bm);
  border-color: var(--or);
}

body.light-mode .timeline-item.highlight .content-col::before {
  background: var(--bm);
  border-color: var(--or);
}

body.light-mode .ml-content {
  background: var(--nav-bg);
  border-color: rgba(0,0,0,0.1);
}

body.light-mode .ml-content h2 {
  color: var(--or);
}

body.light-mode .ml-content p, 
body.light-mode .ml-feature {
  color: var(--tl);
}

body.light-mode .info-item {
  background: var(--bd);
  border-color: rgba(0,0,0,0.08);
}

body.light-mode .partners-logos img {
  filter: grayscale(100%) brightness(0.2);
  opacity: 0.5;
}

body.light-mode .partner-logo-tabacka {
  filter: grayscale(100%) brightness(0.2) invert(0) !important;
}

body.light-mode .partners-logos img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

body.light-mode .partners-divider {
  background: rgba(0, 0, 0, 0.12);
}

body.light-mode .sticky-cta {
  background: var(--nav-bg);
  border-top: 1px solid var(--or);
}

body.light-mode .sticky-text {
  color: var(--tl);
}

body.light-mode .footer-sponsors img {
  filter: grayscale(100%) brightness(0.2);
}

body.light-mode .footer-sponsors img:hover {
  filter: none;
}
