@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;500;700&display=swap');

:root {
  --primary: #05F7F7;
  --bg: #000000;
  --surface: #0A0A0A;
  --text-secondary: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--primary);
  font-family: 'Exo', sans-serif;
  font-size: 16px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

.wordmark {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #05F7F7, 0 0 10px #05F7F7, 0 0 15px #05F7F7; }
  to { text-shadow: 0 0 15px #05F7F7, 0 0 30px #05F7F7, 0 0 45px #05F7F7; }
}


.contact-link {
  color: var(--primary);
  font-family: 'Exo', sans-serif;
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 6px 14px;
  font-size: 0.85rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.under-construction {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 90px);
  text-align: center;
}

.under-construction p {
  color: var(--text-secondary);
  font-family: 'Exo', sans-serif;
  font-size: 0.95rem;
  opacity: 0.6;
  letter-spacing: 1px;
}

/* Real, live catalogue page, added 2026-08-19 -- kept in this one shared
   stylesheet rather than a second file, matching the existing site's own
   single-stylesheet convention. */
.catalogue {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px 60px;
}

.cat-intro {
  color: var(--text-secondary);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cat-section {
  margin-top: 2.5rem;
}

.cat-section h2 {
  color: var(--primary);
  font-size: 1.3rem;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(5, 247, 247, 0.25);
  padding-bottom: 0.5rem;
}

.cat-subhead {
  color: var(--text-secondary);
  opacity: 0.6;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 1.5rem 0 0.75rem;
}

.cat-item {
  border: 1px solid rgba(5, 247, 247, 0.2);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.cat-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.cat-item-name {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.cat-item-price {
  color: var(--text-secondary);
  opacity: 0.75;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cat-item-desc {
  color: var(--text-secondary);
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cat-item-buy {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 4px 12px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.cat-item-buy:hover {
  text-decoration: underline;
}

.cat-inline-link {
  color: var(--primary);
}

