/* BeaglePrep — Static Website Styles */

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

:root {
  --olive:      #485F42;
  --olive-dark: #485F42;
  --tan:        #c8b89a;
  --tan-light:  #f5f0e8;
  --amber:      #d97706;
  --amber-dark: #b45309;
  --text:       #1c1a17;
  --text-muted: #5a5448;
  --white:      #ffffff;
  --radius:     6px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--tan-light);
  color: var(--text);
  line-height: 1.6;
}

/* ── Header ─────────────────────────────────────────────────── */
header {
  background-color: var(--olive-dark);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav a {
  color: var(--tan);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

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

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 60%, #6b7255 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--amber);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--tan);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--amber-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--tan);
  margin-left: 1rem;
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* ── Sections ───────────────────────────────────────────────── */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--olive-dark);
  margin-bottom: 2rem;
  text-align: center;
}

/* ── Feature Grid ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid #ddd5c4;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--olive-dark);
  margin-bottom: 0.5rem;
}

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

/* ── App-Store Buttons ──────────────────────────────────────── */
.download-section {
  background-color: var(--olive-dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.download-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.download-section p {
  color: var(--tan);
  margin-bottom: 2rem;
}

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

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #111;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s;
}

.store-btn:hover {
  border-color: var(--amber);
}

.store-btn .store-icon {
  font-size: 1.4rem;
}

/* ── Home (thegroovesalad.com) ──────────────────────────────── */
.home-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.dog-photo {
  margin-bottom: 2rem;
  text-align: center;
}

.dog-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.home-bio {
  margin-bottom: 2.5rem;
}

.home-bio h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--olive-dark);
  margin-bottom: 1rem;
}

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

.home-bio-dog {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
}

.home-projects-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.home-projects {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid #ddd5c4;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
  text-align: left;
}

.project-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  border-color: var(--amber);
}

.project-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
}

.project-card h3 {
  font-size: 1.15rem;
  color: var(--olive-dark);
  margin-bottom: 0.2rem;
}

.project-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Privacy Policy ─────────────────────────────────────────── */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.policy-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--olive-dark);
  margin-bottom: 0.5rem;
}

.policy-content .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.policy-content h2 {
  font-size: 1.15rem;
  color: var(--olive-dark);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.policy-content p,
.policy-content ul {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.4rem;
}

.policy-content a {
  color: var(--amber-dark);
  text-decoration: underline;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background-color: var(--olive-dark);
  color: var(--tan);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.85rem;
}

footer a {
  color: var(--tan);
  text-decoration: none;
  margin: 0 0.5rem;
}

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