/* ============================================================
   Amarii Productions Inc — Dark Botanical v3: Copper Glow Theme
   Copper → Moss → Black Gradient | Created 2025
   ============================================================ */

/* ---------- Root Palette ---------- */
:root {
  --black: #0a0a0a;
  --moss: #1f2b22;
  --copper: #c47f53;
  --sage: #5a685e;
  --paper: #e9e6e1;
  --accent: #d89d73;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--copper) 0%, var(--moss) 40%, var(--black) 100%);
  color: var(--paper);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  color: var(--copper);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

p, li, a, span {
  font-size: 1rem;
  color: var(--paper);
}

a {
  color: var(--copper);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage);
}

/* ---------- Header ---------- */
header {
  background: rgba(15, 20, 15, 0.8);
  backdrop-filter: blur(8px);
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(196, 127, 83, 0.2);
  box-shadow: 0 0 10px rgba(196, 127, 83, 0.3);
}

header h1 {
  color: var(--copper);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

nav a {
  color: var(--paper);
  margin: 0 0.5rem;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

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

/* ---------- Hero Section ---------- */
.hero {
  padding: 6rem 2rem;
  text-align: center;
  background: radial-gradient(circle at top right, rgba(196,127,83,0.25), transparent 70%);
}

.hero h2 {
  font-size: 2.5rem;
  color: var(--paper);
}

.hero p {
  margin: 1rem auto;
  max-width: 600px;
  color: var(--sage);
  font-size: 1.1rem;
}

.cta-buttons {
  margin-top: 2rem;
}

.cta {
  display: inline-block;
  background: var(--copper);
  color: var(--black);
  padding: 0.8rem 1.6rem;
  margin: 0 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Main Content ---------- */
main.content {
  flex: 1;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* ---------- Card Style ---------- */
.card {
  background: rgba(20, 25, 20, 0.7);
  border: 1px solid rgba(196, 127, 83, 0.25);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(196, 127, 83, 0.4);
}

/* ---------- Projects Section ---------- */
.project h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.project p {
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.project a {
  color: var(--copper);
  font-weight: 600;
}

/* ---------- Contribute Section ---------- */
.contribute {
  border-top: 1px solid rgba(196, 127, 83, 0.3);
  margin-top: 3rem;
  padding-top: 2rem;
}

.contribute h3 {
  color: var(--copper);
  margin-bottom: 1rem;
}

.contribute .card {
  text-align: center;
}

.contribute a {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
  transition: color 0.3s ease;
}

.contribute a:hover {
  color: var(--paper);
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 1.2rem;
  font-size: 0.9rem;
  color: var(--sage);
  border-top: 1px solid rgba(196,127,83,0.25);
  background: rgba(15, 20, 15, 0.8);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .cta {
    margin: 0.4rem 0;
    display: block;
  }
}