/* Workshops & Bootcamps Page Custom Styles */

/* Intro Section */
.intro-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.intro-title {
  color: #ffc451;
  font-weight: 700;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
}

/* Workshops Section */
.workshops-section {
  padding: 80px 0;
  background: #fff;
}

.workshops-title {
  color: #ffc451;
}

.workshops-subtitle {
  font-size: 20px;
  color: #444444;
}

.workshop-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 30px;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.3);
}

.workshop-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffc451, #ffb020);
  color: #151515;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.workshop-icon {
  font-size: 50px;
  color: #ffc451;
  margin-bottom: 20px;
}

.workshop-card h4 {
  color: #151515;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}

.workshop-description {
  font-size: 16px;
  color: #444444;
  margin-bottom: 25px;
  line-height: 1.7;
}

.workshop-details h5 {
  color: #ffc451;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.workshop-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.workshop-details ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: #444444;
}

.workshop-details ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffc451;
  font-weight: bold;
  font-size: 16px;
}

.workshop-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.workshop-meta span {
  font-size: 13px;
  color: #444444;
}

.workshop-meta i {
  color: #ffc451;
  margin-right: 5px;
}

.register-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ffc451, #ffb020);
  color: #151515;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  text-align: center;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 196, 81, 0.4);
  color: #151515;
}

/* Hackathons Section */
.hackathons-section {
  padding: 60px 0;
}

.hackathons-title {
  color: #ffffff;
}

.hackathons-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.hackathon-heading {
  color: #ffc451;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 28px;
}

.hackathon-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.hackathon-features {
  margin-top: 30px;
}

.hackathon-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hackathon-item i {
  font-size: 30px;
  color: #ffc451;
  margin-right: 15px;
  margin-top: 5px;
}

.hackathon-item h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.hackathon-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.hackathon-themes {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hackathon-themes h4 {
  color: #ffc451;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 22px;
}

.theme-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 3px solid #ffc451;
}

.theme-card:last-child {
  margin-bottom: 0;
}

.theme-card h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.theme-card h5 i {
  color: #ffc451;
  margin-right: 8px;
}

.theme-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Live Labs Section */
.labs-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.labs-title {
  color: #ffc451;
}

.labs-subtitle {
  font-size: 20px;
  color: #444444;
}

.lab-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 20px;
}

.lab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.2);
}

.lab-card h4 {
  color: #151515;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

.lab-card h4 i {
  color: #ffc451;
  margin-right: 10px;
}

.lab-card p {
  color: #444444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.lab-schedule {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.lab-schedule span {
  font-size: 14px;
  color: #444444;
}

.lab-schedule i {
  color: #ffc451;
  margin-right: 5px;
}

/* Why Join Section */
.why-join-section {
  padding: 60px 0;
  background: #fff;
}

.why-title {
  color: #ffc451;
}

.benefit-box {
  text-align: center;
  padding: 30px 20px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 196, 81, 0.2);
}

.benefit-box i {
  font-size: 40px;
  color: #ffc451;
  margin-bottom: 15px;
}

.benefit-box h5 {
  color: #151515;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-box p {
  color: #444444;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workshop-card {
    padding: 25px;
  }

  .workshop-badge {
    top: 15px;
    right: 15px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .workshop-icon {
    font-size: 40px;
  }

  .intro-text {
    font-size: 16px;
  }

  .hackathon-item {
    padding: 15px;
  }

  .hackathon-themes {
    padding: 20px;
    margin-top: 30px;
  }

  .lab-card {
    padding: 25px;
  }

  .hackathon-heading {
    font-size: 24px;
  }
}