/* Base Theme Colors */
:root {
  --primary-color: #5f60ee;
  --secondary-color: #fad425;
  --gradient-hero: linear-gradient(
    to right bottom,
    #4f46e5,
    #604be9,
    #7051ed,
    #7e57f2,
    #8b5df6
  );
  --light-grey: #f4f5f7;
  --text-black: #141414;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-black);
  background-color: #ffffff;
  margin: 0;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
li{
  list-style: none;
}
ul{
  list-style: none;
}
.navbar .nav-link {
  font-weight: 700;
  color: #4b5563;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar-nav .nav-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.small-title {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #4b4cd5;
  border-color: #4b4cd5;
}

.btn-warning {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #111827;
}

.btn-warning:hover {
  background-color: #e6c020;
  border-color: #e6c020;
  color: #111827;
}

.bg-soft-secondary {
  background-color: var(--secondary-color);
  color: #111827;
}

.hero-section {
  min-height: 80vh;
  padding: 5rem 0 4rem;
  background-image: var(--gradient-hero);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.1),
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
}

/* Animated Background Bubbles */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: 1;
  animation: float 20s ease-in-out infinite;
}

.hero-bubble-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  background: rgba(255, 255, 255, 0.08);
}

.hero-bubble-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 15%;
  animation-delay: 2s;
  background: rgba(255, 255, 255, 0.12);
}

.hero-bubble-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 10%;
  animation-delay: 4s;
  background: rgba(255, 255, 255, 0.1);
}

.hero-bubble-4 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 20%;
  animation-delay: 6s;
  background: rgba(255, 255, 255, 0.15);
}

.hero-bubble-5 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  animation-delay: 8s;
  background: rgba(255, 255, 255, 0.09);
}

.hero-bubble-6 {
  width: 160px;
  height: 160px;
  bottom: 25%;
  left: 25%;
  animation-delay: 10s;
  background: rgba(255, 255, 255, 0.11);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.7;
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
    opacity: 0.75;
  }
}

/* Small Decorative Particles */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: particleFloat 15s ease-in-out infinite;
}

.hero-particle-1 {
  width: 40px;
  height: 40px;
  top: 20%;
  left: 8%;
  animation-delay: 0s;
}

.hero-particle-2 {
  width: 30px;
  height: 30px;
  top: 70%;
  left: 12%;
  animation-delay: 1.5s;
}

.hero-particle-3 {
  width: 35px;
  height: 35px;
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}

.hero-particle-4 {
  width: 25px;
  height: 25px;
  bottom: 20%;
  right: 25%;
  animation-delay: 4.5s;
}

.hero-particle-5 {
  width: 45px;
  height: 45px;
  top: 15%;
  left: 45%;
  animation-delay: 6s;
}

.hero-particle-6 {
  width: 35px;
  height: 35px;
  bottom: 30%;
  left: 30%;
  animation-delay: 7.5s;
}

.hero-particle-7 {
  width: 30px;
  height: 30px;
  top: 55%;
  right: 30%;
  animation-delay: 9s;
}

.hero-particle-8 {
  width: 40px;
  height: 40px;
  bottom: 10%;
  left: 60%;
  animation-delay: 10.5s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  33% {
    transform: translate(20px, -25px) scale(1.2);
    opacity: 0.6;
  }
  66% {
    transform: translate(-15px, 15px) scale(0.8);
    opacity: 0.5;
  }
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 30rem;
  color: rgba(249, 250, 251, 0.9);
}

.hero-cta-primary {
  border-radius: 999px;
  padding-inline: 1.8rem;
  font-weight: 600;
}

.hero-cta-secondary {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.8);
  color: #f9fafb;
}

.hero-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-buttons-wrapper {
  justify-content: flex-start;
}

.hero-meta {
  font-size: 0.9rem;
  color: rgba(243, 244, 246, 0.95);
}

.hero-meta-icon {
  font-size: 1.2rem;
}

.hero-meta-text {
  white-space: nowrap;
}

