/* Chuyen Muc Cau Nguyen Page Styles */

/* Coming Soon Section */
.coming-soon-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background-image: url('assets/images/comingsoon.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.coming-soon-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  pointer-events: none;
}

.coming-soon-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.coming-soon-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-title {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.coming-soon-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5a87a8;
  margin-bottom: 2.5rem;
}

.coming-soon-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 3rem;
}

.coming-soon-description p {
  margin-bottom: 1.5rem;
}

.coming-soon-description p:last-child {
  margin-bottom: 0;
}

.coming-soon-quote {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-left: 4px solid #5a87a8;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}

.coming-soon-quote blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.coming-soon-quote blockquote p {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #2f4f6f;
  font-style: italic;
  margin-bottom: 1rem;
}

.coming-soon-quote blockquote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: #6b7280;
  font-weight: 600;
  margin-top: 1rem;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
  background: #ffffff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-article {
  background: white;
}

.article-section {
  margin-bottom: 3rem;
}

.article-section:last-child {
  margin-bottom: 0;
}

.article-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2f4f6f;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #5a87a8;
}

.article-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
}

.article-text p {
  margin-bottom: 1.5rem;
}

.article-text p:last-child {
  margin-bottom: 0;
}

/* Activity Cards */
.activity-card {
  background: #f8fafc;
  border-left: 4px solid #5a87a8;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.activity-card:hover {
  background: #f1f5f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.activity-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2f4f6f;
  margin-bottom: 0.75rem;
}

.activity-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #374151;
  line-height: 1.6;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5a87a8;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Prayer Box */
.prayer-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid #5a87a8;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.prayer-title {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2f4f6f;
  margin-bottom: 1.5rem;
  text-align: center;
}

.prayer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  font-style: italic;
}

.prayer-text p {
  margin-bottom: 1rem;
}

.prayer-text p:last-child {
  margin-bottom: 0;
}

/* Related Activities Section */
.related-activities {
  padding: 4rem 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.related-activities h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2f4f6f;
  margin-bottom: 2rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.related-card {
  display: block;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.related-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: #5a87a8;
}

.related-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.related-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2f4f6f;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 900px) {
  .coming-soon-section {
    padding: 4rem 0;
    min-height: 60vh;
  }

  .coming-soon-icon {
    font-size: 4rem;
  }

  .coming-soon-title {
    font-size: 2.5rem;
  }

  .coming-soon-subtitle {
    font-size: 1.3rem;
  }

  .coming-soon-description {
    font-size: 1rem;
  }

  .coming-soon-quote {
    padding: 2rem;
  }

  .coming-soon-quote blockquote p {
    font-size: 1.1rem;
  }

  .article-section h2 {
    font-size: 1.6rem;
  }

  .article-text {
    font-size: 1rem;
  }

  .related-activities {
    padding: 3rem 0;
  }

  .related-activities h2 {
    font-size: 1.6rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .related-card {
    padding: 1.5rem;
  }

  .prayer-box {
    padding: 1.5rem;
  }
}

@media (max-width: 720px) {
  .coming-soon-section {
    padding: 3rem 0;
    min-height: 50vh;
  }

  .coming-soon-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .coming-soon-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .coming-soon-quote {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .coming-soon-quote blockquote p {
    font-size: 1rem;
  }

  .coming-soon-quote blockquote cite {
    font-size: 0.9rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  .article-section h2 {
    font-size: 1.4rem;
  }

  .prayer-box {
    padding: 1.5rem;
  }

  .prayer-title {
    font-size: 1.2rem;
  }

  .related-activities {
    padding: 2.5rem 0;
  }

  .related-activities h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .related-grid {
    gap: 1.25rem;
  }

  .related-card {
    padding: 1.25rem;
  }

  .related-icon {
    font-size: 2rem;
  }

  .related-card h3 {
    font-size: 1.1rem;
  }

  .related-card p {
    font-size: 0.9rem;
  }
}

