/*--------------------------------------------------------------
# Schedule Hero Section
--------------------------------------------------------------*/
.schedule-hero-section {
  display: flex;
  justify-content: space-between;
  padding: 2rem var(--side-padding);
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../../images/bg-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-light-grey);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.schedule-hero-section .container {
  position: relative;
  z-index: 10;
}

/* Animated Background Lines */
.animated-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Animated Background Dots */
.animated-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.dot {
  position: absolute;
  border-radius: 50%;
  animation: floatDot 8s ease-in-out infinite;
}

/* Small dots */
.dot-1, .dot-3, .dot-5, .dot-7, .dot-9, .dot-11 {
  width: 3px;
  height: 3px;
  background: var(--timeline-color);
  opacity: 0.8;
  filter: blur(0px);
}

/* Medium dots */
.dot-2, .dot-4, .dot-6, .dot-8 {
  width: 6px;
  height: 6px;
  background: var(--timeline-color);
  opacity: 0.6;
  filter: blur(1px);
}

/* Large dots */
.dot-10, .dot-12 {
  width: 8px;
  height: 8px;
  background: var(--timeline-color);
  opacity: 0.4;
  filter: blur(2px);
}

.dot-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.dot-2 {
  top: 25%;
  left: 85%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.dot-3 {
  top: 45%;
  left: 15%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.dot-4 {
  top: 65%;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.dot-5 {
  top: 35%;
  left: 70%;
  animation-delay: 4s;
  animation-duration: 5s;
}

.dot-6 {
  top: 55%;
  left: 25%;
  animation-delay: 5s;
  animation-duration: 6s;
}

.dot-7 {
  top: 75%;
  left: 60%;
  animation-delay: 6s;
  animation-duration: 8s;
}

.dot-8 {
  top: 20%;
  left: 50%;
  animation-delay: 7s;
  animation-duration: 7s;
}

.dot-9 {
  top: 40%;
  left: 90%;
  animation-delay: 8s;
  animation-duration: 6s;
}

.dot-10 {
  top: 60%;
  left: 5%;
  animation-delay: 9s;
  animation-duration: 8s;
}

.dot-11 {
  top: 80%;
  left: 40%;
  animation-delay: 10s;
  animation-duration: 5s;
}

.dot-12 {
  top: 10%;
  left: 30%;
  animation-delay: 11s;
  animation-duration: 7s;
}

@keyframes floatDot {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-15px);
  }
  75% {
    transform: translateY(-30px) translateX(5px);
  }
}

/* Small dots animation - vivid */
.dot-1, .dot-5, .dot-9 {
  animation: floatDotVivid 8s ease-in-out infinite;
}

.dot-3, .dot-7, .dot-11 {
  animation: floatDotVivid2 8s ease-in-out infinite;
}

/* Medium dots animation - moderate */
.dot-2, .dot-6 {
  animation: floatDotModerate 8s ease-in-out infinite;
}

.dot-4, .dot-8 {
  animation: floatDotModerate2 8s ease-in-out infinite;
}

/* Large dots animation - subtle */
.dot-10 {
  animation: floatDotSubtle 8s ease-in-out infinite;
}

.dot-12 {
  animation: floatDotSubtle2 8s ease-in-out infinite;
}

@keyframes floatDotVivid {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) translateX(-15px);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-30px) translateX(5px);
    opacity: 0.9;
  }
}

@keyframes floatDotModerate {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-15px) translateX(8px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px) translateX(-12px);
    opacity: 0.5;
  }
  75% {
    transform: translateY(-25px) translateX(3px);
    opacity: 0.7;
  }
}

@keyframes floatDotSubtle {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-10px) translateX(5px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-5px) translateX(-8px);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-20px) translateX(2px);
    opacity: 0.5;
  }
}

@keyframes floatDotVivid2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateY(15px) translateX(-12px);
    opacity: 1;
  }
  50% {
    transform: translateY(8px) translateX(18px);
    opacity: 0.7;
  }
  75% {
    transform: translateY(25px) translateX(-8px);
    opacity: 0.9;
  }
}

