/* Home Page Specific Styles */

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Welcome Header */
.welcome-header {
  text-align: center;
  padding: 2.5rem 1rem;
  margin-bottom: 2rem;
}

.welcome-title {
  font-size: 3rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #C8963E;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(200, 150, 62, 0.3);
  margin: 0;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #1F1F2E 0%, #2a2a3e 100%);
  color: #F5E6C3;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #C8963E;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #F5E6C3;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Intro Section */
.intro-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Kinesiology Section */
.kinesiology-section {
  background: linear-gradient(135deg, #f9f4e8 0%, #F5E6C3 100%);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 2px solid #C8963E;
}

.education-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.education-cta p {
  font-size: 1.2rem;
  color: #1F1F2E;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.education-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #1F1F2E;
  color: #C8963E;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: bold;
  border: 2px solid #C8963E;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.education-button:hover {
  background-color: #C8963E;
  color: #1F1F2E;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(200, 150, 62, 0.3);
}

.intro-content h2 {
  color: #1F1F2E;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro-content h3 {
  color: #C8963E;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.intro-content p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  text-align: left;
}

.intro-content ul {
  text-align: left;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1rem 0 1rem 2rem;
}

.intro-content ul li {
  margin-bottom: 0.8rem;
}

.intro-content strong {
  color: #1F1F2E;
}

/* Emotions Info Section */
.emotions-info-section {
  margin-bottom: 3rem;
}

.section-title {
  color: #1F1F2E;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.emotions-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.emotion-tile {
  background: #1F1F2E;
  color: #C8963E;
  padding: 2rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 2px solid transparent;
}

.emotion-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(200, 150, 62, 0.3);
  border-color: #C8963E;
}

.emotion-tile h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #C8963E;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1F1F2E 0%, #2a2a3e 100%);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.cta-section h2 {
  color: #C8963E;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #F5E6C3;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: #C8963E;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background-color: #b5802d;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(200, 150, 62, 0.4);
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: slideDown 0.3s ease;
}

.close-modal {
  color: #666;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
  color: #C8963E;
}

#modal-emotion-name {
  color: #1F1F2E;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

#modal-emotion-content {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

#modal-emotion-content h4 {
  color: #C8963E;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

#modal-emotion-content p {
  margin-bottom: 1rem;
}

#modal-emotion-content .healing-truth {
  background: #F5E6C3;
  padding: 1rem 1.5rem;
  border-left: 4px solid #C8963E;
  margin-top: 1.5rem;
  font-style: italic;
  border-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .intro-section {
    padding: 1.5rem;
  }

  .emotions-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .emotion-tile {
    padding: 1.5rem 0.8rem;
  }

  .modal-content {
    margin: 10% auto;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .emotions-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
