/* Trust: Scripture Meditation App Website Styles */

:root {
  --navy: #1f2937;
  --gold: #d4af37;
  --cream: #faf7f2;
  --light-cream: #fefcf8;
  --dark-navy: #111827;
  --light-gold: #e6c558;
  --text-dark: #374151;
  --text-light: #6b7280;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: var(--navy);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-download-btn {
  background-color: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.header-download-btn:hover {
  background-color: var(--light-gold) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: var(--cream);
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-icon {
  height: 80px;
  width: 80px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--light-gold);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  margin-top: 1rem;
}

.cta-button.secondary:hover {
  background-color: var(--gold);
  color: var(--navy);
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.download-buttons-center {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.download-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #000;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 200px;
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.download-button.large {
  padding: 16px 24px;
  min-width: 220px;
}

.download-button .download-icon {
  font-size: 2rem;
}

.download-button.large .download-icon {
  font-size: 2.5rem;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.download-store {
  font-size: 1.2rem;
  font-weight: bold;
}

.download-button.large .download-label {
  font-size: 1rem;
}

.download-button.large .download-store {
  font-size: 1.4rem;
}

/* Download Section */
.download-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: var(--cream);
  padding: 4rem 0;
  text-align: center;
}

.download-section h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: var(--cream);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--navy);
  font-size: 2.5rem;
}

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

.feature-card {
  background-color: var(--light-cream);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.5;
}

/* Support Page Styles */
.support-section {
  padding: 3rem 0;
}

.support-section h1,
.support-section h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-info {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 3rem;
  border-left: 4px solid var(--gold);
}

.faq {
  margin-bottom: 2rem;
}

.faq h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.faq p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Policy Pages */
.policy-content {
  padding: 3rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  color: var(--navy);
  margin-bottom: 2rem;
  text-align: center;
}

.policy-content h2 {
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

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

  .download-button {
    min-width: 250px;
  }

  .header-download-btn {
    padding: 6px 12px !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .features h2 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}