/* =========================================================
   Dungeon Trove — Global Styles
   ========================================================= */

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

/* ----- Base ----- */
body {
  font-family: 'Inter', sans-serif;
  background: #fdf6e3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ----- Card ----- */
.card {
  background: #fdf6e3;
  border: 1px solid #e0cc99;
  border-radius: 20px;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(160, 120, 40, 0.10);
}

/* ----- Hero ----- */
.hero {
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(180deg, #fefae8 0%, #fceea0 100%);
  border-bottom: 1px solid #e0cc99;
}

.hero img.logo {
  max-width: 320px;
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  color: #7a6030;
  margin-bottom: 1.25rem;
}

/* ----- WIP Badge ----- */
.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5dfa0;
  color: #6b4c10;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #d4a840;
}

.wip-badge svg {
  width: 14px;
  height: 14px;
  stroke: #8b5e10;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----- Body ----- */
.body {
  padding: 1.75rem 1.75rem 1.5rem;
}

.section-label {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a07830;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0cc99;
}

/* ----- Project Cards ----- */
.project-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fffdf5;
  border: 1px solid #ddc980;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.project-link:hover {
  background: #fef3c7;
  border-color: #c8a830;
}

.project-icon {
  width: 42px;
  height: 42px;
  background: #f5dfa0;
  border-radius: 10px;
  border: 1px solid #d4a840;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.project-icon svg {
  width: 20px;
  height: 20px;
  stroke: #8b5e10;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-text {
  flex: 1;
}

.project-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: #3d2e10;
  margin-bottom: 2px;
}

.project-desc {
  font-size: 0.82rem;
  color: #8b7040;
}

.project-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #c8a830;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----- Coming Soon ----- */
.coming-soon {
  margin-top: 1.1rem;
  text-align: center;
  padding: 1rem 1.5rem;
  background: #fef9ee;
  border-radius: 10px;
  border: 1px dashed #d4a840;
}

.coming-soon p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: #8b7040;
}

/* ----- Footer ----- */
.footer {
  text-align: center;
  padding: 0.9rem 1rem;
  border-top: 1px solid #e0cc99;
  font-size: 0.74rem;
  color: #b09050;
  background: #fdf6e3;
}

/* ----- Responsive ----- */
@media (max-width: 480px) {
  .hero { padding: 2rem 1.25rem 1.5rem; }
  .body { padding: 1.25rem; }
}