@keyframes floatDotModerate2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.2;
  }
  25% {
    transform: translateY(12px) translateX(-10px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(6px) translateX(15px);
    opacity: 0.5;
  }
  75% {
    transform: translateY(20px) translateX(-5px);
    opacity: 0.7;
  }
}

@keyframes floatDotSubtle2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.1;
  }
  25% {
    transform: translateY(8px) translateX(-6px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(4px) translateX(10px);
    opacity: 0.3;
  }
  75% {
    transform: translateY(15px) translateX(-3px);
    opacity: 0.5;
  }
}

.line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--timeline-color), transparent);
  opacity: 0;
  animation: shootLine 2s linear infinite;
}

.line-1 {
  top: 20%;
  width: 400px;
  animation-delay: 0s;
  animation-duration: 6s;
}

.line-2 {
  top: 40%;
  width: 350px;
  animation-delay: 2s;
  animation-duration: 7s;
}

.line-3 {
  top: 60%;
  width: 380px;
  animation-delay: 4s;
  animation-duration: 8s;
}

.line-4 {
  top: 30%;
  width: 320px;
  animation-delay: 6s;
  animation-duration: 5s;
}

.line-5 {
  top: 70%;
  width: 360px;
  animation-delay: 8s;
  animation-duration: 9s;
}

.line-6 {
  top: 10%;
  width: 300px;
  animation-delay: 10s;
  animation-duration: 6s;
}

.line-7 {
  top: 15%;
  width: 280px;
  animation-delay: 12s;
  animation-duration: 7s;
}

.line-8 {
  top: 5%;
  width: 320px;
  animation-delay: 14s;
  animation-duration: 8s;
}

.line-9 {
  top: 35%;
  width: 250px;
  animation-delay: 16s;
  animation-duration: 6s;
}

.line-10 {
  top: 85%;
  width: 300px;
  animation-delay: 18s;
  animation-duration: 7s;
}

@keyframes shootLine {
  0% {
    left: -400px;
    opacity: 0;
  }
  5% {
    left: -400px;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  95% {
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

.schedule-hero-item {
  color: var(--color-pure-white);
  position: relative;
  z-index: 10;
}

.schedule-hero-section .hero-stats h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

.schedule-hero-section .hero-stats p {
  font-size: 0.85rem;
  color: var(--color-light-grey);
  font-weight: 300;
}


.schedule-hero-section .hero-stats span {
  font-size: 0.9rem;
  color: var(--color-light-grey);
}


/* Hero Visual Container */
.hero-visual-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-top: 2rem;
}

.hero-logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-content {
  text-align: center;
  color: var(--color-pure-white);
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Floating Elements */

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-10px) rotate(2deg); 
  }
}

/*--------------------------------------------------------------
# Why Attend Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Agenda Section
--------------------------------------------------------------*/
.agenda-section {
  background-color: var(--color-pure-white);
  color: var(--color-text-black);
  width: 100%;
}

.agenda-section .agenda-item:last-child {
  margin-top: 1rem;
}

/* Timeline Container */
.schedule-timeline-container {
  position: relative;
  border: 1px solid var(--color-light-grey);
  border-radius: var(--border-radius-medium);
  border-radius: 0;
}

/* Timeline Header */
.timeline-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--gradient-primary);
  color: white;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 1rem;
  padding-bottom: 1.5rem;
}

.timeline-marker {
  display: none;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--timeline-color);
  padding: 0.4rem 0.8rem;
  background: rgba(32, 178, 170, 0.1);
  border-radius: var(--border-radius-small);
  display: inline-block;
  border: 1px solid var(--timeline-color);
  border-left: 4px solid var(--timeline-color);
}

/* Timeline Cards Row */
.timeline-cards-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* Timeline Cards */
.timeline-card {
  background: white;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  transition: var(--transition-all);
  border: 1px solid var(--color-light-grey);
  border-left: 4px solid var(--color-primary);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
}

