/* ===============================
   TRInCo Conference Section
================================ */

/* ===============================
   TRInCo Conference Section
================================ */

.conference-section{
  max-width:900px;
  margin:40px auto;
  padding:30px 20px;
}

.conference-container{
  background:#f4e5e8;
  border-radius:16px;
  padding:40px 30px;
  border-top:6px solid #800020;
  box-shadow:0 8px 25px rgba(128,0,0,0.12);
  text-align:center;
}

/* Title */
.conference-title{
  font-size:30px;
  color:#800020;
  font-weight:700;
  margin-bottom:20px;
}

/* Logo below title */
.conference-logo{
  margin-bottom:20px;
}

.conference-logo img{
  width:180px;
  height:auto;
}

/* Content */

.conference-date{
  font-size:16px;
  font-weight:600;
  color:#444;
  margin-bottom:15px;
}

.conference-theme{
  font-size:18px;
  font-style:italic;
  color:#800020;
  margin-bottom:15px;
}

.conference-description{
  font-size:16px;
  color:#333;
  line-height:1.6;
  max-width:650px;
  margin:auto;
}

/* Button */

.conference-btn{
  display:inline-block;
  margin-top:20px;
  background:#800020;
  color:#fff;
  padding:10px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.conference-btn:hover{
  background:#D4AF37;
  color:#000;
}

/* Responsive */
/* Responsive */
@media (max-width:768px){

.conference-section{
  padding:20px 15px;
}

.conference-title{
  font-size:24px;
}

.conference-logo img{
  width:140px;
}

.conference-theme{
  font-size:16px;
}

.conference-description{
  font-size:15px;
}

.time-box{
  min-width:70px;
  padding:10px 14px;
}

.time-box span{
  font-size:18px;
}

}


/* TRInCo Countdown Section */

/* Countdown inside conference section */

.countdown-wrapper{
  margin-top:30px;
  text-align:center;
}

.countdown-title{
  font-size:20px;
  color:#800020;
  font-weight:700;
  margin-bottom:15px;
}

.countdown-timer{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.time-box{
  background:#800020;
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  min-width:80px;
  box-shadow:0 4px 12px rgba(128,0,0,0.2);
}

.time-box span{
  font-size:22px;
  font-weight:700;
  display:block;
}

.time-box p{
  font-size:12px;
  margin:0;
}