/* SupaFocus Website Styles */
:root {
  --primary-blue: #0066FF;
  --accent-purple: #7C3AED;
  --background-dark: #0A0F1F;
  --card-background: rgba(255, 255, 255, 0.05);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: linear-gradient(135deg, var(--background-dark) 0%, #0f1a2e 50%, #0A0F1F 100%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

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

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.3);
}

header h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--text-primary);
  background: var(--card-background);
}

nav a.active {
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
}

/* Content */
.content {
  padding: 40px 0;
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.content h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.content h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.content ul {
  color: var(--text-secondary);
  margin-left: 20px;
  margin-bottom: 15px;
}

.content li {
  margin-bottom: 8px;
}

.content a {
  color: var(--primary-blue);
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  background: var(--card-background);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 255, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  fill: var(--primary-blue);
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* App Store Badge */
.app-store-badge {
  display: inline-block;
  margin-top: 30px;
}

.app-store-badge img {
  height: 50px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

footer a {
  color: var(--text-secondary);
  text-decoration: none;
}

footer a:hover {
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Last Updated */
.last-updated {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 30px;
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card-background);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

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

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

  .container {
    padding: 20px 15px;
  }

  nav {
    gap: 10px;
  }

  nav a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}
