/* =========================================
   HOME PAGE — ISLAMIC AESTHETIC
   Calm • Trustworthy • Premium • Minimal
========================================= */

/* Page spacing */
main {
  padding-top: 36px;
}

/* -------------------------------
   Hero Section
-------------------------------- */
.home-hero {
  text-align: center;
  margin-bottom: 48px;
}

.home-hero h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.home-hero p {
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 16px;
  color: var(--muted);
}

/* -------------------------------
   Primary Actions
-------------------------------- */
.home-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-actions a,
.home-actions button {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.home-actions a:hover,
.home-actions button:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

/* -------------------------------
   Features Section
-------------------------------- */
.home-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 48px;
}

/* -------------------------------
   Feature Card
-------------------------------- */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
}

/* -------------------------------
   Quote Section
-------------------------------- */
.home-quote {
  margin-top: 60px;
  padding: 28px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.home-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text);
}

.home-quote span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* -------------------------------
   Mobile Adjustments
-------------------------------- */
@media (max-width: 640px) {
  .home-hero h1 {
    font-size: 28px;
  }

  .home-hero p {
    font-size: 15px;
  }
}
