/* X Stitch Floss Finder Website Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --dark-bg: #343a40;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

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

header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

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

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hero {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.app-screenshots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.screenshot {
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

.features {
  padding: 80px 0;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-item {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.download {
  padding: 80px 0;
  background-color: var(--light-bg);
  text-align: center;
}

.app-stores {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.store-badge {
  height: 60px;
  transition: transform 0.3s;
}

.store-badge:hover {
  transform: scale(1.05);
}

.privacy {
  padding: 60px 0;
  background-color: var(--white);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.privacy-content h3 {
  margin: 30px 0 15px;
  color: var(--primary-color);
}

/* Support Page Styles */
.support {
  padding: 60px 0;
  background-color: var(--white);
}

.support-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.support-card {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.support-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.support-email {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 10px 0;
  text-decoration: none;
}

.support-email:hover {
  text-decoration: underline;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-color);
}

.faq-item a {
  color: var(--secondary-color);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

.privacy-content h3 {
  margin: 30px 0 15px;
  color: var(--primary-color);
}

.privacy-content p, .privacy-content ul {
  margin-bottom: 15px;
}

.privacy-content ul {
  padding-left: 20px;
}

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  display: flex;
  list-style: none;
  margin-bottom: 20px;
}

.footer-links li {
  margin: 0 15px;
}

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

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

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive styles */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .app-screenshots {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .app-stores {
    flex-direction: column;
    align-items: center;
  }
}
