
@font-face {
  font-family: 'CormorantGaramond';
  src: url('CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

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

:root {
  --bg: #141414;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --accent: ;
  --accent-dim: #000000;
  --text: #e8e2d9;
  --text-muted: #888;
  --border: #2a2a2a;
  --radius: 8px;
  --font: 'CormorantGaramond', serif;
  --font-sans: system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #45070a;
  color: var(--text);
  font-family: var(--font-CormorantGaramond);
  font-size: 16px;
  line-height: 1.7;
}

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

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #e8e2d9;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #d4b87e;
  color: #0d0d0d;
  border-color: #d4b87e;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #e8e2d9;
}
.btn-small { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-full { width: 100%; text-align: center; }

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.06em;
}
.nav-logo:hover { color: var(--accent); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-active { color: var(--accent) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('genesiscover.JPG') center/cover no-repeat;
  position: relative;
}
.hero-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
#hero h1 {
  font-family: var(--font);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-right: -0.08em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto 2.5rem;
  max-width: 400px;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  font-size: 1.2rem;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

section:not(#hero) { padding: 6rem 0; }
section:nth-child(even) { background: var(--bg2); }

.section-title {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.image-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.about-text h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-cta { color: var(--accent) !important; font-style: italic; }

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.music-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.music-card:hover { transform: translateY(-4px); border-color: var(--accent-dim); }
.album-art {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1e1a14 0%, #2a2318 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--accent-dim);
}
.music-info { padding: 1.2rem; }
.music-info h3 { font-size: 1.1rem; margin-bottom: 0.2rem; color: var(--text); }
.music-meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.music-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.music-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--text); margin-bottom: 0.2rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-status { font-size: 0.85rem; text-align: center; min-height: 1.2rem; margin-top: 0.25rem; }
.form-status.success { color: #6fcf97; }
.form-status.error { color: #eb5757; }

footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1rem; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,13,13,0.97); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 280px; margin: 0 auto; }

  .hero-actions { flex-direction: column; align-items: center; }

  .release-grid,
  .release-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }
}

.releases-header {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: #45070a;
}

.releases-header h1 {
  font-family: var(--font);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.release-section {
  padding: 6rem 0;
  background: var(--bg);
}
.release-section.alt {
  background: var(--bg2);
}

.release-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.release-grid.reverse {
  direction: rtl;
}
.release-grid.reverse > * {
  direction: ltr;
}

.release-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.release-info h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.release-blurb {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  user-select: none;
}

.slides {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #1a1a1a, #222);
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #45070a;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 1.1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slide-btn:hover { background: rgba(201,169,110,0.7); color: #000; }
.slide-btn.prev { left: 0.75rem; }
.slide-btn.next { right: 0.75rem; }

.slide-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 2;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45070a;
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--accent); }
