/* Caff Conscious Landing Page Styles */

:root {
  --coffee-brown: #6F4E37;
  --dark-coffee: #4A332A;
  --cream: #FFF8F0;
  --light-gray: #F5F5F5;
  --text-dark: #2C2C2C;
  --text-muted: #666;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--cream);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 0;
}

header h1 {
  font-size: 2.5rem;
  color: var(--coffee-brown);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

header .tagline {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
}

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

.hero h1 {
  font-size: 3rem;
  color: var(--coffee-brown);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero .tagline {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Features Section */
.features {
  padding: 2rem 0;
  margin: 2rem 0;
}

.features h2 {
  font-size: 2rem;
  color: var(--dark-coffee);
  margin-bottom: 1.5rem;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  list-style: none;
}

.feature-list li {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.feature-list li::before {
  content: "✓";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--coffee-brown);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 1rem;
  font-weight: bold;
}

/* Download Section */
.download {
  text-align: center;
  padding: 3rem 0;
  margin: 2rem 0;
}

.download h2 {
  font-size: 2rem;
  color: var(--dark-coffee);
  margin-bottom: 2rem;
}

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

.store-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--coffee-brown);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(111, 78, 55, 0.3);
  min-width: 280px;
}

.store-button:hover {
  background: var(--dark-coffee);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(111, 78, 55, 0.4);
}

.store-button.apple {
  background: #000;
}

.store-button.apple:hover {
  background: #333;
}

.store-button.google {
  background: #01875f;
}

.store-button.google:hover {
  background: #00704f;
}

/* Privacy Policy Content */
.policy-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
}

.policy-content h2 {
  font-size: 1.75rem;
  color: var(--dark-coffee);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.policy-content a {
  color: var(--coffee-brown);
  text-decoration: none;
  border-bottom: 1px solid var(--coffee-brown);
}

.policy-content a:hover {
  color: var(--dark-coffee);
  border-bottom-color: var(--dark-coffee);
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 2rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--coffee-brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s;
}

footer a:hover {
  border-bottom-color: var(--coffee-brown);
}

/* Responsive Design */
@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .tagline {
    font-size: 1.25rem;
  }

  .store-button {
    min-width: 240px;
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}