/* Card Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  padding-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.session-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.1rem 0.75rem;
  border-radius: var(--border-radius-large);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-header .card-location {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  font-size: 0.85rem;
  color: var(--timeline-color);
}

/* Card Body */
.card-body {
  padding: 1rem;
}

.card-body h4 {
  color: var(--color-text-black);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-body h5 {
  color: var(--color-text-black);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-body .speaker {
  color: var(--color-text-grey);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-body .moderator {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* Panelists */

/* Session Additional */

/* Inauguration Details */
.inauguration-details {
  margin-bottom: 1rem;
}

/* Card Location */
.card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-grey);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.card-location i {
  font-size: 0.75rem;
  color: var(--color-primary);
}

/* Schedule Note */

/* Card Types */
.conference-hall-card {
  border-color: var(--color-primary);
}

.conference-hall-card .session-badge {
  background: var(--color-primary);
}

.main-hall-card {
  border-color: var(--accent-color);
}

.main-hall-card .session-badge {
  background: var(--accent-color);
}

.breakout-room-card {
  border-color: var(--color-secondary);
}

.breakout-room-card .session-badge {
  background: var(--color-secondary);
}




/* Schedule Table */

.schedule-col-time,
.schedule-col-main,
.schedule-col-breakout,

.schedule-content.empty {
  background: var( --color-text-black);
  opacity: 0.7;
}

/* Lunch Row */

/* Inauguration Section */

.speaker-name {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 0.25rem;
}

/*--------------------------------------------------------------
# Responsive Schedule - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {

  .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.5rem;
    width: 3px;
    background: var(--timeline-color);
    border-radius: var(--border-radius-small);
    box-shadow: 0 0 10px rgba(32, 178, 170, 0.3);
  }
  
  
  /* Timeline Markers */
  .timeline-marker {
    position: absolute;
    left: 12px;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid white;
    background: var(--timeline-color);
    top: -5px
  }


  /* Timeline Content */
  .timeline-content {
    margin-left: 60px;
    flex: 1;
    min-width: 0;
  }

  .schedule-timeline-container {
    border-radius: var(--border-radius-medium);
  }

  .schedule-hero-section {
    padding: 3rem var(--side-padding);
  }

  .schedule-hero-section .hero-stats h3 {
    font-size: 2.25rem;
  }

  .schedule-hero-section .hero-stats p {
    font-size: 0.9rem;
  }

  .hero-visual-container {
    height: 350px;
    margin-top: 1rem;
  }
  
  .hero-logo-wrapper {
    max-width: 450px;
    height: 300px;
  }

  .agenda-section {
    padding: 3rem 1rem;
  }

  /* Timeline Responsive */
  .schedule-timeline-container {
    margin: 0;
    padding: 0;
  }
  
  .timeline-header {
    padding: 1.75rem;
    margin-bottom: 2.5rem;
    border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  }

  
  .timeline-title {
    font-size: 1.75rem;
  }
  
  .timeline-subtitle {
    font-size: 1.05rem;
  }
  
  
  .timeline-marker {
    left: -0.5rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.85rem;
  }
  
  .timeline-content {
    margin-left: 40px;
  }
  
  .timeline-time {
    font-size: 0.9rem;
    padding: 0.25rem 1rem;
  }
  
  .timeline-cards-row {
    gap: 1.5rem;
  }
  
  .card-header {
    padding: 0.75rem 1rem;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  
  .card-body h5 {
    font-size: 1rem;
  }
  
  .card-body .speaker {
    font-size: 0.9rem;
  }
  
  .card-body .moderator {
    font-size: 0.85rem;
  }

  .card-location {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Responsive Schedule - Large Desktop View (≥ 1200px)
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .schedule-hero-section {
    padding: 4rem var(--side-padding);
  }

  .schedule-hero-section .hero-stats h3 {
    font-size: 2.5rem;
  }

  .hero-visual-container {
    height: 400px;
    margin-top: 0;
  }
  
  .hero-logo-wrapper {
    max-width: 500px;
    height: 400px;
  }

  .agenda-section {
    padding: 4rem var(--side-padding);
  }
  
  .timeline-header {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  
  .timeline-title {
    font-size: 2rem;
  }
  
  .timeline-subtitle {
    font-size: 1.1rem;
  }
}

/* Speakers Section */
.speakers-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.speaker-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: auto;
  flex: none;
}

.speaker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--timeline-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

.speaker-avatar.moderator {
  background: var(--color-text-grey) !important;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3) !important;
  color: white;
}

.speaker-info {
  flex: 1;
  min-width: 0;
}

.speaker-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-black);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.speaker-title {
  font-size: 0.75rem;
  color: var(--color-text-grey);
  font-weight: 600;
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.speaker-company {
  font-size: 0.75rem;
  color: var(--color-sub-text);
  line-height: 1.2;
}

/*--------------------------------------------------------------
# Speaker Profiles Responsive - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .speakers-section {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .speaker-profile {
    min-width: 180px;
    flex: 1;
  }
  
  .speaker-name {
    font-size: 0.95rem;
  }
  
  .speaker-title {
    font-size: 0.8rem;
  }
  
  .speaker-company {
    font-size: 0.8rem;
  }
}

/* Room-specific location colors */
.main-hall-card .card-location,
.main-hall-card .card-location i {
  color: var(--accent-color);
}

.breakout-room-card .card-location,
.breakout-room-card .card-location i {
  color: var(--color-secondary);
}

.conference-hall-card .card-location,
.conference-hall-card .card-location i {
  color: var(--color-primary);
}

/* Room-specific speaker avatar colors */
.main-hall-card .speaker-avatar {
  background: var(--accent-color);
  box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

.breakout-room-card .speaker-avatar {
  background: var(--color-secondary);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.conference-hall-card .speaker-avatar {
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(185, 87, 255, 0.3);
}

/* Inauguration Table */
.inauguration-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.inauguration-table th {
  background: var(--color-pure-white);
  color: var(--color-text-black);
  font-weight: 700;
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--accent-color);
  font-size: 0.85rem;
}

.inauguration-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-light-grey);
  vertical-align: top;
}

.inauguration-table tr:hover {
  background: #007BFF0d;
}

.inauguration-table td:first-child {
  font-weight: 600;
  color: var(--accent-color);
}

/* Mobile Table to Cards - Mobile First */
.inauguration-table,
.inauguration-table thead,
.inauguration-table tbody,
.inauguration-table th,
.inauguration-table td,
.inauguration-table tr {
  display: block;
}

.inauguration-table thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.inauguration-table tr {
  border: 1px solid var(--color-light-grey);
  border-radius: var(--border-radius-medium);
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inauguration-table td {
  border: none;
  position: relative;
  padding: 0.5rem 0;
  padding-left: 0;
}

.inauguration-table td:before {
  content: attr(data-label) ": ";
  font-weight: 700;
  color: var(--timeline-color);
  display: block;
  width: 80px;
  margin-right: 0.5rem;
}

.inauguration-table td:first-child:before {
  content: "Time: ";
}

.inauguration-table td:nth-child(2):before {
  content: "Activity: ";
}

.inauguration-table td:nth-child(3):before {
  content: "Speaker: ";
}

/*--------------------------------------------------------------
# Inauguration Table Responsive - Tablet View (≥ 768px)
--------------------------------------------------------------*/
@media (min-width: 768px) {
  .inauguration-table,
  .inauguration-table thead,
  .inauguration-table tbody,
  .inauguration-table th,
  .inauguration-table td,
  .inauguration-table tr {
    display: table;
    display: revert;
  }

  .inauguration-table thead tr {
    position: static;
  }

  .inauguration-table tr {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .inauguration-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-light-grey);
  }

  .inauguration-table td:before {
    content: none;
  }

    
  .inauguration-table td:first-child {
    font-weight: 600;
    width: 20%;
  }

}
