html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Coming Soon Page Styles */
:root {
  --primary-color: #8b5cf6;
  --secondary-color: #ec4899;
  --accent-color: #06b6d4;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
}

.coming-soon-container {
  min-height: calc(100vh - 60px - 120px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.coming-soon-content {
  max-width: 900px;
  width: 100%;
}

.hero-section {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease;
}

.hero-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-logo {
    max-width: 120px;
  }
}

.mission-section {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.mission-statement {
  font-size: 1.3rem;
  color: white;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

.welcome-section {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.welcome-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0;
}

.welcome-section p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.welcome-section p:last-child {
  margin-bottom: 0;
}

.cta-text {
  color: var(--secondary-color);
  font-size: 1.1rem !important;
  margin-top: 20px;
}

.donation-section {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.4s both;
  text-align: center;
}

.donation-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.donation-section > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

#paypal-container-V8H6G4Y3QZX6Q {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

#paypal-container-V8H6G4Y3QZX6Q > div {
  width: 100%;
  max-width: 400px;
}

.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.feature-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-card h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.signup-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.signup-section h2 {
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.signup-section > p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.email-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-form input {
  flex: 1;
  min-width: 250px;
  padding: 12px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.email-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.email-form button {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.email-form button:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.signup-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.social-section {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.social-section > p {
  color: white;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: white;
  color: var(--primary-color);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .coming-soon-container {
    padding: 20px;
  }

  .signup-section {
    padding: 30px 20px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input,
  .email-form button {
    width: 100%;
  }

  .welcome-section {
    padding: 25px 20px;
  }

  .welcome-section h2 {
    font-size: 1.5rem;
  }

  .welcome-section p {
    font-size: 1rem;
  }
}

/* Privacy Policy Page Styles */
.privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text-dark);
  padding: 20px 0;
}

.privacy-policy h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 15px;
}

.privacy-policy .last-updated {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.privacy-policy section {
  margin-bottom: 40px;
  padding: 25px 20px;
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.privacy-policy section:nth-child(odd) {
  background: white;
  border-left: 4px solid var(--secondary-color);
}

.privacy-policy h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 15px;
}

.privacy-policy section:nth-child(odd) h2 {
  color: var(--secondary-color);
}

.privacy-policy h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy-policy p {
  margin-bottom: 15px;
  text-align: justify;
}

.privacy-policy ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.privacy-policy li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.privacy-policy li strong {
  color: var(--primary-color);
}

.privacy-policy a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-policy a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.contact-info {
  background: rgba(139, 92, 246, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-info p {
  margin-bottom: 0;
}

.footer-note {
  margin-top: 40px;
  padding: 20px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  font-size: 0.9rem;
  color: var(--text-light);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .privacy-policy h1 {
    font-size: 2rem;
  }

  .privacy-policy h2 {
    font-size: 1.4rem;
  }

  .privacy-policy section {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .privacy-policy p {
    text-align: left;
  }
}
