/* =============================================
   CoffeeRun – peanutexpress.net
   style.css
   ============================================= */

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

:root {
  --bg:        #1a1209;
  --surface:   #2a1e0f;
  --accent:    #f5a623;
  --accent-dk: #c47d0e;
  --text:      #f0e8d8;
  --muted:     #9e8b72;
  --radius:    12px;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

/* Background subtle gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, #3d2a0f 0%, #1a1209 60%);
  z-index: -1;
}

.container {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

/* ── Header ── */
header {
  margin-bottom: 2.5rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.logo-img {
  height: 120px;
  width: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

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

/* ── Main ── */
main {
  margin-bottom: 3rem;
}

.intro {
  background: var(--surface);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #1a1209;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.2);
}

.cta-button:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.4);
}

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

.store-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.store-badge-placeholder {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px dashed var(--muted);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(158, 139, 114, 0.05);
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(42, 30, 15, 0.5);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 166, 35, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(42, 30, 15, 0.8);
  border-color: rgba(245, 166, 35, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Footer ── */
footer {
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(158, 139, 114, 0.1);
  padding-top: 2rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ── Responsive ── */
@media (max-width: 400px) {
  h1 { font-size: 2rem; }
  main { padding: 2rem 1.25rem; }
}
