/* ============================
   COLOR PALETTE - No Longer Human Theme
   ============================ */
:root {
  --dark-bg: #0a0a0a;
  --dark-secondary: #0f0f0f;
  --red-primary: #c41e3a;
  --red-dark: #8b1428;
  --red-bright: #e63e5c;
  --gold: #d4af37;
  --text-primary: #f5f5f5;
  --text-muted: #999999;
  --border-dark: #1a1a1a;
}

/* ============================
   GLOBAL STYLES
   ============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

/* ============================
   NAVIGATION
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-name {
  color: var(--red-primary);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-title {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--red-primary);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--red-primary);
  transition: width 0.3s ease;
}

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

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-bg);
}

.hero-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  animation: heroZoom 0.8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(196, 30, 58, 0.15) 50%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ============================
   DIVIDER
   ============================ */
.divider {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--red-primary) 15%,
    var(--red-primary) 50%,
    var(--red-primary) 85%,
    transparent 100%
  );
  margin: 4rem 0;
  animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%,
  100% {
    opacity: 0.4;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.2);
  }
  50% {
    opacity: 0.9;
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.6);
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(139, 20, 40, 0.05) 100%
  );
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow:
    0 10px 40px rgba(196, 30, 58, 0.3),
    0 0 60px rgba(196, 30, 58, 0.15);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(196, 30, 58, 0.3);
}

.about-image img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(196, 30, 58, 0.5),
    0 0 80px rgba(196, 30, 58, 0.25);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about-text em {
  color: var(--red-primary);
  font-style: italic;
}

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

/* ============================
   MUSIC SECTION
   ============================ */
.music {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(139, 20, 40, 0.08) 100%
  );
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.music h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--gold);
  font-weight: 700;
}

.album-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.album-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow:
    0 20px 60px rgba(196, 30, 58, 0.4),
    0 0 80px rgba(196, 30, 58, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid rgba(196, 30, 58, 0.4);
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.album-image img:hover {
  transform: translateY(-12px) scale(1.06);
  box-shadow:
    0 40px 100px rgba(196, 30, 58, 0.6),
    0 0 120px rgba(196, 30, 58, 0.35);
  filter: brightness(1.15);
}

.album-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
}

.album-subtitle {
  color: var(--red-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.album-info p {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ============================
   STREAMING SECTION
   ============================ */
.streaming-section {
  text-align: center;
  margin: 3rem 0 4rem;
}

.streaming-section h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: var(--border-dark);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.platform:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.platform.spotify:hover {
  background-color: #1db954;
  color: #fff;
  box-shadow: 0 15px 40px rgba(29, 185, 84, 0.4);
  border-color: #1db954;
}

.platform.apple:hover {
  background-color: #fa243c;
  color: #fff;
  box-shadow: 0 15px 40px rgba(250, 36, 60, 0.4);
  border-color: #fa243c;
}

.platform.youtube:hover {
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
  border-color: #ff0000;
}

.platform svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--red-primary);
  color: #fff;
  margin-bottom: 3rem;
}

.btn-primary:hover {
  background-color: var(--red-bright);
  box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
  transform: translateY(-2px);
}

.btn-support {
  background-color: var(--red-primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  margin: 2rem 0;
}

.btn-support:hover {
  background-color: var(--red-bright);
  box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
  transform: translateY(-3px);
}

/* ============================
   CONNECT SECTION
   ============================ */
.connect {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(139, 20, 40, 0.06) 100%
  );
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.connect h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.connect > p {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--border-dark);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.social:hover {
  transform: translateY(-12px) scale(1.15) rotate(5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.social.youtube:hover {
  background-color: #ff0000;
  color: #fff;
  box-shadow: 0 20px 50px rgba(255, 0, 0, 0.4);
  border-color: #ff0000;
}

.social.spotify:hover {
  background-color: #1db954;
  color: #fff;
  box-shadow: 0 20px 50px rgba(29, 185, 84, 0.4);
  border-color: #1db954;
}

.social.apple:hover {
  background-color: #fa243c;
  color: #fff;
  box-shadow: 0 20px 50px rgba(250, 36, 60, 0.4);
  border-color: #fa243c;
}

.social.instagram:hover {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
  box-shadow: 0 20px 50px rgba(238, 42, 123, 0.4);
  border-color: #ee2a7b;
}

.social svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ============================
   SUPPORT SECTION
   ============================ */
.support {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    rgba(196, 30, 58, 0.1) 50%,
    var(--dark-bg) 100%
  );
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.support h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.support > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.support-text {
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(139, 20, 40, 0.1) 100%
  );
  border-top: 1px solid var(--border-dark);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4rem;
}

footer p {
  margin: 0;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .about-container,
  .album-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    width: 220px;
  }

  .album-image img {
    max-width: 300px;
  }

  .music h2,
  .about-text h2,
  .connect h2,
  .support h2 {
    font-size: 1.8rem;
  }

  .album-info h3 {
    font-size: 1.5rem;
  }

  .about-text p,
  .album-info p {
    font-size: 0.95rem;
  }

  .social-icons {
    gap: 1.5rem;
  }

  .social {
    width: 50px;
    height: 50px;
  }

  .social svg {
    width: 22px;
    height: 22px;
  }

  .platform-icons {
    gap: 1rem;
  }

  .platform {
    width: 50px;
    height: 50px;
  }

  .platform svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .logo-name {
    font-size: 1.1rem;
  }

  .logo-title {
    font-size: 0.6rem;
  }

  .about,
  .music,
  .connect,
  .support {
    padding: 3rem 1rem;
  }

  .about-image img {
    width: 180px;
  }

  .album-image img {
    max-width: 250px;
  }

  .music h2,
  .about-text h2,
  .connect h2,
  .support h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .album-info h3 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-support {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social {
    width: 45px;
    height: 45px;
  }

  .social svg {
    width: 20px;
    height: 20px;
  }

  .platform-icons {
    gap: 0.75rem;
  }

  .platform {
    width: 45px;
    height: 45px;
  }

  .platform svg {
    width: 22px;
    height: 22px;
  }
}
