/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image {
  margin-bottom: 2rem;
}

.og-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hero-description {
  text-align: center;
  width: 100%;
  font-size: 1.125rem;
  color: #374151;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}



/* Content Sections */
.content-section {
  margin-bottom: 4rem;
}

/* Methodology List */
.methodology-list {
  margin-top: 2rem;
}

.methodology-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.methodology-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.methodology-item h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #1a1a1a;
}

.methodology-item h3 i {
  color: #3b82f6;
  font-size: 1.125rem;
  width: 1.5rem;
  text-align: center;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.methodology-item p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  padding-left: 2.25rem;
}

/* Prompt Links */
.prompt-links {
  margin-top: 1.5rem;
}

.prompt-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.prompt-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
  transform: translateY(-1px);
}

.prompt-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: #1a1a1a;
}

.prompt-card:hover h3 {
  color: #3b82f6;
}

.prompt-card p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* External Links */
.external-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.external-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.external-link:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.external-link i {
  font-size: 1.25rem;
  color: #3b82f6;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Quote Section */
.quote-section {
  margin-top: 4rem;
  text-align: center;
}

.quote-section blockquote {
  margin: 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-left: 4px solid #3b82f6;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.quote-section blockquote p {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  color: #1a1a1a;
  font-weight: 500;
  font-style: italic;
}

.quote-section blockquote footer {
  margin: 0;
  font-style: normal;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Mobile Responsive for Home */
@media (max-width: 768px) {
  .og-image {
    max-height: 200px;
  }
  

  
  .methodology-item {
    padding: 1rem;
  }
  
  .methodology-item h3 {
    font-size: 1.125rem;
  }
  
  .prompt-card {
    padding: 1rem;
  }
  
  .external-link {
    padding: 0.75rem;
  }
  
  .quote-section blockquote {
    padding: 1.5rem;
  }
  
  .quote-section blockquote p {
    font-size: 1.125rem;
  }
} 