/* ===============================================
   PAGE-SPECIFIC STYLES
   =============================================== */

/* About Page Styles */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.about-hero-logo {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.about-logo-image {
  height: 6rem;
  width: auto;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
}

.about-section {
  margin-bottom: 3rem;
}

.about-section h2 {
  color: var(--forest-green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sepia-light);
}

.about-section p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Tag explanations */
.tag-explanations {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tag-explanation {
  padding: 1rem;
  background: var(--warm-white);
  border: 1px solid var(--sepia-light);
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--forest-green);
}

.tag-explanation .tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.tag-explanation p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--sepia-light) 0%, var(--warm-white) 100%);
  padding: 2rem;
  border-radius: var(--radius-large);
  border: 2px solid var(--forest-green-light);
  margin-top: 2rem;
}

.cta-content {
  display: grid;
  gap: 2rem;
  margin: 1.5rem 0;
}

.cta-text h3 {
  color: var(--forest-green);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-medium);
  transition: all 0.2s ease;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sepia-dark);
}

/* Publisher Page Styles */
.publisher-page {
  max-width: 1200px;
  margin: 0 auto;
}

.publisher-header {
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.publisher-logo {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: contain;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.publisher-avatar {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 2em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.publisher-header h1 {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 10px;
}

.publisher-meta {
  font-size: 1.2em;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.publisher-bio {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.publisher-bio p {
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.specialties {
  margin-bottom: 15px;
}

.specialty-tag {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  margin: 2px;
}

.publisher-founded {
  margin-bottom: 20px;
  color: #7f8c8d;
}

.publisher-links {
  margin-top: 20px;
  text-align: center;
}

.publisher-link {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.publisher-link.website { background: #34495e; color: white; }
.publisher-link.itch { background: #fa5c5c; color: white; }
.publisher-link.dtrpg { background: #e74c3c; color: white; }
.publisher-link.twitter { background: #1da1f2; color: white; }

.publisher-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

/* About Page Responsive */
@media (min-width: 768px) {
  .cta-content {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .tag-explanations {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-content {
    padding: 0.5rem;
  }
  
  .about-logo-image {
    height: 4rem;
  }
  
  .about-hero-logo {
    margin-bottom: 1.5rem;
  }
  
  .about-section h2 {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    flex: none;
  }
}
