/* Evoke Market - Premium Static Website */

:root {
  --accent-color: #1a2a3a;
  --text-color: #333333;
  --light-bg: #fafaf9;
  --white: #ffffff;
  --border-color: #e5e5e5;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

/* Navigation */
nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav li {
  margin: 0;
}

nav a {
  display: block;
  padding: 1.5rem 1.5rem;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

nav a.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

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

.hero h1 {
  margin-bottom: 1rem;
}

.subheading {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 3rem;
  line-height: 1.5;
}

/* Body Copy */
.body-copy {
  max-width: 700px;
  margin-bottom: 3rem;
}

.body-copy p {
  margin-bottom: 1.5rem;
}

/* Value Bullets */
.value-bullets {
  max-width: 700px;
  margin-bottom: 3rem;
}

.value-bullets ul {
  list-style: none;
}

.value-bullets li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.value-bullets li:before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 600;
}

/* Packs Grid */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pack-card {
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.pack-card h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.pack-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
}

/* Feature List */
.features-list {
  max-width: 700px;
  margin: 2rem 0;
}

.features-list ul {
  list-style: none;
}

.features-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 600;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
}

.cta-button:hover {
  background-color: #0f1a2a;
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

/* Section Spacing */
section {
  margin-bottom: 3rem;
}

section:last-child {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666666;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  nav ul {
    flex-wrap: wrap;
    padding: 0 1rem;
  }

  nav a {
    padding: 1rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .container {
    padding: 2rem 1.5rem;
  }

  .subheading {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .packs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  nav ul {
    flex-direction: column;
  }

  nav a {
    padding: 0.75rem 1rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  nav a:hover,
  nav a.active {
    border-left-color: var(--accent-color);
    border-bottom: none;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .subheading {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }
}
