/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f8f6ff 0%, #ffffff 50%, #f0f7ff 100%);
  min-height: 100vh;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #240c7e 0%, #4a2c9a 50%, #6b4cb8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
}

/* ===== NAVIGATION ===== */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

nav a:hover {
  background: rgba(255,255,255,0.15);
  color: white;
  border-color: rgba(255,255,255,0.2);
}

nav a.active {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* ===== HERO SECTION ===== */
.hero-section {
  text-align: center;
  padding: 3rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-meta svg {
  width: 16px;
  height: 16px;
}

/* ===== MAIN CONTENT ===== */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.content-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(36, 12, 126, 0.08), 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid rgba(36, 12, 126, 0.05);
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f8f6ff 0%, #efe8ff 100%);
  color: #240c7e;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(36, 12, 126, 0.1);
}

.last-updated svg {
  width: 16px;
  height: 16px;
}

/* ===== TYPOGRAPHY ===== */
h2 {
  color: #240c7e;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #efe8ff;
  position: relative;
}

h2:first-of-type {
  margin-top: 0;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #240c7e, #6b4cb8);
}

p {
  margin-bottom: 1rem;
  color: #4a4a4a;
}

ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
  color: #4a4a4a;
}

li strong {
  color: #240c7e;
}

a {
  color: #4a2c9a;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 44, 154, 0.3);
  transition: all 0.2s ease;
}

a:hover {
  color: #240c7e;
  border-bottom-color: #240c7e;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a0a5c 0%, #240c7e 50%, #2e1490 100%);
  color: white;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b4cb8, #9b7ed8, #6b4cb8);
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, #f8f6ff 0%, #ffffff 50%, #f0f7ff 100%);
  clip-path: ellipse(70% 100% at 50% 0%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #9b7ed8, transparent);
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.footer-section ul a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-section ul a svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.footer-app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.footer-app-badge:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.footer-app-badge svg {
  width: 24px;
  height: 24px;
}

.footer-app-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.footer-copyright a {
  color: rgba(255,255,255,0.8);
  border: none;
}

.footer-copyright a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .nav-bar {
    justify-content: center;
    text-align: center;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  nav ul {
    justify-content: center;
    width: 100%;
  }

  .hero-section {
    padding: 2rem 1rem 3rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .content-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .footer-container {
    padding: 4rem 1.5rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
  }

  nav a {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  h2 {
    font-size: 1.25rem;
  }
}

/* ===== HOME PAGE STYLES ===== */

/* Hero Enhancements */
.hero-tagline {
  font-size: 1.25rem;
  color: rgb(212, 212, 212);
  margin-bottom: 2rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: #240c7e;
}

.btn-primary:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: #240c7e;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-light:hover {
  background: #f8f6ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-coming-soon {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px dashed rgba(255,255,255,0.4);
  cursor: default;
  position: relative;
}

.btn-coming-soon::after {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-coming-soon-light {
  background: rgba(36, 12, 126, 0.08);
  color: rgba(36, 12, 126, 0.5);
  border: 1px dashed rgba(36, 12, 126, 0.3);
  cursor: default;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Home Main */
.home-main {
  max-width: 100%;
  padding: 0;
}

/* Features Section */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #240c7e;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.section-header h2::after {
  display: none;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(36, 12, 126, 0.06);
  border: 1px solid rgba(36, 12, 126, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(36, 12, 126, 0.12);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #240c7e;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* About Section */
.about-section {
  background: white;
  padding: 5rem 2rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #240c7e;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.about-text h2::after {
  display: none;
}

.about-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #240c7e;
}

.stat-label {
  font-size: 0.9rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Phone Mockup */
.about-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: linear-gradient(135deg, #240c7e 0%, #4a2c9a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(36, 12, 126, 0.3);
}

.phone-screen {
  background: #faf8ff;
  border-radius: 30px;
  padding: 2rem 1.5rem;
  min-height: 400px;
}

.mock-header {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #240c7e;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #efe8ff;
}

.mock-content {
  text-align: center;
}

.mock-verse {
  font-size: 1rem;
  color: #444;
  line-height: 2;
  margin: 0;
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #240c7e 0%, #4a2c9a 50%, #6b4cb8 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}

.cta-content h2::after {
  display: none;
}

.cta-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive for Home Page */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
  }

  .phone-screen {
    min-height: 350px;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 600px) {
  .features-section,
  .about-section,
  .cta-section {
    padding: 3rem 1rem;
  }

  .section-header h2,
  .about-text h2,
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
