/* ============================================
   RYZE THA KIDD - White Background with Purple Accents
   Light mode: White background, Purple accents
   Dark mode: Matte grey background, Purple accents
   ============================================ */

:root {
  --primary-bg: #ffffff;
  --secondary-bg: #ffffff;
  --tertiary-bg: #ffffff;
  --card-bg: #ffffff;
  --text-primary: #000000;
  --text-secondary: #333333;
  --text-muted: #666666;
  --border-color: #e0d5ff;
  --accent: #7c3aed;
  --accent-light: #ede9fe;
  --accent-dark: #6d28d9;
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.12);
  --shadow-lg: 0 8px 32px rgba(124, 58, 237, 0.15);
}

/* Dark mode variables */
html.dark-mode {
  --primary-bg: #2a2a2a;
  --secondary-bg: #2a2a2a;
  --tertiary-bg: #2a2a2a;
  --card-bg: #333333;
  --text-primary: #ffffff;
  --text-secondary: #ffffff;
  --text-muted: #ffffff;
  --border-color: #4a4a4a;
  --accent: #a78bfa;
  --accent-light: #3730a3;
  --accent-dark: #8b5cf6;
}

/* Ensure all text is white in dark mode */
html.dark-mode p,
html.dark-mode h1,
html.dark-mode h2,
html.dark-mode h3,
html.dark-mode h4,
html.dark-mode h5,
html.dark-mode h6,
html.dark-mode span,
html.dark-mode li,
html.dark-mode label,
html.dark-mode button,
html.dark-mode input,
html.dark-mode textarea,
html.dark-mode select,
html.dark-mode .card-body,
html.dark-mode .form-text {
  color: #ffffff !important;
}

/* Keep links purple in dark mode */
html.dark-mode a {
  color: #a78bfa !important;
}

html.dark-mode a:hover {
  color: #8b5cf6 !important;
}

* {
  box-sizing: border-box;
}

.container, .container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ====== IMPROVED SPACING SYSTEM ====== */
section {
  padding: 3.5rem 0;
  background: var(--primary-bg);
}

main {
  background: var(--primary-bg);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

section + section {
  margin-top: 1rem;
}

.card {
  padding: 1.75rem !important;
}

/* Video container proper aspect ratio and sizing */
.video-aspect-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--secondary-bg);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.video-aspect-ratio iframe {
  width: 100%;
  height: 100%;
}

/* ====== SMOOTH SECTION GRADIENTS ====== */
#interactive-bg {
  display: none;
}

main, nav, footer, #navbar-container, #footer-container {
  position: relative;
  z-index: 1;
}

/* Ensure cards have proper border radius */
.card {
  border-radius: 16px;
}

