/* Custom styles for training.html */

/* Hero Section Enhancements */
.hero {
  background: linear-gradient(135deg, #fff 70%, #f5f5f5 100%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border-radius: 0 0 24px 24px;
  margin-bottom: 3rem;
  padding: 3rem 0;
}
.hero .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #444;
  line-height: 1.5;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Main Content Improvements */
main {
  line-height: 1.7;
}

main p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.7;
}

/* Benefits Grid - Enhanced */
.benefits-grid {
  margin: 2.5rem 0;
}

.grid.grid-2 > div {
  background: linear-gradient(145deg, #fafafa, #f5f5f5);
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.grid.grid-2 > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.grid.grid-2 > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.grid.grid-2 > div h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.grid.grid-2 > div p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Call-to-action button - Enhanced */
.btn-black {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  background: #1a1a1a;
  color: white;
  border: none;
  cursor: pointer;
}

.btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  background: #333;
}

/* Schedule Section - Enhanced */
.schedule-section {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  border: 1px solid #e9ecef;
}

.schedule-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #1a1a1a;
  position: relative;
}

.schedule-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e74c3c, #f39c12);
  border-radius: 2px;
}

.schedule-grid {
  margin-top: 2rem;
}

.schedule-grid .grid.grid-2 > div {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e8e8e8;
}

.schedule-grid h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e74c3c;
  display: inline-block;
}

.schedule-grid ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.schedule-grid ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.schedule-grid ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.schedule-grid ul li strong {
  color: #e74c3c;
  font-weight: 600;
}

/* Note box - Enhanced */
.training-note, .mt-2[style] {
  background: linear-gradient(145deg, #fff3cd, #ffeaa7) !important;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #ffeaa7;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}

.training-note::before, .mt-2[style]::before {
  content: 'ℹ️';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.2rem;
}

.training-note p, .mt-2[style] p {
  margin: 0;
  color: #856404;
  font-weight: 500;
  padding-left: 2rem;
}

/* Section spacing improvements */
section {
  margin-bottom: 3rem;
}

section:last-child {
  margin-bottom: 0;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .schedule-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .schedule-section h2 {
    font-size: 1.6rem;
  }
  
  .grid.grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .grid.grid-2 > div {
    padding: 1.5rem 1rem;
  }
  
  .schedule-grid .grid.grid-2 > div {
    padding: 1.5rem;
  }
  
  main p {
    font-size: 1rem;
  }
  
  .btn-black {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .schedule-section {
    padding: 1rem;
  }
  
  .schedule-section h2 {
    font-size: 1.4rem;
  }
  
  .grid.grid-2 > div {
    padding: 1.2rem 0.8rem;
  }
  
  .schedule-grid .grid.grid-2 > div {
    padding: 1.2rem;
  }
}
