/* ===== SCRAPE & PITCH - MAIN STYLESHEET ===== */

/* === RESET & BASE STYLES === */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 2rem;
  background: #fff;
  color: #111;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  color: #222;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
  color: #333;
}

/* === LINKS === */
a {
  color: #0070f3;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

/* === LISTS === */
ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
}

ul[style*="list-style: none"] {
  list-style: none;
  padding: 0;
}

/* === NAVIGATION === */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #555;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #333;
}

/* === HEADER === */
header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.hero {
  font-size: 1.2rem;
  color: #555;
  margin-top: 1rem;
  font-weight: 400;
}

/* === MAIN CONTENT SECTIONS === */
.teasers {
  margin-bottom: 3rem;
}

.teasers ul {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #0070f3;
}

.products {
  margin-bottom: 3rem;
}

.product-card {
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-card h3 {
  margin-top: 0;
  color: #222;
}

/* === BUTTONS === */
.button {
  display: inline-block;
  background: #0070f3;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  transition: background-color 0.2s ease;
}

.button:hover {
  background: #0056b3;
  text-decoration: none;
  color: white;
}

.button.secondary {
  background: #6c757d;
}

.button.secondary:hover {
  background: #545b62;
}

/* === BLOG SECTIONS === */
.blog-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e1e5e9;
}

.blog-section ul {
  display: grid;
  gap: 0.5rem;
}

.blog-section a {
  font-size: 1.1rem;
  font-weight: 500;
}

/* === BLOG POST STYLES === */
.desc {
  color: #444;
  font-size: 1rem;
  margin-top: 0.2rem;
  line-height: 1.5;
}

.cluster-blurb {
  font-size: 0.95rem;
  color: #333;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-style: italic;
}

/* === CODE ELEMENTS === */
code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
}

/* === FOOTER === */
footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: #666;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #333;
}

.footer-copy {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

/* === HORIZONTAL RULES === */
hr {
  border: none;
  height: 1px;
  background: #e1e5e9;
  margin: 2.5rem 0;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .button {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .product-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0.75rem;
  }
  
  h1 {
    font-size: 1.6rem;
  }
  
  .teasers ul {
    padding: 1rem;
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* === FORM STYLES === */
/* Newsletter signup styles removed - no email collection */

.form-group {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 1rem auto;
}

.form-group input[type="email"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: #0070f3;
  box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.1);
}

.form-group input.error {
  border-color: #dc3545;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
}

.privacy-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
}

/* === PRINT STYLES === */
@media print {
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .button {
    display: none;
  }
  
  /* Newsletter signup styles removed - no email collection */
  
  a {
    color: #000;
    text-decoration: underline;
  }
}
