/* Kimori Dojo Home Page Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 40px;
  color: white;
}

.hero-section h1 {
  font-size: 2.5em;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.hero-subtitle {
  display: block;
  font-size: 1.2em;
  margin: 0 0 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: block;
}

/* Button Styles */
.btn {
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 5px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: #667eea;
  color: white;
}

.btn-primary:hover {
  background: #5568d3;
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
}

.btn-accent {
  background: #764ba2;
  color: white;
}

.btn-accent:hover {
  background: #653b8a;
}

/* Hero Section CTA Button Override */
.hero-section .btn-primary {
  background: white;
  color: #667eea;
}

.hero-section .btn-primary:hover {
  background: #f0f0f0;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
  list-style: none;
  padding: 0;
}

.stats-grid li {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-size: 2.5em;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
  white-space: nowrap;
}

.stats-grid li:nth-child(2) strong {
  color: #764ba2;
}

.stats-grid li:nth-child(3) strong {
  color: #667eea;
}

/* Main Content Headings */
h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

/* Benefits Section */
.benefits-grid {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding-left: 40px;
  padding-right: 40px;
}

.benefits-grid li {
  padding: 0;
}

.benefits-grid strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #667eea;
}

.benefits-grid li:nth-child(2) strong,
.benefits-grid li:nth-child(4) strong,
.benefits-grid li:nth-child(6) strong {
  color: #764ba2;
}

.benefits-grid p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* CTA Buttons Section */
.cta-buttons {
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.cta-buttons li {
  margin: 0;
}

.cta-buttons a {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8em;
  }

  .hero-subtitle {
    font-size: 1em;
  }

  h2 {
    font-size: 1.5em;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
