/*
Theme Name: Decade Group
Theme URI: https://decadegroup.nl
Author: Decade Group
Description: Custom theme for Decade Group - Music Production & Management
Version: 1.0
*/

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #f4f4f0;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ─── NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f4f4f0;
  border-bottom: 1px solid #d2d2d2;
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 2rem;
  font-family: monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav a {
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: #e83d30;
  font-weight: 700;
}

/* ─── HERO ─── */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem 4rem;
  border-bottom: 1px solid #d2d2d2;
}

.hero h1 {
  font-size: clamp(48px, 12vw, 140px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-sub {
  font-family: monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2rem;
  max-width: 420px;
  color: #666;
  border-left: 2px solid #e83d30;
  padding-left: 1rem;
  line-height: 1.7;
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: #1a1a1a;
  color: #f4f4f0;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.5rem 0;
  border-bottom: 1px solid #d2d2d2;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track span {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-right: 3rem;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #d2d2d2;
}

.service-card {
  padding: 2rem;
  border-right: 1px solid #d2d2d2;
  transition: background 0.3s;
}

.service-card:last-child { border-right: none; }
.service-card:hover { background: #fff; }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.service-num {
  font-family: monospace;
  font-size: 0.7rem;
  color: #999;
}

.service-arrow { color: #d2d2d2; font-size: 1.2rem; }

.service-title {
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.service-sub {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
}

/* ─── ROSTER ─── */
.roster-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}

.roster-sidebar {
  width: 25%;
  border-right: 1px solid #d2d2d2;
  padding: 2.5rem 1.5rem;
}

.roster-sidebar-inner {
  position: sticky;
  top: 100px;
}

.roster-sidebar h3 {
  font-family: monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.roster-sidebar p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  max-width: 200px;
}

.roster-count {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #d2d2d2;
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bbb;
}

.roster-grid {
  width: 75%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.artist-card {
  aspect-ratio: 3/4;
  border-right: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
}

.artist-card:nth-child(3n) { border-right: none; }

.artist-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 48px;
  overflow: hidden;
}

.artist-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  transition: filter 0.5s, transform 0.5s;
}

.artist-card:hover .artist-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.artist-name-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: #fff;
  border-top: 1px solid #d2d2d2;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}

.artist-name-bar h2 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.artist-card:hover .artist-name-bar h2 { color: #e83d30; }

/* Per-artist object positions */
.artist-card[data-artist="sjrm"] .artist-img-wrap img { object-position: center 15%; }
.artist-card[data-artist="novak"] .artist-img-wrap img { object-position: center 25%; }
.artist-card[data-artist="cincity"] .artist-img-wrap img { object-position: center 15%; }
.artist-card[data-artist="tifi"] .artist-img-wrap img { object-position: center 0%; }
.artist-card[data-artist="levym"] .artist-img-wrap img { object-position: center 30%; }

/* ─── ABOUT ─── */
.about-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}

.about-text {
  width: 55%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #d2d2d2;
}

.about-label {
  font-family: monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #e83d30;
  margin-bottom: 2rem;
}

.about-text h1 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.about-body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  max-width: 520px;
}

.about-body p + p { margin-top: 1.2rem; }

.about-image {
  width: 45%;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  opacity: 0.9;
}

/* ─── CONTACT ─── */
.contact-layout {
  display: flex;
  min-height: calc(100vh - 64px);
}

.contact-info {
  width: 50%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #d2d2d2;
}

.contact-email {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 1.2rem 2.5rem;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}

.contact-email:hover { background: #e83d30; }

.contact-instagram {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 0.2rem;
  transition: border-color 0.3s;
}

.contact-instagram:hover { border-bottom-width: 3px; border-color: #1a1a1a; }

.contact-desc {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  max-width: 400px;
}

.contact-address {
  padding-top: 2rem;
  border-top: 1px solid #d2d2d2;
  text-align: right;
  font-family: monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-style: normal;
  line-height: 1.8;
}

.contact-image {
  width: 50%;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%);
  opacity: 0.85;
}

/* ─── FOOTER ─── */
.site-footer-dark {
  background: #1a1a1a;
  color: #f4f4f0;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo { font-weight: 900; font-size: 1.2rem; letter-spacing: -0.02em; }

.footer-copy {
  font-family: monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
}

.watermark-footer {
  height: 250px;
  background: #f4f4f0;
  border-top: 1px solid #d2d2d2;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.watermark-text {
  font-weight: 900;
  color: #e8e8e3;
  font-size: clamp(100px, 25vw, 400px);
  line-height: 0.75;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  user-select: none;
  transform: translateY(20%);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid #d2d2d2; }
  .roster-layout { flex-direction: column; }
  .roster-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #d2d2d2; }
  .roster-grid { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .about-layout { flex-direction: column; }
  .about-text { width: 100%; border-right: none; }
  .about-image { width: 100%; min-height: 300px; }
  .contact-layout { flex-direction: column; }
  .contact-info { width: 100%; border-right: none; }
  .contact-image { width: 100%; min-height: 300px; }
}
