/**
 * Filename: public/stylesheets/index-clearmybooks.css
 * Revision: 2025-12-18-01
 * Description: index-clearmybooks page styles
 */

.landing-page {
  font-family: 'Inter', sans-serif;
  color: #333;
}

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

/* Header */
.landing-header {
  padding: 20px 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.landing-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #0f766e;
}

.landing-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.landing-nav a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

.landing-nav a:hover {
  color: #0f766e;
}

.landing-nav a.btn-primary {
  color: white;
}

.landing-nav a.btn-primary:hover {
  color: white;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #0f766e;
  color: white;
}

.btn-primary:hover {
  background: #0d5d57;
}

.btn-outline {
  background: transparent;
  border: 2px solid #0f766e;
  color: #0f766e;
}

.btn-outline:hover {
  background: #0f766e;
  color: white;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* Hero */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Features */
.features {
  padding: 100px 0;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #1e293b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: #0f766e;
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* CTA */
.cta {
  padding: 100px 0;
  background: #0f766e;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta .btn-primary {
  background: white;
  color: #0f766e;
}

.cta .btn-primary:hover {
  background: #f0fdfa;
}

/* Footer */
.landing-footer {
  padding: 40px 0;
  background: #1e293b;
  color: #94a3b8;
}

.landing-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-nav a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .landing-footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
