/* 73Log Website Styles */
/* Brand Colors (Solar Flare Theme):
   Sky Blue: #87CEEB - Primary
   Warm Orange: #F7A840 - Accent
   Deep Green: #216234 - Secondary
   Light Cream: #F9F2DC - Text on dark
*/
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #87CEEB 0%, #5BA3C6 100%);
  min-height: 100vh;
}

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

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

.card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero {
  background: white;
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-bottom: 30px;
  text-align: center;
}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 16px;
}

.logo-large {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  border-radius: 24px;
}

h1 {
  color: #216234;
  margin-bottom: 10px;
  font-size: 2.5em;
}

h1.hero-title {
  font-size: 3em;
}

.subtitle, .tagline {
  color: #666;
  font-size: 1.2em;
  margin-bottom: 30px;
}

h2 {
  color: #216234;
  margin: 30px 0 15px;
  font-size: 1.4em;
}

h2.section-title {
  font-size: 1.5em;
  border-bottom: 2px solid #E0F7FA;
  padding-bottom: 10px;
  margin: 40px 0 20px;
}

p { margin-bottom: 15px; }
ul, ol { margin: 15px 0 15px 30px; }
li { margin-bottom: 8px; }
a { color: #216234; }

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: left;
}

.feature {
  background: #E0F7FA;
  padding: 20px;
  border-radius: 12px;
}

.feature h3 {
  color: #216234;
  margin-bottom: 8px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
}

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

.btn-primary:hover { background: #184525; }

.btn-secondary {
  background: white;
  color: #216234;
  border: 2px solid #216234;
}

.btn-secondary:hover { background: #E0F7FA; }

/* Contact Box */
.contact-box {
  background: #E0F7FA;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.contact-box h3 {
  color: #216234;
  margin-bottom: 15px;
}

.email-link {
  display: inline-block;
  background: #216234;
  color: white !important;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

.email-link:hover { background: #184525; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 600; color: #333; margin-bottom: 10px; }

/* Screenshots Grid */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.screenshot-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.screenshot-grid img:hover {
  transform: scale(1.02);
}

.coming-soon {
  background: #E0F7FA;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: #666;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 30px;
  color: rgba(255,255,255,0.8);
}

.footer a { color: white; }

.footer-home {
  color: rgba(255,255,255,0.9);
  margin-top: 20px;
}
