:root {
  --main-theme-color: #6B6E3D;
  --sub-theme-color: #9A7B4F;
  --navbar-height: 80px;
}

@media (max-width: 991.98px) {
  :root {
    --navbar-height: 70px;
  }
}
.heroDrop {
  position: relative;
  height: 500px;
  margin-top: 10px; 
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}

#headerElement {
  position: relative;
  height: 500px !important;
  min-height: 500px !important;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  margin-top: 10px;
}

/* Responsive Text & Button Adjustments */
.conference-title {
  font-size: clamp(1.4rem, 1.8vw + 0.5rem, 2rem);
}

.conference-desc {
  font-size: clamp(0.9rem, 1.2vw + 0.3rem, 1.1rem);
  line-height: 1.4;
}

.btn-register {
  display: inline-block !important;
  padding: 0.8rem 2rem !important;
  background: linear-gradient(45deg, var(--main-theme-color), var(--sub-theme-color)) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(154, 123, 79, 0.5);
  transition: all 0.3s ease;
  border: none !important;
}

.btn-register:hover {
  background: linear-gradient(45deg, var(--sub-theme-color), #bca26a) !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 35px rgba(154, 123, 79, 0.7);
  color: #fff !important;
}
.countdown-list {
  margin-bottom: 0.6rem;
}


@media (max-width: 576px) {
  .heroDrop,
#headerElement {
    height: 480px !important;
    padding-top: 1.2rem;
  }
  .conference-title {
    font-size: 1.2rem;
  }
  .conference-desc {
    font-size: 0.9rem;
  }
.btn-register {
    font-size: 0.95rem !important;
    padding: 0.7rem 1.6rem !important;
  }
#countdown-list li{
  padding: 0.5;
}
}
/* --- Icon gradient effect --- */
#information-bar ul li i,
.single-intro-text .count-number,
.single-intro-text:hover i {
  background-image: linear-gradient(65deg, var(--main-theme-color) 0%, var(--sub-theme-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Intro box --- */
.single-intro-text {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.single-intro-text i{
left:20px;
}


@media (max-width: 768px) {
  .single-intro-text {
    min-height: 380px;
  }
}

/* --- Event Image --- */
.event-img {
  filter: sepia(100%) saturate(40%) brightness(90%);
  transition: filter 0.6s ease, transform 0.4s ease;
  cursor: default;
}

.event-img:hover {
  filter: sepia(0%) saturate(100%) brightness(100%);
  transform: scale(1.03);
}
/* --- Typography --- */
.conference-title {
  font-size: clamp(1.3rem, 2vw + 1rem, 2.5rem);
  line-height: 1.2;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
  transition: font-size 0.3s ease;
  margin-bottom: 0.6rem;
}

.conference-desc {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.25rem);
  max-width: 900px;
  margin: 0 auto 1rem auto;
  line-height: 1.5;
  color: #f5f5f5;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* --- Countdown --- */
.countdown-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.count-number {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.count-label {
  font-size: clamp(0.8rem, 1vw + 0.4rem, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
}
/* --- Poster Popup --- */
.poster-popup {
  border-radius: 10px;
}

.poster-popup .swal2-image {
  max-height: 80vh !important;
  object-fit: contain !important;
}

