/* ============================================
   Peptide Jesus - Styles
   ============================================ */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0e1a;
  color: #cbd5e1;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  line-height: 1.2;
}

a {
  color: #d4a843;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: #e5b954;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: #d4a843;
  color: #0a0e1a;
}

.btn-primary:hover {
  background-color: #e5b954;
  color: #0a0e1a;
  transform: translateY(-1px);
}

/* Cards */
.card {
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4a843;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 36px;
  width: auto;
}

.nav-logo:hover {
  color: #e5b954;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d4a843;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(180deg, rgba(10, 14, 26, 0.95) 0%, #0a0e1a 100%);
}

/* Inner page hero - shorter */
.hero-inner {
  min-height: auto;
  padding: 120px 20px 50px;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #94a3b8;
}

.hero .btn {
  font-size: 1.05rem;
  padding: 14px 36px;
}

/* ============================================
   Featured Guides
   ============================================ */
.featured-guides {
  padding: 80px 0;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guides-grid .card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.guides-grid .card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.guides-grid .card a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   Trust / Value Props
   ============================================ */
.trust-section {
  padding: 80px 0;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item {
  padding: 20px;
}

.trust-item .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 0.95rem;
  color: #94a3b8;
}

/* ============================================
   Latest Articles
   ============================================ */
.latest-articles {
  padding: 80px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.articles-grid .card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.articles-grid .card p {
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.articles-grid .card .meta {
  font-size: 0.8rem;
  color: #64748b;
}

/* ============================================
   Email Signup
   ============================================ */
.email-signup {
  padding: 80px 0;
  background-color: #1a1f35;
  text-align: center;
}

.email-signup p {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1rem;
  color: #94a3b8;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background-color: #111827;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.signup-form input[type="email"]::placeholder {
  color: #64748b;
}

.signup-form input[type="email"]:focus {
  border-color: #d4a843;
}

.signup-form .btn-primary {
  white-space: nowrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 48px 0 32px;
  background-color: #070a14;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #d4a843;
}

.footer .disclaimer {
  font-size: 0.75rem;
  color: #475569;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.5;
}

.footer .copyright {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 16px;
}

/* ============================================
   About Page
   ============================================ */
.about-mission,
.about-approach,
.about-transparency {
  padding: 60px 0;
}

.about-mission {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-approach {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.transparency-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.transparency-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.transparency-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.transparency-list li {
  color: #cbd5e1;
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.transparency-list li::before {
  content: "\2713";
  color: #d4a843;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.disclosure-box {
  background-color: #111827;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 8px;
  padding: 24px;
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.disclosure-box h3 {
  color: #d4a843;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.disclosure-box p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   Responsive - Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: #111827;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  }

  .nav-menu a {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .guides-grid,
  .trust-grid,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .signup-form {
    flex-direction: column;
  }

  .signup-form input[type="email"],
  .signup-form .btn-primary {
    width: 100%;
  }
}

/* ============================================
   Responsive - Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: 80px 16px 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .featured-guides,
  .trust-section,
  .latest-articles,
  .email-signup {
    padding: 60px 0;
  }

  .card {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   Shared Components
   ============================================ */

/* Card Badges */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d4a843;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Card Links */
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Section Subtitles */
.section-subtitle {
  text-align: center;
  color: #94a3b8;
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* Active Nav Link */
.nav-menu a.active {
  color: #d4a843;
}

/* Scrolled Nav */
.navbar.scrolled {
  background-color: rgba(10, 14, 26, 0.98);
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Signup Section */
.signup-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.signup-subtitle {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #94a3b8;
}

.signup-disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 28px;
}

/* ============================================
   Guide Article Page
   ============================================ */
.guide-article {
  padding-top: 90px;
}

.article-header {
  padding: 40px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.article-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-meta {
  color: #64748b;
  font-size: 0.9rem;
}

.article-meta-separator {
  margin: 0 8px;
}

.article-body {
  max-width: 800px;
  padding-bottom: 60px;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.article-body h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-body p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.article-body ul,
.article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #64748b;
}

.breadcrumb a {
  color: #94a3b8;
}

.breadcrumb [aria-current="page"] {
  color: #d4a843;
}

/* Table of Contents */
.toc {
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.toc-title {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.toc-list {
  padding-left: 20px;
}

.toc-list li {
  margin-bottom: 6px;
}

.toc-list a {
  font-size: 0.95rem;
  color: #94a3b8;
}

.toc-list a:hover {
  color: #d4a843;
}

/* Vendor Cards */
.vendor-card {
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.vendor-card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.vendor-card-highlight {
  color: #d4a843;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.vendor-cta {
  margin-top: 16px;
}

/* FAQ */
.faq-item {
  background-color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 0;
}

.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  margin-right: 12px;
  color: #d4a843;
  font-weight: 700;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item p {
  padding: 0 20px 16px;
  line-height: 1.6;
}

/* Disclaimer Box */
.disclaimer-box {
  background-color: #1a1f35;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  padding: 28px;
  margin-top: 48px;
}

.disclaimer-box h2 {
  font-size: 1.2rem;
  color: #d4a843;
  margin-bottom: 12px;
  border: none;
  padding-top: 0;
  margin-top: 0;
}

/* Related Guides */
.related-guides {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-guides h2 {
  border: none;
  padding-top: 0;
}

.related-guides .guides-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ============================================
   About Page
   ============================================ */
.about-mission,
.about-approach,
.about-transparency,
.about-disclosure {
  padding: 60px 0;
}

.mission-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.mission-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.transparency-content {
  max-width: 720px;
  margin: 0 auto;
}

.transparency-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.transparency-list {
  padding-left: 24px;
  margin-top: 12px;
}

.transparency-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.disclosure-box {
  background-color: #1a1f35;
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 8px;
  padding: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.disclosure-title {
  font-size: 1.15rem;
  color: #d4a843;
  margin-bottom: 12px;
}

.disclosure-text {
  line-height: 1.7;
}

/* ============================================
   Blog Listing Page
   ============================================ */
.blog-listing {
  padding: 60px 0 80px;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid .card .meta {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

/* ============================================
   Responsive - Inner Pages
   ============================================ */
@media (max-width: 768px) {
  .article-title {
    font-size: 1.8rem;
  }

  .related-guides .guides-grid {
    grid-template-columns: 1fr;
  }

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

  .mission-content,
  .transparency-content,
  .disclosure-box {
    text-align: left;
  }
}
