/* style.css – Minimalist design system */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #faf9f6;
  color: #1e1e1e;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
  line-height: 1.5;
  padding: 2rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- navigation ----- */
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #d0cdc4;
  margin-bottom: 3rem;
}

.logo {
  font-family: 'Heckney', 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #1e1e1e;
  text-transform: lowercase;
  padding: 0.2rem 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  letter-spacing: 0.03em;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.nav-links a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 0.9rem;
  font-weight: 380;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: #1e1e1e;
}

.nav-links-big h1 {
  text-decoration: none;
  color: #2a2a2a;
  text-transform: lowercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}

.nav-links-big a {
  text-decoration: none;
  color: #2a2a2a;
  text-transform: lowercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}

.nav-links-big a:hover,
.nav-links-big a.active {
  border-bottom-color: #1e1e1e;
}

/* ----- pages ----- */
.page {
  display: block;
  animation: fade 0.25s ease;
}

@keyframes fade {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

/* ----- typography ----- */
h1 {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

h2 {
  font-size: 2rem;
  font-weight: 380;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.8rem 0;
  border-bottom: 1px solid #dddcd7;
  padding-bottom: 0.5rem;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

h3 {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 1.2rem 0 0.4rem 0;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

p, li {
  color: #2c2c2c;
  font-weight: 340;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.subhead {
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  border-left: 2px solid #c0bdb2;
  padding-left: 1.2rem;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.text-small {
  font-size: 0.9rem;
  color: #4e4c45;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 10px 0;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scrollLoop 60s linear infinite;
  width: max-content;
}

.scroll-track img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

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

.hero-overlay-below {
  padding: 1.5rem 0 1rem 0;
  max-width: 100%;
}

.hero-overlay-below h2 {
  border: none;
  margin: 0 0 0.2rem 0;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.hero-overlay-below .subhead {
  border-left: 2px solid #1e1e1e;
  margin-bottom: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .hero-overlay-below h2 {
    font-size: 2rem;
  }
  .hero-overlay-below {
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .hero-overlay-below h2 {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  pointer-events: auto;
}

.hero-buttons .btn {
  background: #1e1e1e;
  color: #faf9f6;
  border: none;
  padding: 0.6rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 350;
  text-decoration: none;
  display: inline-block;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.hero-buttons .btn-outline {
  background: transparent;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.hero-buttons .btn:hover {
  background: #3a3a3a;
}
.hero-buttons .btn-outline:hover {
  background: #1e1e1e;
  color: #faf9f6;
}

/* ----- artists grid ----- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 3rem 0;
}

.artist-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.artist-card:hover {
  transform: translateY(-4px);
}

.artist-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}

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

.artist-info {
  padding: 0.8rem 0.2rem;
}

.artist-info h3 {
  margin: 0 0 0.2rem 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.artist-genre {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}

.artist-label {
  margin: 0.2rem 0 0 0;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----- artist profile page ----- */
.artist-profile {
  margin: 2rem 0 3rem 0;
}

.artist-profile-header {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.artist-profile-image {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
}

.artist-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-profile-info {
  flex: 1;
}

.artist-profile-info h1 {
  margin: 0 0 0.2rem 0;
}

.artist-profile-info .subhead {
  margin: 0 0 0.5rem 0;
}

.artist-profile-info p {
  margin: 0.3rem 0;
}

.artist-website {
  display: inline-block;
  margin-top: 0.5rem;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.artist-website:hover {
  color: #666;
  border-color: #666;
}

.artist-profile-bio {
  margin: 2rem 0;
  border-top: 1px solid #dddcd7;
  padding-top: 2rem;
}

.artist-profile-bio h2 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.artist-profile-bio p {
  line-height: 1.8;
  max-width: 700px;
}

.artist-discography {
  margin: 2rem 0;
}

.artist-discography h2 {
  font-size: 1.2rem;
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.artist-discography ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
}

.artist-discography li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

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

.artist-back-link {
  margin: 2.5rem 0;
}

.artist-back-link a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}

.artist-back-link a:hover {
  border-color: #1a1a1a;
}

/* ----- artist not found ----- */
.artist-not-found {
  text-align: center;
  padding: 4rem 0;
}

.artist-not-found a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.2rem;
}

/* ----- grid / cards (labels & brands) ----- */
.grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem 1.5rem;
  margin: 2rem 0 1.5rem;
}

.card {
  background: #ffffff;
  padding: 1.2rem 1rem 1rem 1rem;
  border: 1px solid #e2dfd8;
  border-radius: 2px;
  transition: background 0.15s;
}

.card:hover {
  background: #f5f3ef;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 0.6rem;
  background: #edeae3;
}

.card h3 {
  margin: 0 0 0.1rem 0;
  font-size: 1.2rem;
}

.card .meta {
  font-size: 0.8rem;
  color: #5d5b54;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* ----- labels & brands specific ----- */
.label-item {
  background: #ffffff;
  padding: 1rem 1rem;
  border: 1px solid #e2dfd8;
  border-radius: 2px;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.label-item .label-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.label-item .label-left img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 2px;
  background: #edeae3;
}

.label-item strong {
  font-size: 1.2rem;
  font-weight: 400;
}

.label-item span {
  color: #55534b;
  font-size: 0.9rem;
}

/* ----- about page ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  margin: 2rem 0 1rem;
}

.about-grid p {
  margin-bottom: 1rem;
}

/* Logo wrapper for logo + globe */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* Increased from 0.5rem to 0.8rem for more space */
}

.logo-wrapper .logo {
  display: inline-block;
}

/* Globe link */
.globe-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e1e1e;
  text-decoration: none;
  opacity: 0.4; /* Slightly more subtle */
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 0.2rem;
}

.globe-link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.globe-icon {
  width: 20px;
  height: 20px;
  display: block;
  color: #1e1e1e; /* Ensure black color */
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .logo-wrapper {
    gap: 0.6rem;
  }
  .globe-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .logo-wrapper {
    gap: 0.5rem;
  }
  .globe-icon {
    width: 16px;
    height: 16px;
  }
}

.about-grid .logo {
  font-family: 'Heckney', 'Times New Roman', serif;
  text-transform: lowercase;
}

/* ----- credits page ----- */
.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin: 2rem 0;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.trademark-group {
  margin-bottom: 1.5rem;
}

.trademark-group p {
  margin-bottom: 0.3rem;
}

.trademark-group .grey {
  color: #888;
  font-size: 0.85rem;
}

.full-width {
  grid-column: 1 / -1;
}

.subheadline-credits {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 1rem;
  border-bottom: 1px solid #dddcd7;
  padding-bottom: 0.5rem;
}

/* ----- contact / demo form ----- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem 2rem;
  margin-top: 1.5rem;
}

.contact-info {
  background: #f0eee9;
  padding: 2rem 1.8rem;
  border-radius: 2px;
}

.contact-info p {
  margin: 1.2rem 0;
}

.contact-info a {
  margin: 1.2rem 0;
}

.contact-info .detail {
  border-top: 1px solid #d6d2ca;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}

.demo-form {
  background: #ffffff;
  padding: 1.8rem 2rem;
  border: 1px solid #dcd9d0;
  border-radius: 2px;
}

.demo-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1.2rem 0 0.3rem 0;
  color: #3d3b34;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #d0cdc4;
  background: #fcfcfa;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 2px;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: 1px solid #1e1e1e;
  border-color: #1e1e1e;
  background: #fff;
}

.demo-form textarea {
  min-height: 100px;
  resize: vertical;
}

.btn {
  background: #1e1e1e;
  color: #faf9f6;
  border: none;
  padding: 0.8rem 2.4rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 350;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

.btn:hover {
  background: #3a3a3a;
}

/* ----- footer ----- */
footer {
  margin-top: 4rem;
  border-top: 1px solid #d6d2ca;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #5f5c53;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}

footer span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-location {
  font-size: 0.8rem;
  color: #5f5c53;
}

.footer-divider {
  color: #d6d2ca;
  margin: 0 0.25rem;
}

.albrus-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #5f5c53;
  transition: color 0.2s;
  font-size: 0.8rem;
}

.albrus-link:hover {
  color: #1e1e1e;
}

.albrus-link span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.albrus-icon {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
}

/* ----- responsive ----- */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .credits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  .hero-overlay {
    padding: 0 1.5rem;
  }
  .hero-overlay h2 {
    font-size: 2rem;
  }
  .hero-banner {
    height: 220px;
  }
  .scroll-track img {
    height: 160px;
    max-width: 200px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  footer span {
    flex-wrap: wrap;
  }
  .artist-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .artist-profile-image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
  }
  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  body { padding: 1rem; }
  .logo { font-size: 1.5rem; }
  .nav-links { gap: 1rem; font-size: 0.9rem; }
  .hero-banner { height: 180px; }
  .scroll-track img { height: 120px; max-width: 150px; }
  .hero-overlay h2 { font-size: 1.5rem; }
  .albrus-icon { height: 16px; }
}

/* ----- font-face declarations ----- */
@font-face {
  font-family: 'Heckney';
  src: url('heckney.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ----- Heckney font is automatically applied to .logo elements ----- */
.logo {
  font-family: 'Heckney', 'Times New Roman', serif;
  text-transform: lowercase;
}

/* ----- Trebuchet MS is the default font for everything else ----- */
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
div:not(.logo),
.nav-links,
.subhead,
.text-small,
.hero-overlay h2,
.hero-buttons .btn,
.demo-form input,
.demo-form textarea,
.btn,
footer,
.artist-info h3,
.artist-genre,
.artist-label,
.artist-profile-bio p,
.artist-discography li,
.artist-back-link a,
.credits-grid,
.trademark-group {
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
}