/* ==========================================================
   DUSTDEEP OFFICIAL — NEON BLACK LABEL THEME
   Clean · Premium · Stable · Responsive
========================================================== */

:root {
  --bg: #0b0b0b;
  --bg2: #141414;
  --text: #eaeaea;
  --soft: #cfcfcf;
  --accent1: #ffb347;
  --accent2: #ff7050;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

/* ==========================================================
   ANIMATIONS
========================================================== */

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

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   PRELOADER
========================================================== */

#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#preloader img {
  width: 90px;
  filter: drop-shadow(0 0 12px rgba(255,160,70,0.5));
  animation: logoFloat 5s infinite ease-in-out;
}

/* ==========================================================
   HEADER
========================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  z-index: 1000;
}

header .logo img {
  height: 34px;
  transition: var(--transition);
}

header nav a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

nav a.active {
  color: var(--accent1);
  text-shadow: 0 0 10px rgba(255,180,70,0.45);
  font-weight: 600;
}

nav a:hover {
  color: var(--accent1);
  text-shadow: 0 0 12px rgba(255,160,70,0.45),
               0 0 25px rgba(255,160,70,0.25);
}
/* Hamburger (Apple style) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* Mobile menu panel */
#mobile-menu {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #0b0b0b;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: 0.35s ease;
  z-index: 2000;
  border-left: 1px solid #222;
}

#mobile-menu a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

/* Active state */
#mobile-menu.open {
  right: 0;
}
#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1500;
}

#menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Show only on mobile */
@media (max-width: 768px) {
  #navbar {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}


/* ==========================================================
   HERO
========================================================== */

.hero {
  padding: 7rem 1rem 4rem;
  max-width: var(--max-width);
  margin: auto;
  animation: fadeInUp 1s ease;
  text-align: center;
}

.hero-logo {
  width: 220px;
  max-width: 75vw;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 15px rgba(255,179,71,0.4));
  animation: logoFloat 6s ease-in-out infinite;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.subtitle {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.mission {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 1.5rem auto 2rem;
  opacity: 0.9;
}

.cta {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn,
.btn-outline {
  padding: 0.85rem 1.9rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: 0.28s ease;
  display: inline-block;
}

.btn {
  background: linear-gradient(90deg, #ffb347, #ff7050);
  color: #000;
  box-shadow: 0 0 14px rgba(255,150,80,0.35);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(255,150,80,0.5);
  text-shadow: 0 0 10px rgba(255,170,70,0.4);
}

.btn-outline {
  border: 1px solid #ffb347;
  color: #ffb347;
}

.btn-outline:hover {
  background: #ffb347;
  color: #000;
  transform: translateY(-3px);
  text-shadow: 0 0 10px rgba(255,170,70,0.4);
}

/* ==========================================================
   UNIVERSAL SECTION
========================================================== */

.section {
  padding: 4.5rem 1.5rem; /* compact */
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================
   ABOUT
========================================================== */

.about-short,
.about-long {
  max-width: 750px;
  margin: 0 auto 1.5rem;
  font-size: 1.15rem;
  color: #ddd;
}

.about-long { margin-top: 1.5rem; }

/* ==========================================================
   ARTISTS GRID
========================================================== */

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.artist-card {
  background: var(--bg2);
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid #222;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.artist-card:hover {
  border-color: var(--accent1);
  box-shadow: 0 0 25px rgba(255,150,80,0.2);
  transform: translateY(-5px);
}

.artist-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
/* ==========================================================
   RELEASES — SPOTIFY EMBEDS
========================================================== */

.release-grid {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.release-card {
  background: var(--bg2);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #222;
  box-shadow: 0 0 18px rgba(255,150,80,0.18);
  transition: var(--transition);
}
.release-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.release-item {
  background: #111;
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid #222;
  box-shadow: 0 0 20px rgba(255,150,80,0.12);
}

.release-card:hover {
  border-color: var(--accent1);
  box-shadow: 0 0 28px rgba(255,150,80,0.28);
  transform: translateY(-4px);
}
.grey-embed {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.grey-embed:hover {
  box-shadow: 0 0 14px rgba(80,80,80,0.5);
  border-color: #444;
}
.spotify-wrap {
  background: #0f0f0f;
  border-radius: 16px;
  padding: 0.8rem;
  border: 1px solid #1f1f1f;
  box-shadow: 0 0 25px rgba(255,150,80,0.15);
  transition: 0.35s ease;
}

.spotify-wrap:hover {
  box-shadow: 0 0 35px rgba(255,150,80,0.35);
  transform: translateY(-3px);
}

/* ==========================================================
   TIKTOK FEED
========================================================== */

#watch.section {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.tiktok-frame {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 20px;
  background: #0b0b0b;
  border: 2px solid #222;
  transition: 0.35s ease;
  box-shadow: none;
}

.tiktok-frame:hover {
  box-shadow: 0 0 35px rgba(255,150,80,0.35);
  transform: translateY(-3px);
}

.tiktok-embed {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* ==========================================================
   CONTACT FORM
========================================================== */

#contact.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  width: 100%;
  background: #161616;
  border: 1px solid #222;
  padding: 0.7rem;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: border 0.25s, box-shadow 0.25s;
  margin-bottom: 1rem;
}

form textarea {
  min-height: 140px;
}

/* Compact form */
.field {
  margin-bottom: 0.55rem !important;
}

form input,
form textarea {
  padding: 0.65rem !important;
  border-radius: 6px;
  font-size: 0.95rem;
}


.error-text {
  color: #ff4d4d;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: 0.25s ease;
  margin-top: -8px;
  margin-bottom: 10px;
}

.error-text.visible { opacity: 1; transform: translateY(0); }

.input-error {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 12px rgba(255,77,77,0.4);
}

.form-btn {
  width: 100%;
  padding: 0.95rem;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: black;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  transition: 0.3s ease;
}

.form-btn:hover {
  box-shadow: 0 0 18px rgba(255,150,80,0.4);
}

.loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
  margin: auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

#form-msg {
  margin-top: 1rem;
  font-size: 0.95rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success {
  color: #78ff9b;
  text-shadow: 0 0 10px rgba(120,255,155,0.4);
  opacity: 1 !important;
}

.error { color: #ff5b5b; opacity: 1 !important; }

/* ==========================================================
   FOOTER
========================================================== */

footer {
  padding: 2.5rem 1rem;
  border-top: 1px solid #222;
  text-align: center;
  opacity: 0.85;
}

.socials a {
  color: var(--accent1);
  margin: 0 0.4rem;
  text-decoration: none;
  transition: var(--transition);
}

.socials a:hover { color: var(--accent2); }

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 768px) {
  header nav a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }
  .hero h1 { font-size: 1.7rem; }
  .section { padding: 4rem 1rem; }
}

@media (max-width: 600px) {
  .hero { padding-top: 6.5rem !important; }
  .section { padding: 3.5rem 1rem; }
}

@media (max-width: 480px) {
  .artist-grid { grid-template-columns: 1fr; }
}