/* ====== Mobile menu (centered offcanvas) ====== */
.custom-offcanvas {
  --offcanvas-width: 92vw;
  --offcanvas-max-width: 600px;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-offcanvas .offcanvas-body {
  max-height: 80vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-offcanvas .offcanvas-dialog {
  width: var(--offcanvas-width);
  max-width: var(--offcanvas-max-width);
}

.custom-offcanvas .offcanvas-body,
.custom-offcanvas .offcanvas-header {
  background: var(--primary-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* entry animation for centered menu - REMOVED */
.custom-offcanvas .offcanvas-body {
  max-height: 80vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.custom-offcanvas .offcanvas-dialog {
  width: var(--offcanvas-width);
  max-width: var(--offcanvas-max-width);
}

.custom-offcanvas .offcanvas-body,
.custom-offcanvas .offcanvas-header {
  background: var(--primary-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Lock body scroll when menu open */
.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

/* Ensure offcanvas backdrop sits above canvas but below content */
.offcanvas-backdrop {
  z-index: 0 !important;
}

/* 404 page decorative auras must not block clicks */
.cont_aura_1, .cont_aura_2 { pointer-events: none; }

/* ============= BASE STYLES ============= */

html, body {
  height: 100%;
}

body {
  background-color: var(--primary-bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

/* ============= NAVBAR ============= */

.navbar {
  background: var(--primary-bg);
  border-bottom: 1px solid rgba(224, 213, 255, 0.3);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.04);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-collapse {
  justify-content: center !important;
}

.nav-link {
  color: var(--text-primary) !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link i {
  margin: 0 0.25rem;
}

.navbar-nav {
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--accent) !important;
  background-color: var(--accent-light);
}

.nav-link:hover::after {
  width: calc(100% - 2.5rem);
}

.navbar-toggler {
  color: var(--accent) !important;
  border: 2px solid var(--accent);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 1.25rem;
}

.navbar-toggler:hover {
  background-color: var(--accent-light);
}

.offcanvas {
  background: var(--primary-bg) !important;
  border-left: 2px solid var(--border-color);
}

.offcanvas-header {
  border-bottom: 2px solid var(--border-color);
}

.offcanvas-title {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.5rem;
}

.btn-close {
  background-color: var(--accent) !important;
  opacity: 1;
}

/* ============= DARK MODE TOGGLE ============= */

#dark-mode-toggle-desktop,
#dark-mode-toggle-mobile {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
  transition: all 0.3s ease;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

#dark-mode-toggle-desktop i,
#dark-mode-toggle-mobile i {
  font-size: 1rem;
}

#dark-mode-toggle-desktop:hover,
#dark-mode-toggle-mobile:hover {
  background-color: var(--accent-light);
  color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
}

html.dark-mode #dark-mode-toggle-desktop,
html.dark-mode #dark-mode-toggle-mobile {
  color: #a78bfa !important;
  border-color: #a78bfa !important;
  background-color: transparent;
}

html.dark-mode #dark-mode-toggle-desktop:hover,
html.dark-mode #dark-mode-toggle-mobile:hover {
  background-color: rgba(167, 139, 250, 0.2);
  color: #ffffff !important;
  border-color: #8b5cf6 !important;
}

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

footer {
  background: var(--primary-bg);
  border-top: 1px solid rgba(224, 213, 255, 0.3);
  color: var(--text-primary);
  padding: 3.5rem 0;
}

footer .container {
  display: flex;
  justify-content: center;
}

footer .row {
  width: 100%;
  justify-content: center;
  text-align: center;
}

footer .col-12,
footer .col-sm-6,
footer .col-md-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

footer h3 {
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--accent);
}

footer a:hover {
  color: var(--accent-dark);
}

html.dark-mode footer a {
  color: #a78bfa !important;
}

html.dark-mode footer a:hover {
  color: #8b5cf6 !important;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 213, 255, 0.3);
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* ============= BUTTONS ============= */

.btn {
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: 2px solid var(--accent);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #5b21b6 100%);
  border-color: #5b21b6;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.btn-outline-primary {
  border: 2px solid var(--accent);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

html.dark-mode .btn-outline-primary {
  color: #ffffff;
  border-color: #a78bfa;
}

html.dark-mode .btn-outline-primary:hover {
  background: rgba(167, 139, 250, 0.2);
  color: #ffffff;
  border-color: #8b5cf6;
}

.btn-secondary {
  background: var(--secondary-bg);
  border: 2px solid var(--border-color);
  color: #000000;
}

.btn-secondary:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

html.dark-mode .btn-secondary {
  background: var(--secondary-bg);
  border: 2px solid var(--border-color);
  color: #ffffff;
}

html.dark-mode .btn-secondary:hover {
  background: rgba(167, 139, 250, 0.2);
  border-color: #a78bfa;
  color: #ffffff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ============= CARDS & CONTAINERS ============= */

.card {
  background: var(--card-bg);
  border: 1px solid rgba(224, 213, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.04);
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.card-header {
  background: var(--secondary-bg);
  border-bottom: 1px solid rgba(224, 213, 255, 0.3);
  border-radius: 15px 15px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.card-body {
  color: var(--text-secondary);
}

.card-title {
  color: var(--text-primary);
  font-weight: 800;
}

/* ============= FORMS ============= */

.form-control,
.form-select {
  background-color: rgba(248, 247, 255, 0.6);
  border: 1px solid rgba(224, 213, 255, 0.5);
  color: var(--text-primary);
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

html.dark-mode .form-control,
html.dark-mode .form-select {
  background-color: rgba(50, 50, 50, 0.8);
  border: 1px solid rgba(100, 100, 100, 0.5);
  color: #ffffff;
}

html.dark-mode .form-control::placeholder {
  color: #999999;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(240, 236, 255, 0.8);
  border-color: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

html.dark-mode .form-control:focus,
html.dark-mode .form-select:focus {
  background-color: rgba(60, 60, 60, 0.9);
  border-color: #a78bfa;
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.15);
}

.form-label {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.form-text {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  padding: 1rem;
}

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

.hero {
  background: var(--primary-bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 213, 255, 0.4);
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  z-index: 2;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Decorative elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBackground 15s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatBackground 20s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ============= MUSIC GRID SECTION ============= */

.music-grid {
  padding: 5rem 0;
  background: var(--primary-bg);
}

.music-grid-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.music-grid-title h2 {
  margin-bottom: 1.5rem;
}

.music-grid-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.music-card {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  background: var(--card-bg);
  border: 1px solid rgba(224, 213, 255, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.music-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
}

.music-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.music-card:hover img {
  transform: scale(1.08);
}

.music-card-content {
  padding: 2rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.music-card-title {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.music-card-artist {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.music-card-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.music-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(224, 213, 255, 0.3);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============= DISCOGRAPHY SECTION ============= */

.discography {
  padding: 5rem 0;
  background: var(--primary-bg);
}

.discography-filters {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.filter-btn {
  padding: 0.7rem 1.75rem;
  border: 1px solid rgba(224, 213, 255, 0.5);
  background: var(--card-bg);
  color: var(--text-primary);
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active,
.filter-btn.filter-btn-active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.discography-item {
  background: var(--card-bg);
  border: 1px solid rgba(224, 213, 255, 0.4);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.discography-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
  transform: translateY(-6px);
}

.discography-item-image {
  width: 100%;
  height: 240px;
  background: var(--secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
}

.discography-item-content {
  padding: 1.75rem;
}

.discography-item-title {
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.discography-item-type {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.discography-item-date {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============= SECTIONS ============= */

section {
  padding: 3.5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
}

/* ============= ANIMATIONS ============= */
/* All animations removed for clean, static design */

/* ============= UTILITIES ============= */

.container-lg {
  max-width: 1200px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin: 2rem 0;
  border-radius: 1px;
}

.badge-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

/* Container max-width utilities */
.max-w-content {
  max-width: 58rem;
  margin: 0 auto;
}

.max-w-video {
  max-width: 90rem;
  margin: 0 auto;
}

.max-w-form {
  max-width: 70rem;
  margin: 0 auto;
}

.max-w-text {
  max-width: 52rem;
  margin: 0 auto;
}

.max-w-card {
  max-width: 36rem;
  margin: 0 auto;
}

.max-w-image {
  max-width: 280px;
  margin: 0 auto;
}

/* Border color utilities */
.border-accent-light {
  border-color: rgba(139, 92, 246, 0.3) !important;
}

.border-accent-subtle {
  border-color: rgba(139, 92, 246, 0.2) !important;
}

.border-accent-minimal {
  border-color: rgba(124, 58, 237, 0.12) !important;
}

.border-gray-light {
  border-color: rgba(107, 114, 128, 0.3) !important;
}

.bg-accent-minimal {
  background-color: rgba(139, 92, 246, 0.12) !important;
}

/* ============= RELEASE CARD ============= */

.release-card {
  background: var(--card-bg);
  border: 1px solid rgba(224, 213, 255, 0.4);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.release-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.1);
  transform: translateY(-6px);
}

.release-type-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.release-title {
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.release-card p {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

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

@media (max-width: 992px) {
  .navbar-toggler {
    display: block !important;
  }

  .nav-link::after {
    display: none;
  }

  .navbar-collapse {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .hero {
    min-height: 55vh;
    padding: 3rem 0;
  }

  .hero-content h1 {
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .discography-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
  }

  .music-grid-content {
    grid-template-columns: 1fr;
  }

  section {
    padding: 2.5rem 0;
  }

  .card {
    padding: 1.5rem !important;
  }

  .music-card-content {
    padding: 1.5rem;
  }

  .discography-item-content {
    padding: 1.5rem;
  }

  footer .col-12,
  footer .col-sm-6,
  footer .col-md-3 {
    margin-bottom: 1.5rem;
  }

  footer .d-flex {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  footer h3 {
    font-size: 1.1rem;
  }

  footer {
    padding: 2.5rem 0;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
}

/* ============= UTILITY CLASSES ============= */

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Icon container standards */
i, [class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* Button icon spacing */
.btn i, .btn [class*="fa-"] {
  margin: 0 0.25rem;
  font-size: inherit;
}

/* Link icon spacing */
a i, a [class*="fa-"] {
  margin: 0 0.25rem;
  display: inline-flex;
  align-items: center;
}

/* Footer icon sizing and spacing */
footer i, footer [class*="fa-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  margin: 2rem 0;
  border-radius: 1px;
}

.badge-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}
