html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #0a0a0f, #1c1c2b);
  color: #fff;
  text-align: center;
}

/* Main Content Container */
.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header & Navigation */
header {
  padding: 20px;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Hamburger (mobile toggle) */
.hamburger {
  font-size: 28px;
  background: none;
  border: none;
  color: #ff3366;
  cursor: pointer;
  display: none;
  margin-left: 20px;
}

/* Navigation container */
.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

/* Centered nav links */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
}

/* Dark mode toggle floated right */
.dark-toggle {
  margin-left: auto;
  font-size: 0.9em;
  color: gold;
  cursor: pointer;
}

/* Custom Dark Mode Switch */
.dark-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.dark-toggle input[type="checkbox"] {
  display: none;
}

.switch-slider {
  width: 40px;
  height: 20px;
  background-color: #444;
  border-radius: 20px;
  position: relative;
  transition: background-color 0.3s ease;
}

.switch-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: gold;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.dark-toggle input[type="checkbox"]:checked ~ .switch-slider::before {
  transform: translateX(20px);
}

.dark-toggle input[type="checkbox"]:checked ~ .switch-slider {
  background-color: #222;
}

.switch-label {
  color: gold;
  font-size: 0.9em;
}

.switch-icon {
  font-size: 1.2em;
  color: gold;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dark-mode .switch-icon {
  transform: rotate(360deg);
}

/* Responsive dropdown toggle */
.nav-menu.active {
  display: block;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
}

/* Navigation links */
.nav-primary,
.dropbtn {
  color: #f5deb3;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-primary:hover,
.dropbtn:hover {
  color: #ffe4b5;
  transform: scale(1.05);
  text-decoration: underline;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background-color: transparent;
  color: #ff3366;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.3s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a2a;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-content a {
  color: #ff3366;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #2a2a3a;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered fade-up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.6s ease-out;
}

/* Hero Logo */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 15px;
}
.hero-logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.hero-logo img:hover {
  transform: scale(1.05);
}

/* Headings & Sections */
h1 {
  font-size: 48px;
  margin: 30px 0 5px;
  font-weight: 700;
}
section {
  padding: 25px 15px;
}
h2 {
  font-size: 32px;
  margin-bottom: 5px;
}
p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* CTA Button */
.cta-button {
  background-color: #ff3366;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  vertical-align: middle;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s ease;
}
.cta-button:hover::before {
  left: 100%;
}
.cta-button:hover {
  background-color: #e62e5c;
  transform: scale(1.05);
}

/* Label Quote */
.label-quote {
  padding: 60px 20px;
  background-color: #1a1a2a;
  border-top: 2px solid #ff3366;
  border-bottom: 2px solid #ff3366;
}
.label-quote h2 {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: #ff3366;
  margin: 0 auto;
  max-width: 800px;
}

/* Featured Artist */
.featured-artist {
  padding: 80px 20px;
  background-color: #1a1a2a;
  border-top: 2px solid #ff3366;
  border-bottom: 2px solid #ff3366;
}
.featured-artist h2 {
  font-size: 32px;
  color: #ff3366;
  margin-bottom: 30px;
}
.featured-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.featured-photo {
  max-width: 300px;
  border-radius: 10px;
  border: 2px solid #ff3366;
}
.featured-text {
  max-width: 500px;
  text-align: left;
}
.featured-text p {
  font-size: 18px;
  color: #ddd;
}
.embed-players {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
.embed-players iframe {
  max-width: 100%;
  border: none;
  border-radius: 10px;
}

/* Artist Roster */
.artist-roster {
  padding: 100px 20px;
  background-image: url('../images/bg_logo.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}
.artist-roster::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.artist-roster h2, .roster-grid {
  position: relative;
  z-index: 2;
}
.artist-roster h2 {
  scroll-margin-top: 100px;
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.artist-card {
  background-color: #1e1e2f;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ff3366;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}
.artist-card:hover {
  animation: bounce 0.6s ease;
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
}
@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-5px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
.artist-card h3 {
  margin-top: 0;
  font-size: 22px;
}
.artist-card p {
  font-size: 16px;
  color: #ccc;
}
.artist-card a.cta-button {
  display: inline-block;
  margin-top: 15px;
  vertical-align: middle;
  line-height: 1.2;
  font-size: 18px;
  white-space: nowrap;
}

/* Artist Profile Page */
.artist-profile {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.artist-photo {
  max-width: 300px;
  border-radius: 10px;
  border: 2px solid #ff3366;
  margin-bottom: 20px;
}
.expansion-blocks h2 {
  color: #ff3366;
  margin-top: 40px;
}
.expansion-blocks p {
  color: #ccc;
  font-size: 16px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px;
}

/* Intro & About */
.intro-block {
  margin: 2em auto;
  max-width: 800px;
  font-size: 1.2em;
  line-height: 1.6;
  text-align: center;
  color: #ccc;
}
.about-section {
  max-width: 900px;
  margin: 3em auto;
  padding: 0 1em;
  font-size: 1.1em;
  line-height: 1.8;
}
.about-section h1,
.about-section h2 {
  color: #ff3366;
  margin-top: 2em;
}

/* SVG Logo Container */
.logo-container {
  width: 140px;
  margin: 1em auto;
  display: block;
}
.logo-container svg {
  width: 100%;
  height: auto;
  fill: gold;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-container svg:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: drop-shadow(0 0 6px gold);
}

/* Dark Mode */
body.dark-mode {
  background-color: #000;
  color: #f5f5f5;
}
body.dark-mode .logo-container svg {
  filter: drop-shadow(0 0 4px gold);
}
.dark-toggle {
  position: fixed;
  top: 1em;
  right: 1em;
  font-size: 0.9em;
  color: gold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    width: 100%;
    padding: 10px 20px;
    background-color: #111;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-center {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .dark-toggle {
    align-self: flex-end;
    margin-top: 10px;
  }
}

/* Flipped Emoji */
.flipped-emoji {
  display: inline-block;
  transform: scaleX(-1);
}
