/* ===== Global ===== */
:root {
  --bg: #0f1115;
  --text: #eee;
  --accent: #4f8cff;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  text-align: center;
}

/* ===== Navigation ===== */
#main-nav {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  padding: 12px 0;
  z-index: 1000;
}

#main-nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 16px;
  font-size: 16px;
  opacity: 0.85;
}

#main-nav a.active {
  font-weight: bold;
  border-bottom: 2px solid var(--accent);
  opacity: 1;
}

#main-nav a:hover {
  color: var(--accent);
  opacity: 1;
}

/* ===== Sections / Content ===== */
section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: left;
}

main.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
}

/* ===== Landing Page ===== */
body.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

body.landing #landing-container {
  max-width: 800px;
  width: 90%;
}

body.landing header {
  animation: fadeSlideDown 1s ease-out forwards;
  opacity: 0;
}

body.landing #portal-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

body.landing #portal-buttons .portal-btn {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  margin: 10px;
  padding: 14px 26px;
  font-size: 16px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  animation: fadeSlideUp 0.8s ease-out forwards;
}

body.landing #portal-buttons .portal-btn:nth-child(1) { animation-delay: 1s; }
body.landing #portal-buttons .portal-btn:nth-child(2) { animation-delay: 1.2s; }
body.landing #portal-buttons .portal-btn:nth-child(3) { animation-delay: 1.4s; }

body.landing #portal-buttons .portal-btn:hover {
  background: #3765c9;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(79, 140, 255, 0.6);
}

/* ===== Keyframes ===== */
@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== Page Themes ===== */
body.business {
  --bg: #f4f6f8;
  --text: #222;
  --accent: #0077cc;
}

body.music {
  --bg: #1a1a2e;
  --text: #f8f8f8;
  --accent: #e94560;
}

body.personal {
  --bg: #fff8f0;
  --text: #333;
  --accent: #da627d;
}

/* ===== Music Page Layout ===== */
body.music h1,
body.music h2,
body.music h3 {
  color: var(--text);
}

.bands-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.bands-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.band-name {
  font-weight: 600;
  margin-right: 6px;
}

.band-role {
  opacity: 0.7;
  margin-right: 12px;
}

/* ===== Music Page Icon Styling (Brand Colored – FIXED) ===== */
body.music .band-icons {
  display: inline-flex;
  gap: 12px;
  margin-left: auto;
}

body.music .band-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.music .band-icons img {
  width: 22px;
  height: 22px;
  opacity: 0.75;
  filter: invert(1) grayscale(100%);
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.25s ease;
}

/* Scale only — NO filter here */
body.music .band-icons a:hover img {
  transform: scale(1.2);
  opacity: 1;
}

/* ===== Brand Colors (FORCED OVERRIDE) ===== */

/* Spotify Green */
body.music .band-icons a.icon-spotify:hover img {
  filter: invert(56%) sepia(84%) saturate(420%) hue-rotate(86deg) brightness(95%) contrast(90%);
}

/* YouTube Red */
body.music .band-icons a.icon-youtube:hover img {
  filter: invert(16%) sepia(98%) saturate(7410%) hue-rotate(357deg) brightness(95%) contrast(112%);
}

/* Facebook Blue */
body.music .band-icons a.icon-facebook:hover img {
  filter: invert(32%) sepia(94%) saturate(1860%) hue-rotate(203deg) brightness(96%) contrast(92%);
}

/* Website / Globe (Accent color) */
body.music .band-icons a.icon-website:hover img {
  filter: invert(63%) sepia(48%) saturate(3900%) hue-rotate(330deg) brightness(98%) contrast(90%);
}

/* ===== Services ===== */
.services-list {
  margin-left: 1.25rem;
  list-style: square;
}

/* ===== Footer ===== */
footer {
  margin-top: 40px;
  padding: 16px 0;
  background: rgba(0,0,0,0.7);
  color: var(--text);
  font-size: 14px;
  text-align: center;
}
