/* Intangible Cat - Modern Stylesheet */

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

:root {
  --accent: #C6395C;
  --bg: #000;
  --text: #d4d0c8;
  --text-bright: #f0ece4;
  --text-dim: #8a8578;
  --link: #C6395C;
  --link-hover: #e05a7a;
  --border: #222;
  --surface: #0a0a0a;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header / Nav */

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1rem;
}

.site-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.site-title a {
  color: var(--text-bright);
  text-decoration: none;
}

.site-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-dim);
  font-size: 0.875rem;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-bright);
  text-decoration: none;
}

/* Main content */

.main {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
}

/* Hero (index page) */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: normal;
  color: var(--text-bright);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 1.5rem;
}

.hero-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nav a {
  color: var(--text-dim);
  font-size: 1rem;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.hero-nav a:hover {
  color: var(--text-bright);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* Page headings */

.page-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--text-bright);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

/* Content sections */

.content {
  line-height: 1.7;
}

.content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--text-bright);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.content h3 {
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: normal;
}

.content p {
  margin-bottom: 1rem;
}

.content ul, .content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.35rem;
}

/* News entries */

.news-entry {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.news-entry:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.news-entry img {
  max-width: 350px;
  margin: 1rem 0;
  display: block;
}

/* Artists list */

.artist-list {
  list-style: none;
  padding: 0;
}

.artist-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.artist-list li:last-child {
  border-bottom: none;
}

.artist-list a {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
}

.artist-status {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-top: 0.2rem;
}

/* Contact sections */

.contact-section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-section:last-child {
  border-bottom: none;
}

.contact-section h2 {
  margin-top: 0;
}

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-links a {
  font-size: 0.875rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.site-footer a {
  color: var(--text-dim);
}

.site-footer a:hover {
  color: var(--accent);
}

/* Responsive */

@media (max-width: 600px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .main {
    padding: 1.5rem 1rem;
  }

  .news-entry img {
    max-width: 100%;
  }
}
