/*
 * Stylesheet for the Cheqin platform demonstration.
 * The entire application uses the ABeeZee font as requested.
 */

/* Base typography and color palette */
body {
  font-family: 'ABeeZee', sans-serif;
  color: #333;
  background-color: #faf8f5;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  margin-top: 0;
  color: #2c3e50;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  max-width: 800px;
}

/* Container utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

/* Navigation bar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #e07a5f;
}

.logo-icon {
  margin-right: 0.35rem;
  font-size: 1.2em;
  color: #81a4cd;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #e07a5f;
}

/* Hero section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0 8rem;
  color: #ffffff;
  background-color: #335c81;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  z-index: 1;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3rem;
  color: #faf8f5;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #e07a5f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #cf654a;
}

/* Section styles */
section {
  padding: 4rem 0;
}

.about-section {
  background-color: #f2efea;
  color: #444;
}

.features-section {
  background-color: #ffffff;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #faf8f5;
  border: 1px solid #e7e4e0;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-card ul {
  padding-left: 1.2rem;
}

.feature-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 0.5rem;
}

.feature-card ul li::before {
  content: '›';
  position: absolute;
  left: -0.5rem;
  color: #e07a5f;
  font-weight: bold;
}

/* Pricing section */
.pricing-section {
  background-color: #f2efea;
  color: #444;
  text-align: center;
}

.pricing-note {
  margin-bottom: 2rem;
  font-style: italic;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e7e4e0;
  border-radius: 8px;
  padding: 2rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  color: #335c81;
}

.pricing-card .price {
  font-size: 1.5rem;
  color: #e07a5f;
  margin: 0.25rem 0 1rem;
}

.pricing-card .description {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #555;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #81a4cd;
}

/* BI section */
.bi-section {
  background-color: #ffffff;
  color: #444;
}

.bi-section p {
  max-width: 800px;
}

/* Rewards section */
.rewards-section {
  background-color: #f2efea;
  color: #444;
}

/* Roadmap section */
.roadmap-section {
  background-color: #ffffff;
  color: #444;
}

.roadmap-section ol {
  max-width: 800px;
  margin: 1.5rem auto;
  padding-left: 1.5rem;
}

.roadmap-section ol li {
  margin-bottom: 0.5rem;
}

/* Contact section */
.contact-section {
  background-color: #f2efea;
  color: #444;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  cursor: pointer;
}

/* Footer */
.footer {
  background-color: #335c81;
  color: #faf8f5;
  padding: 1rem 0;
  text-align: center;
}

.footer-content p {
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hidden for now; could add a mobile menu in future */
  }
  .logo {
    margin-left: 1rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}