.hero-iframe-wrapper {
  position: relative;
  min-height: 400px;
  max-width: 480px;
  margin-left: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.hero-iframe {
  width: 100%;
  height: 100%;
  min-height: 567px;
  border: 0;
}

.site-footer {
  background-color: var(--light-grey);
  border-top: 1px solid #e5e7eb;
}

.footer-text {
  font-size: 0.85rem;
  color: #4b5563;
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-iframe-wrapper {
    margin: 2.5rem auto 0;
  }
  
  .hero-buttons-wrapper {
    justify-content: center !important;
    width: 100%;
  }
  
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    max-width: 280px;
  }
}

.schedule-section {
  background-color: var(--light-grey);
}

.schedule-table-wrapper {
  border-radius: 1rem;
  overflow-x: auto;
  overflow-y: visible;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

/* Ensure table doesn't shrink below minimum width on mobile */
.schedule-table {
  min-width: 600px;
  width: 100%;
}

.schedule-table thead {
  background-color: #f9fafb;
}

.schedule-table thead th {
  font-weight: 600;
  border-bottom-width: 1px;
  border-color: #e5e7eb;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.schedule-table tbody td {
  border-color: #e5e7eb;
}

/* Enhanced Colorful Table Styling */
.schedule-table.table-striped > tbody > tr:nth-child(odd) > td {
  background-color: #ffffff;
}

.schedule-table.table-striped > tbody > tr:nth-child(even) > td {
  background-color: #f8f9fa;
}

.schedule-table.table-hover > tbody > tr:hover > td {
  background-color: #e3f2fd !important;
  color: #1976d2;
  transition: all 0.3s ease;
}

.schedule-table thead.table-primary th {
  background-color: var(--primary-color) !important;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.schedule-table thead.table-primary th i {
  color: #ffffff;
  margin-right: 0.5rem;
}

/* Make the Most Section Background */
.make-most-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Introduction Section - Gen Z Styling */
.intro-content-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-content-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
}

.intro-content-wrapper .section-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.intro-content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

/* Why Attend Section - Gen Z Styling */
.why-attend-section {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
}

.why-attend-content-wrapper {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 50px rgba(252, 182, 159, 0.25);
  transition: transform 0.3s ease;
}

.why-attend-content-wrapper:hover {
  transform: translateY(-3px);
}

.why-attend-content-wrapper .section-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 2rem;
}

.genz-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-color);
}

.genz-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

/* Schedule Section - Gen Z Styling */
.schedule-header-wrapper {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(168, 237, 234, 0.3);
}

.schedule-header-wrapper .section-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 2rem;
}

.schedule-section {
  background: linear-gradient(180deg, #f4f5f7 0%, #ffffff 50%, #f4f5f7 100%);
}

/* Make Most Section - Gen Z Styling */
.make-most-content-wrapper {
  background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 50px rgba(210, 153, 194, 0.25);
  transition: transform 0.3s ease;
}

.make-most-content-wrapper:hover {
  transform: translateY(-3px);
}

.make-most-content-wrapper .section-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 2rem;
}

.genz-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.genz-list li {
  counter-increment: item;
  position: relative;
  padding-left: 3rem;
}

.genz-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Section Title Global Styling */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title.text-center {
  display: block;
  text-align: center;
  width: 100%;
}

.section-title i {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Gen Z Modern Animations */
@media (prefers-reduced-motion: no-preference) {
  .genz-card,
  .intro-content-wrapper,
  .why-attend-content-wrapper,
  .make-most-content-wrapper,
  .schedule-header-wrapper {
    animation: fadeInUp 0.6s ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Gen Z */
@media (max-width: 768px) {
  .intro-content-wrapper,
  .why-attend-content-wrapper,
  .make-most-content-wrapper {
    padding: 2rem 1.5rem;
  }
  
  .intro-content-wrapper .section-title,
  .why-attend-content-wrapper .section-title,
  .make-most-content-wrapper .section-title {
    font-size: 1.5rem;
  }
  
  .schedule-header-wrapper {
    padding: 1.5rem;
  }
  
  /* Mobile table adjustments */
  .schedule-table-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0;
    max-width: calc(100% + 30px);
  }
  
  .schedule-table {
    min-width: 500px;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem;
    white-space: nowrap;
  }
  
  .schedule-table th {
    font-size: 0.75rem;
  }
  
  .schedule-table th i,
  .schedule-table td i {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .schedule-table {
    min-width: 450px;
  }
  
  .schedule-table th,
  .schedule-table td {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem;
  }
  
  .schedule-table th {
    font-size: 0.7rem;
  }
}