/* === PaintedPoems - Main Styles === */

:root {
  --teal: #2ac0c2;
  --teal-light: #6fe4e6;
  --space-dark: #0b0f17;
  --text-light: #eaf6ff;
  --accent: #cde9ff;
  --max-width: 960px;
  --font-main: 'Segoe UI', Roboto, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-light);
  background: radial-gradient(ellipse at center, #1a1f2b 0%, var(--space-dark) 100%);
  background-attachment: fixed;
  background-size: cover;
}

a {
  color: var(--teal-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
}

/* === Header === */
.site-header {
  background: rgba(11, 15, 23, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 1.8rem;
  color: var(--teal);
  margin: 0;
}

.site-header nav {
  margin-top: 0.5rem;
}

.site-header nav a {
  margin-right: 1.2rem;
  font-weight: 500;
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
}

.hero h2 {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.button {
  background: var(--teal);
  color: var(--space-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.button:hover {
  background: var(--teal-light);
  color: #000;
}

/* === Intro Section === */
.intro {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  text-align: center;
}

.intro h3 {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.intro p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--accent);
}

/* === Footer === */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
  color: var(--accent);
}
