/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: 'Inter', sans-serif;
  background: #0e0e10;
  color: #e8e6e3;
  line-height: 1.6;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at top, #1b1b22, #0e0e10);
}

.overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=1600&q=80') center/cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  letter-spacing: 2px;
}

.tagline {
  margin-top: 1rem;
  font-style: italic;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 10px 20px;
  border: 1px solid #aaa;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: rgba(14, 14, 16, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #222;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
}

.links a {
  margin-left: 20px;
  color: #e8e6e3;
  text-decoration: none;
  opacity: 0.7;
}

.links a:hover {
  opacity: 1;
}

/* Sections */
.section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.subtext {
  opacity: 0.7;
  margin-bottom: 30px;
}

/* Poems */
.poem-grid {
  display: grid;
  gap: 20px;
}

.poem-card {
  padding: 20px;
  border: 1px solid #222;
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s;
}

.poem-card:hover {
  border-color: #555;
  transform: translateY(-3px);
}

/* Dark section */
.dark {
  background: #121214;
}

/* Contact */
.email {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #fff;
  border-bottom: 1px solid #444;
  text-decoration: none;
}

.email:hover {
  border-color: #fff;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.8rem;
  opacity: 0.5;
}