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

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

body {
  font-family: 'Inter', sans-serif;
  color: #f5f0e8;
  background: #0a0a0a; 
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul { list-style: none; }

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

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #f5f0e8;
  letter-spacing: -0.02em;
}

.section-title span {
  background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: #a09080;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.3em;
  animation: pulse-gold 1.5s ease-in-out infinite;
}

.loader-logo .loader-img {
  height: 40px;
  width: auto;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #f5f0e8;
  letter-spacing: 0.08em;
}

.navbar-brand .brand-logo {
  height: 38px;
  width: auto;
}

.navbar-brand span {
  color: #d4af37;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: #a09080;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4af37;
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.3rem;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: #f5f0e8;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 8s cubic-bezier(0.23, 1, 0.32, 1);
  filter: saturate(1) brightness(0.95);
}

.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slideshow .slide.next {
  opacity: 1;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.2) 80%),
              linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #d4af37;
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.5rem 1.8rem;
  margin-bottom: 2rem;
  animation: fadeDown 1s ease 0.5s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: #f5f0e8;
  margin-bottom: 1.5rem;
  animation: fadeDown 1s ease 0.8s both;
}

.hero-title .line {
  display: block;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: #a09080;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  animation: fadeDown 1s ease 1.1s both;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeDown 1s ease 1.4s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #c9a032);
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: #f5f0e8;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateY(-2px);
}

.btn-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-play:hover {
  background: #d4af37;
  transform: scale(1.05);
}

.btn-play:hover i {
  color: #0a0a0a;
}

.btn-play i {
  color: #d4af37;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeDown 1s ease 2s both;
  transition: opacity 0.6s ease;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a5a4a;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #d4af37, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: #0a0a0a;
}

.section-light {
  background: #111111;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto 0.5rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 600px;
}

.about-image img {
  width: 100%;
  height: 700px;
  padding: 80px;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.7);
  transition: all 0.8s ease;
}

.about-image:hover img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  pointer-events: none;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  color: #a09080;
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.stat-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.03);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: #6a5a4a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== ARTISTS ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: #111;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  filter: saturate(0.7) brightness(0.7);
}

.artist-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(0.9);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: all 0.5s ease;
}

.artist-card:hover .artist-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(10,10,10,0.98) 100%);
}

.artist-overlay .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.artist-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1);
}

.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 0.2rem;
}

.artist-genre {
  font-size: 0.75rem;
  color: #d4af37;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 300;
}

/* ===== MUSIC / VIDEO ===== */
.music-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  background: #111;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.5);
}

.video-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.video-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.video-card:hover .play-btn {
  background: #d4af37;
  color: #0a0a0a;
}

.video-card .video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.9));
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #f5f0e8;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #f5f0e8;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1;
}

.video-modal-close:hover {
  color: #d4af37;
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.video-modal-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.news-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.news-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.news-image {
  height: 220px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  filter: brightness(0.7);
}

.news-card:hover .news-image img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.news-body {
  padding: 1.8rem;
}

.news-date {
  font-size: 0.72rem;
  color: #d4af37;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.news-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #f5f0e8;
  line-height: 1.4;
}

.news-body p {
  color: #7a6a5a;
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}

.news-link:hover {
  gap: 0.8rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, #111111, #1a1a1a);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 4rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.03), transparent 60%);
  animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #f5f0e8;
  margin-bottom: 0.5rem;
  position: relative;
}

.newsletter p {
  color: #7a6a5a;
  margin-bottom: 2rem;
  font-weight: 300;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #f5f0e8;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}

.newsletter-form input::placeholder {
  color: #5a4a3a;
}

.newsletter-form .btn {
  border-radius: 4px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #f5f0e8;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #7a6a5a;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 1.1rem;
  border-radius: 4px;
}

.contact-detail div {
  flex: 1;
}

.contact-detail label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a5a4a;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail span {
  color: #f5f0e8;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a09080;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.social-links a:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-2px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: #f5f0e8;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #f5f0e8;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  color: #d4af37;
}

.footer-brand p {
  color: #5a4a3a;
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5f0e8;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #5a4a3a;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #3a2a1a;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #3a2a1a;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #d4af37;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    height: 350px;
  }

  .music-showcase {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: auto;
  }
}
