/* Fidato Personal Brand Ecosystem Stylesheet */

:root {
  --bg-dark: #080b11;
  --bg-card: #0f1523;
  --bg-card-hover: #161e33;
  --text-main: #f0f4fc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);

  /* Pillar Accents */
  --accent-art: #a855f7;    /* Amethyst Purple for Content Creator / Art (FIRST) */
  --accent-audio: #ffb703;  /* Warm Amber for AI Music */
  --accent-it: #00f2fe;     /* Electric Cyan for IT Architecture (LAST AT TOP) */
  --accent-gold: #eab308;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 17, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent-art), var(--accent-it));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

.sub-brand {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.nav-btn.active {
  color: var(--accent-art);
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.08);
}

#nav-btn-it.active {
  color: var(--accent-it);
  border-color: rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.06);
}

.asset-btn {
  color: var(--accent-audio);
}

.cta-nav-btn {
  background: linear-gradient(135deg, var(--accent-art), var(--accent-it));
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(0, 242, 254, 0.1) 50%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  filter: blur(50px);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-art);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.accent-art {
  background: linear-gradient(135deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-audio {
  background: linear-gradient(135deg, #fbbf24, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-it {
  background: linear-gradient(135deg, #38bdf8, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-link {
  color: var(--accent-art);
  text-decoration: underline;
}

.hero-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-art);
  margin-bottom: 16px;
}

.hero-desc {
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: 16px;
  color: var(--text-muted);
}

/* Pillar Grid */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card-hover);
}

.card-art:hover { border-color: var(--accent-art); }
.card-audio:hover { border-color: var(--accent-audio); }
.card-it:hover { border-color: var(--accent-it); }

.pillar-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pillar-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  display: inline-block;
}

/* Tab Sections */
.tab-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 32px;
}

.badge-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.label-art { background: rgba(168, 85, 247, 0.12); color: var(--accent-art); }
.label-audio { background: rgba(255, 183, 3, 0.12); color: var(--accent-audio); }
.label-it { background: rgba(0, 242, 254, 0.12); color: var(--accent-it); }
.label-gold { background: rgba(234, 179, 8, 0.12); color: var(--accent-gold); }
.label-cyan { background: rgba(0, 242, 254, 0.12); color: var(--accent-it); }

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Live Art Portfolio Callout Banner */
.nxt-portfolio-banner {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(15, 21, 35, 0.9));
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 28px;
  border-radius: 14px;
  margin-bottom: 36px;
}

.banner-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-art);
  background: rgba(168, 85, 247, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.banner-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
}

.banner-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* Featured Placeholder Highlighting */
.featured-placeholder {
  border: 2px solid var(--accent-art) !important;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.25);
}

.placeholder-status {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-art);
  background: rgba(168, 85, 247, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Grids & Content Blocks */
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 900px) {
  .content-grid-2 { grid-template-columns: 1fr; }
}

.info-block h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 16px;
}

.spec-list {
  list-style: none;
  margin-bottom: 28px;
}

.spec-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: var(--text-muted);
}

.spec-list li strong {
  color: var(--text-main);
}

.feature-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  object-fit: cover;
}

.img-caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
  text-align: center;
}

/* Buttons & CTA Boxes */
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-art { background: var(--accent-art); color: #fff; }
.btn-audio { background: var(--accent-audio); color: #000; }
.btn-it { background: var(--accent-it); color: #000; }
.btn-full { width: 100%; text-align: center; }

/* Medium Thought Leadership Showcase */
.medium-articles-section {
  margin-top: 48px;
}

.sub-heading-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card:hover {
  border-color: var(--accent-it);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.article-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-it);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #fff;
}

.article-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.read-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-it);
}

/* Suno Playlists Section */
.suno-playlists-section {
  margin-top: 48px;
}

.playlist-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .playlist-cards-grid { grid-template-columns: 1fr; }
}

.playlist-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 183, 3, 0.2);
  padding: 24px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.playlist-icon {
  font-size: 32px;
  color: var(--accent-audio);
  background: rgba(255, 183, 3, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.playlist-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 6px;
}

.playlist-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Portfolio Gallery & Authentic Cards */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .portfolio-gallery { grid-template-columns: 1fr; }
}

.gallery-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-art);
}

.badge-overlay {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(168, 85, 247, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 2;
}

.gallery-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 24px;
}

.card-category {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-art);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 6px 0 10px;
}

.full-span {
  grid-column: 1 / -1;
  padding: 32px;
}

.section-sub-title h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 4px;
}

.section-sub-title p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.thumbnail-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .thumbnail-showcase-grid { grid-template-columns: 1fr; }
}

.thumb-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.thumb-card:hover {
  border-color: var(--accent-gold);
}

.thumb-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.thumb-caption {
  padding: 16px;
}

.lang-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(234, 179, 8, 0.15);
  color: var(--accent-gold);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.thumb-caption h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 6px;
}

.thumb-caption p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Audio Player Mock */
.audio-player-mock {
  margin-top: 20px;
  background: rgba(255, 183, 3, 0.05);
  border: 1px solid rgba(255, 183, 3, 0.2);
  padding: 20px;
  border-radius: 12px;
}

.player-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 12px;
}

.now-playing {
  font-family: var(--font-mono);
  color: var(--accent-audio);
}

.waveform-bar {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
  margin-bottom: 16px;
}

.bar {
  flex: 1;
  background: var(--accent-audio);
  border-radius: 2px;
}

.bar-1 { height: 40%; }
.bar-2 { height: 80%; }
.bar-3 { height: 100%; }
.bar-4 { height: 60%; }
.bar-5 { height: 90%; }

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.play-btn {
  background: var(--accent-audio);
  color: #000;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.suno-link {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
}

/* Resume Section */
.resume-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
}

.resume-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.resume-header h3 {
  font-size: 28px;
  font-family: var(--font-heading);
}

.resume-header .subtitle {
  color: var(--accent-gold);
  font-weight: 600;
}

.meta-line {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.meta-line a { color: var(--accent-art); }

.resume-block {
  margin-bottom: 24px;
}

.resume-block h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent-art);
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding-bottom: 4px;
}

.cs-item {
  margin-bottom: 14px;
}

.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* Asset Hub */
.asset-hub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

@media (max-width: 900px) {
  .asset-hub-grid { grid-template-columns: 1fr; }
}

.checklist-card, .submission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 14px;
}

.item-group {
  margin-bottom: 20px;
}

.item-group h4 {
  font-size: 14px;
  color: var(--accent-art);
  margin-bottom: 8px;
}

.check-item {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
  cursor: pointer;
}

.check-item input {
  margin-right: 8px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  padding: 12px;
  font-family: var(--font-body);
}

.form-success-msg {
  margin-top: 12px;
  font-size: 14px;
  color: var(--accent-art);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  background: #05070b;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  letter-spacing: 2px;
}

.copyright {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-art);
}
