/* index.html styles — Layout C, minimal editorial */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #252a53;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}

.main-content {
  padding: 140px 0px 40px 0px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  gap: 2.5rem;
  padding: 0 2rem;
}

/* ── Intro section ── */

.homepage-intro {
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.6;
}

.welcome-title {
  position: relative;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  color: #252a53;
  line-height: 1.25;
  font-family: 'Lora', serif;
  font-weight: 700;
}

.homepage-intro .dashboard-name {
  font-weight: 600;
}

.content-section {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #4a4f6e;
  font-family: 'Montserrat', sans-serif;
}

.content-section p {
  margin: 0;
  font-weight: 400;
}

.bullet-point {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
  color: #4a4f6e;
}

.bullet-point::before {
  content: '–';
  color: #ac5737;
  font-weight: 600;
  flex-shrink: 0;
}

.section-intro {
  font-weight: 500;
  color: #252a53;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.cta-text {
  margin-top: 1rem;
}

/* ── Action buttons row ── */

.homepage-actions-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.action-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  background: white;
  color: #252a53;
  border: 1px solid #e2e6f0;
  border-left: 4px solid #ac5737;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-card .svg-icon {
  color: #ac5737;
  transition: transform 0.2s ease;
}

.action-card:hover {
  background: rgba(172, 87, 55, 0.06);
  border-color: rgba(172, 87, 55, 0.2);
  border-left-color: #ac5737;
}

.action-card:hover .svg-icon {
  transform: translateX(3px);
}

.svg-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

/* ── Tutorial link ── */

.tutorial-link {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  margin-top: -1.5rem;
  font-size: 0.82rem;
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tutorial-link:hover {
  color: #ac5737;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .main-content {
    padding: 7rem 0.5rem 1rem 0.5rem;
  }

  .container {
    gap: 2rem;
    padding: 0 1.2rem;
  }

  .welcome-title {
    font-size: 1.6rem;
  }

  .homepage-actions-row {
    flex-direction: column;
  }

  .action-card {
    font-size: 0.85rem;
    padding: 1.1rem 1.2rem;
  }
}

@media (min-width: 2400px) {
  .homepage-intro {
    font-size: 1.05rem;
  }

  .welcome-title {
    font-size: 2.6rem;
  }

  .action-card {
    font-size: 1.05rem;
  }
}
