/* ── Loading Screen ── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
  pointer-events: all;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loading-screen.hidden {
  display: none;
}

#loading-screen img {
  width: 120px;
  height: auto;
  transform-origin: center center;
  will-change: transform, opacity;
  transform: translateZ(0); /* Hardware acceleration */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
  0%   { transform: scale(1) translateZ(0);    opacity: 1;   }
  50%  { transform: scale(1.1) translateZ(0);  opacity: 0.6; }
  100% { transform: scale(1) translateZ(0);    opacity: 1;   }
}

:root {
  --bg-color: #000000;
  --surface-color: #000000;
  --surface-color-hover: #111111;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --accent-color: #f43f5e; /* Rose / Neon Pink */
  --accent-glow: 0 0 20px rgba(244, 63, 94, 0.4);
  --border-color: rgba(255, 255, 255, 0.1);
  --font-sans: 'Outfit', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* Solid White Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: padding var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.6rem 5%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-color);
}

.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: invert(1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

@media (min-width: 769px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  color: #000000;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: width var(--transition-smooth);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.5);
  background: #ff4c6c;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--surface-color-hover);
  border-color: var(--text-primary);
}

/* Sections */
section {
  padding: 6rem 5%;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: -2;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: slowZoom 20s infinite alternate linear;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,7,0.2) 0%, rgba(5,5,7,0.9) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero .btn-primary:hover {
  background: #e5e5e5;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* About Section */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  color: #000000;
}

.about h2 {
  font-weight: 400;
}

.about-text {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.about-text strong {
  color: #000000;
  font-weight: 700;
}

/* Home Roster Carousel */
.home-roster {
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-color);
}

.home-roster h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-container {
  position: relative;
  width: 72%;
  margin: 0 auto;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  width: 35%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.carousel-overlay.left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
}

.carousel-overlay.right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev-btn {
  left: 1rem;
}

.carousel-btn.next-btn {
  right: 1rem;
}

.roster-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  width: 100%;
}

.roster-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.carousel-img {
  flex: 0 0 auto;
  width: max(18vw, 200px);
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  cursor: pointer;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  flex-shrink: 0;
  scroll-snap-align: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

/* Contact/Footer Area */
.contact-section {
  background: #ffffff;
  color: #000000;
  text-align: left;
  padding: 0;
}

.contact-section .btn-primary {
  background: #000000;
  color: #ffffff;
  box-shadow: none;
}

.contact-section .btn-contact-wa {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  gap: 0.5rem;
  align-self: flex-start;
}

.contact-section .btn-primary:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-layout {
  display: flex;
  width: 100%;
}

.contact-info {
  flex: 1;
  padding: 8rem 5% 8rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000000;
}

.contact-info p {
  color: #4b5563;
  margin-bottom: 2rem;
}

.contact-map {
  flex: 1;
  width: 100%;
  height: auto;
  min-height: 500px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #f3f4f6;
}

.map-link {
  display: block;
  width: 100%;
  height: 100%;
}

.socials {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.social-icon:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

footer {
  background: #000000;
  padding: 4rem 5%;
  text-align: center;
  font-size: 0.9rem;
  color: #a1a1aa;
}

.footer-socials-container {
  margin-bottom: 2rem;
}

.footer-socials-container h4 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.foot-socials {
  justify-content: center;
}

.foot-socials .social-icon {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-socials .social-icon:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.cookie-banner {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.85rem;
}

.cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* Roster Section */
.roster-header {
  text-align: center;
  padding: 10rem 5% 4rem;
  background: var(--bg-color);
}

.roster-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

/* Roster Grid */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.artist-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.artist-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.roster-grid .centered-card {
  grid-column: 2;
}

.artist-card:hover .artist-card-img {
  opacity: 0.9;
}

.artist-card-content {
  padding: 1.25rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.artist-card-content h3 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin: 0;
  white-space: nowrap;
}

.artist-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  border-radius: 0;
  margin-top: auto;
}

.artist-card-link:hover {
  background: #cccccc;
  transform: translateY(-2px);
}

/* Animations & Utils */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.1); }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5%;
}

.team-member:first-child {
  grid-column: span 2;
  justify-self: center;
  width: calc(50% - 1rem);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 1.25rem;
  object-fit: cover;
  object-position: center top;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}

.team-name {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-designation {
  color: #a1a1aa;
  font-weight: 300;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 6rem 2rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transition: right var(--transition-smooth);
    z-index: -1;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05); /* Distinctive separation line */
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  section {
    padding: 4rem 5%;
  }
  
  .hero {
    padding-top: 6rem;
  }
  
  .contact-section {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
  }

  .contact-layout {
    flex-direction: column;
    flex: 1;
  }

  .contact-info {
    padding: 4rem 5%;
    text-align: center;
  }
  
  .contact-map {
    flex: 1;
    height: auto;
    min-height: 300px;
  }

  .socials {
    justify-content: center;
  }

  .carousel-container {
    width: 100%;
  }

  .carousel-overlay {
    display: none; /* Hide edge shadows on mobile to stop fake cropping effect */
  }

  .carousel-img {
    flex: 0 0 75vw;
    width: 75vw;
    min-width: 75vw;
    max-width: 75vw;
    height: auto;
    aspect-ratio: 9 / 16;
  }

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

  .roster-grid .artist-card:nth-child(n) {
    grid-column: auto;
  }

  .roster-grid .centered-card {
    grid-column: span 2;
    justify-self: center;
    width: calc(50% - 1rem);
  }

  .artist-card {
    width: 100%;
    min-width: unset;
  }

  .artist-card-img {
    height: auto;
    aspect-ratio: 3 / 4;
  }

}

@media (max-width: 480px) {
  .team-grid, .roster-grid {
    grid-template-columns: 1fr;
  }
  .team-member:first-child, .roster-grid .centered-card {
    grid-column: span 1;
    width: 100%;
  }
}
