/* ============================
   Un Thérapeute Musulman
   Landing Page — Styles
   ============================ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Questrial', 'Segoe UI', Arial, sans-serif;
  background-color: #FFFCF8;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 720px;
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* ---- Main Title ---- */
.main-title {
  font-family: 'Questrial', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* ---- Chevron ---- */
.chevron-down {
  color: #888;
  margin-bottom: 32px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Cards ---- */
.card {
  width: 100%;
  max-width: 600px;
  border: 2px solid #FF3B7A;
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(255, 59, 122, 0.12);
}

/* ---- Card Image ---- */
.card-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Card Text ---- */
.card-text {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 480px;
}

/* ---- Yellow Highlight ---- */
.highlight {
  background-color: #FFF200;
  padding: 1px 4px;
  font-weight: 700;
}

/* ---- CTA Button ---- */
.cta-button {
  display: inline-block;
  background-color: #FF3B7A;
  color: #fff;
  font-family: 'Questrial', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-button:hover {
  background-color: #E8326D;
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

/* ---- Footer ---- */
.footer {
  width: 100%;
  padding: 24px 20px;
  text-align: center;
}

.footer-link {
  font-size: 0.85rem;
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link:hover {
  color: #000;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .container {
    padding: 40px 16px 32px;
  }

  .card {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .card-image {
    width: 80px;
    height: 80px;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
