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

:root {
  --bg: #000;
  --pink: #ff2f7d;
  --text: #eaeaea;
  --muted: #b5b5b5;
  --card-bg: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.15);
}

/* =========================
BASE STYLES
========================= */
body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top left, #2b0015, #000 65%);
  color: var(--text);
  line-height: 1.6;
}

/* Safe image rule */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 58px;
  width: auto;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: 0.2s;
}

.nav a:hover {
  color: var(--pink);
}

/* =========================
LAYOUT SYSTEM
========================= */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 24px;
}

/* =========================
HERO SECTION
========================= */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Homepage hero layout (text + logo) */
.hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.gradient-text {
  color: var(--pink);
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

/* =========================
CENTER HERO TITLES (INNER PAGES)
========================= */
body:not(.home-page) .hero {
  text-align: center;
}

body:not(.home-page) .hero-content {
  margin: 0 auto;
}

/* =========================
PREMIUM HOMEPAGE LOGO
========================= */
.hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  width: 420px;
  max-width: 100%;
  z-index: 2;
  opacity: 0.95;
  filter: drop-shadow(0 25px 60px rgba(255,47,125,0.35));
  animation: floatLogo 6s ease-in-out infinite;
}

/* glowing aura behind logo */
.logo-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,47,125,0.35), transparent 65%);
  filter: blur(60px);
  z-index: 1;
}

/* subtle floating animation */
@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* =========================
BUTTONS
========================= */
.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: var(--pink);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,47,125,0.4);
}

.btn.small {
  padding: 8px 18px;
  font-size: 13px;
}

/* =========================
TEXT STYLES
========================= */
.section-title {
  font-size: 42px;
  margin-bottom: 14px;
}

.section-sub {
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 36px;
}

/* =========================
CARD GRID (3 BOXES)
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}

.card h3 {
  margin-bottom: 10px;
}

/* =========================
PROFILE IMAGES (ARTISTS + CONTACT)
========================= */
.profile-image {
  width: 320px;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
  margin-bottom: 14px;
}

/* =========================
ARTIST LINKS
========================= */
.artist-link {
  color: var(--pink);
  text-decoration: none;
  font-size: 14px;
}

.artist-link:hover {
  text-decoration: underline;
}

/* =========================
NEWS GRID
========================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: 0.25s;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
}

/* =========================
FORMS
========================= */
form input,
form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 12px;
  background: #000;
  border: 1px solid #333;
  color: white;
  border-radius: 8px;
  font-size: 14px;
}

/* =========================
FOOTER
========================= */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

/* =========================
ANIMATIONS
========================= */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

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

/* =========================
RESPONSIVE (MOBILE)
========================= */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 46px;
  }

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

  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .nav a {
    margin: 0 10px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-logo img {
    width: 240px;
  }

  .logo-glow {
    width: 220px;
    height: 220px;
  }
}
