/* Index Page Styles - Landing Page */

/* Platform Logo */
.platform-logo {
  position: relative;
  display: inline-block;
}

.platform-image {
  max-width: 200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.platform-image:hover {
  transform: scale(1.05);
}

/* Platform Title */
.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.platform-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background: linear-gradient(135deg, #fff6fb 0%, #ffe3ea 100%);
  border: 1px solid #ffd3dc;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(33, 37, 41, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(33, 37, 41, 0.15);
  border-color: #c2185b;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card h5 {
  color: #c2185b;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Quran Verse Styling */
.quran-text {
  text-align: center;
  margin-bottom: 3rem;
}

.quran-verse {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.quran-verse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c2185b, #e91e63, #ff4081);
}

.bismillah-icon {
  font-size: 2.5rem;
  color: #c2185b;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.quran-verse-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-family: 'Arial', sans-serif;
}

.quran-source {
  color: #666;
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

/* Login Button */
.btn-login {
  background: linear-gradient(135deg, #c2185b, #e91e63);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(194, 24, 91, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-login:hover::before {
  left: 100%;
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(194, 24, 91, 0.4);
  text-decoration: none;
  color: white;
}

/* Welcome Box */
.welcome-box {
  background: linear-gradient(135deg, #fff5ef 0%, #ffd9c9 100%);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(255, 192, 203, 0.25);
  border: 2px solid #ffd3dc;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.welcome-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .platform-title {
    font-size: 2rem;
  }

  .platform-subtitle {
    font-size: 1rem;
  }

  .quran-verse-text {
    font-size: 1.4rem;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .welcome-box {
    padding: 30px 20px;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .platform-title {
    font-size: 1.8rem;
  }

  .quran-verse {
    padding: 20px;
  }

  .quran-verse-text {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 15px;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .btn-login {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .welcome-box {
    margin-top: 1.5rem;
  }
}
