/* ===== prompts.cleanpdf.net – Main Stylesheet ===== */
/* Based on main site styles, stripped of all tool-specific rules */

:root {
  --primary: #e53e3e;
  --primary-dark: #c53030;
  --primary-light: #feb2b2;
  --secondary: #4a5568;
  --success: #38a169;
  --error: #e53e3e;
  --gray-50: #f9fafb;
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #2d3748;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;

  --nav-blue-light: #bee3f8;
  --nav-blue-medium: #90cdf4;
  --nav-blue-dark: #4299e1;
  --nav-blue-darker: #3182ce;
  --nav-text-light: #2c5282;
  --nav-text-dark: #1a365d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--gray-50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main {
  flex: 1;
  padding: 2rem 0;
}

/* Header – exactly as main site (already in header.html) */
/* Footer – exactly as main site (already in footer.html) */

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #fef5e7 0%, #feebea 100%);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Prompts Grid */
.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.prompt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.prompt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.prompt-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  background: var(--primary);
}

.prompt-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.prompt-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.prompt-cta {
  color: var(--primary);
  font-weight: 600;
  margin-top: auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 3rem 0 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-header {
    display: none !important;
  }
  .mobile-header {
    display: block;
  }
  body {
    padding-top: 60px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-section:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-subsection {
    margin-bottom: 1rem;
  }
  .prompts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dropdown.mega:hover .mega-menu,
  .dropdown:hover .dropdown-content {
    display: none !important;
  }
  .desktop-header .dropdown {
    pointer-events: none;
  }
  .mobile-header {
    pointer-events: auto;
  }
  #mobileNav a,
  .m-acc {
    padding: 16px;
    min-height: 52px;
    font-size: 17px;
  }
  .m-panel a {
    padding-left: 32px;
  }
}