/* ============================================
   ARTISTTAAN - MAIN STYLESHEET
   ============================================ */

/* Base */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Color System */
.bg-primary   { background: #000000; }
.bg-secondary { background: #f5f5f5; }
.bg-tertiary  { background: #eeeeee; }
.text-primary   { color: #000000; }
.text-secondary { color: #666666; }
.text-muted     { color: #999999; }
.border-subtle  { border-color: #e5e5e5; }
.border-dark    { border-color: #000000; }

/* Typography */
.font-display {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.text-hero {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
}

.text-section {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  font-weight: 700;
}

.text-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666666;
}

.text-caption {
  font-size: 0.8125rem;
  color: #999999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Layout */
.section-pad {
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .section-pad {
    padding: 8rem 2rem;
  }
}

/* Animations */
.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.img-reveal {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.group:hover .img-reveal {
  transform: scale(1.05);
}

/* Forms */
.form-minimal {
  background: transparent;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 1rem 0;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-minimal:focus {
  outline: none;
  border-bottom-color: #000000;
  box-shadow: none;
}
.form-minimal::placeholder {
  color: #999999;
}

/* Buttons */
.btn-primary {
  background: #000000;
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background: #333333;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  padding: 1rem 2.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover {
  background: #000000;
  color: #ffffff;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #000000;
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Skeleton Loader */
.skeleton {
  background: linear-gradient(90deg, #f5f5f5 25%, #eeeeee 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Divider */
.divider {
  height: 1px;
  background: #e5e5e5;
  width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999999;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
}

.about-image {
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.03) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-quote {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
  color: #333333;
}
.about-quote::before {
  content: '"';
  font-size: 4rem;
  line-height: 0;
  color: #e5e5e5;
  display: block;
  margin-bottom: 1rem;
}

/* Artist Cards */
.artist-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover {
  transform: translateY(-8px);
}

.artist-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.artist-card:hover .artist-img {
  transform: scale(1.05);
}

.social-icon {
  transition: all 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.1);
}

/* Spotify Embed */
.spotify-embed {
  border-radius: 12px;
  overflow: hidden;
}
.spotify-embed iframe {
  border: none;
  width: 100%;
}

/* Release Cards */
.release-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.release-card:hover {
  transform: translateY(-6px);
}
.release-card .release-cover {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.release-card:hover .release-cover {
  transform: scale(1.03);
}

/* File Drop Zone */
.file-drop-zone {
  position: relative;
  border: 2px dashed #e5e5e5;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.file-drop-zone:hover {
  border-color: #000000;
}
.file-drop-zone.drag-over {
  border-color: #000000;
  background: #f5f5f5;
}

/* Mobile Menu */
#mobileMenu {
  transition: all 0.3s ease;
}

/* Line clamp */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
  .about-quote {
    font-size: 1.25rem;
  }
}


/* ============================================
   LOGO STYLES
   ============================================ */

.logo-nav {
  height: 32px;
  width: auto;
  display: block;
}

.logo-footer {
  height: 32px;
  width: auto;
  display: block;
}

.logo-hero {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

/* Fallback text when logo fails to load */
.logo-fallback {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: inherit;
}

/* Artist page nav logo */
.artist-page .logo-nav {
  height: 28px;
}
