/* Workshop Hero Section */
.workshop-hero {
  position: relative;
  padding: 180px 0 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.workshop-hero .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.workshop-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.workshop-hero .container {
  position: relative;
  z-index: 3;
}

.workshop-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.workshop-hero .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.workshop-dates {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Workshop Tracks */
.track-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.track-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.track-card:hover .track-image img {
  transform: scale(1.1);
}

.track-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}

.track-content {
  padding: 2rem;
  position: relative;
}

.track-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.track-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #212529;
}

.track-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.track-features li {
  margin-bottom: 0.75rem;
  color: #6c757d;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.track-features li:before {
  content: "✓";
  color: #0d6efd;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Workshop Schedule */
.schedule-tabs {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.schedule-tabs .nav-tabs {
  border-bottom: none;
  background: #f8f9fa;
  padding: 1rem;
}

.schedule-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.schedule-tabs .nav-link:hover {
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.schedule-tabs .nav-link.active {
  background: #0d6efd;
  color: #fff;
}

.schedule-item {
  display: flex;
  padding: 1.5rem;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.3s ease;
}

.schedule-item:hover {
  background-color: #f8f9fa;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item .time {
  width: 150px;
  font-weight: 600;
  color: #0d6efd;
}

.schedule-item .session h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #212529;
}

.schedule-item .session p {
  color: #6c757d;
  margin-bottom: 0;
}

/* Registration Form */
.registration-form {
  background: #fff;
  padding: 4rem 0;
}

.registration-form .form-label {
  font-weight: 500;
  color: #212529;
}

.registration-form .form-control,
.registration-form .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.registration-form .form-control:focus,
.registration-form .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Location Section */
.location-info {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.location-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #212529;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.location-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.location-features .feature:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.location-features .feature i {
  color: #0d6efd;
  font-size: 1.25rem;
}

.location-map {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .workshop-hero {
    padding: 150px 0 80px;
  }
  
  .workshop-hero h1 {
    font-size: 2.5rem;
  }
  
  .schedule-item {
    flex-direction: column;
  }
  
  .schedule-item .time {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .workshop-hero h1 {
    font-size: 2rem;
  }
  
  .track-card {
    margin-bottom: 1.5rem;
  }
  
  .location-info {
    margin-bottom: 1.5rem;
  }
} 