/* Vast Pacifica Landing Page Styles */
:root {
  --primary: #243E36;
  --secondary: #71A94C;
  --leaf: #84AE8A;
  --cream: #ECE3C1;
  --white: #FFFFFF;
  --gray: #666666;
  --light-gray: #f5f5f5;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary);
  line-height: 1.6;
}

/* Header */
.header {
  background: var(--primary);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-badge {
  width: 40px;
  height: 40px;
  background: var(--leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}

.nav {
  display: flex;
  gap: 2rem;
}

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

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

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2d28 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

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

.hero-badge {
  width: 120px;
  height: 120px;
  background: var(--leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 2.5rem;
  color: var(--primary);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

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

.hero .tagline {
  font-size: 1.5rem;
  color: var(--leaf);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero .description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--primary);
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.store-btn svg {
  width: 24px;
  height: 24px;
}

/* Features Section */
.features {
  padding: 5rem 2rem;
  background: var(--white);
}

.features-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.feature-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Page Content */
.page-header {
  background: var(--primary);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-header h1 {
  color: var(--cream);
  font-size: 2.5rem;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-content h2 {
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.page-content h3 {
  color: var(--primary);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
}

.page-content p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.page-content ul {
  color: var(--gray);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Support Page */
.contact-card {
  background: var(--leaf);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-card h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--primary);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.footer-copyright {
  color: var(--leaf);
  font-size: 0.9rem;
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--light-gray);
}

.error-content h1 {
  font-size: 6rem;
  color: var(--leaf);
}

.error-content p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.btn-home {
  display: inline-block;
  background: var(--primary);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-home:hover {
  background: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 1rem;
  }
  
  .nav.active {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .tagline {
    font-size: 1.1rem;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
}
