/*
Theme Name: HJ Music
Theme URI: https://www.hugojousseaume.fr
Author: Hugo Jousseaume
Author URI: https://www.hugojousseaume.fr
Description: Thème WordPress sur mesure pour artiste musical indépendant. Gestion complète des albums, morceaux, paroles, statistiques d'écoute, favoris, SEO optimisé, mode sombre/clair, et interface d'administration avancée.
Version: 2.0.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hj-music
Tags: music, portfolio, custom-logo, custom-menu, featured-images, audio, artist

HJ Music - Thème WordPress pour musicien
© 2024-2026 Hugo Jousseaume. Tous droits réservés.
*/

/* ==========================================================================
   Variables CSS
   ========================================================================== */
:root {
	--hj-primary: #1a1a2e;
	--hj-secondary: #16213e;
	--hj-accent: #e94560;
	--hj-accent-hover: #ff6b6b;
	--hj-gold: #d4af37;
	--hj-text: #eaeaea;
	--hj-text-muted: #a0a0a0;
	--hj-bg-dark: #0f0f1a;
	--hj-bg-card: rgba(255, 255, 255, 0.03);
	--hj-border: rgba(255, 255, 255, 0.08);
	--hj-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	--hj-radius: 12px;
	--hj-radius-sm: 6px;
	--hj-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--hj-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--hj-font-display: 'Playfair Display', Georgia, serif;
}

/* Thème clair */
[data-theme="light"] {
	--hj-primary: #f8f9fa;
	--hj-secondary: #e9ecef;
	--hj-text: #1a1a2e;
	--hj-text-muted: #6c757d;
	--hj-bg-dark: #ffffff;
	--hj-bg-card: rgba(0, 0, 0, 0.02);
	--hj-border: rgba(0, 0, 0, 0.1);
	--hj-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] body {
	background: var(--hj-bg-dark);
	background-image: none;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
	color: var(--hj-text);
}

[data-theme="light"] .hj-header {
	background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .hj-hero-title {
	background: linear-gradient(135deg, var(--hj-text) 0%, var(--hj-accent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--hj-font-main);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--hj-text);
	background: var(--hj-bg-dark);
	background-image: 
		radial-gradient(ellipse at top, var(--hj-secondary) 0%, transparent 50%),
		radial-gradient(ellipse at bottom, var(--hj-primary) 0%, transparent 50%);
	background-attachment: fixed;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--hj-accent);
	text-decoration: none;
	transition: var(--hj-transition);
}

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

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--hj-font-display);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: #fff;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.hj-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hj-section {
	padding: 5rem 0;
}

.hj-grid {
	display: grid;
	gap: 2rem;
}

.hj-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.hj-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ==========================================================================
   Header
   ========================================================================== */
.hj-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	background: rgba(15, 15, 26, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--hj-border);
	transition: var(--hj-transition);
}

.hj-header.scrolled {
	padding: 0.75rem 0;
	background: rgba(15, 15, 26, 0.95);
}

.hj-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hj-logo {
	font-family: var(--hj-font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.hj-logo span {
	color: var(--hj-accent);
}

/* Navigation */
.hj-nav ul {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.hj-nav a {
	color: var(--hj-text);
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.5rem 0;
	position: relative;
}

.hj-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--hj-accent);
	transition: var(--hj-transition);
}

.hj-nav a:hover::after,
.hj-nav .current-menu-item a::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.hj-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hj-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--hj-text);
	margin: 6px 0;
	transition: var(--hj-transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hj-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.hj-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('assets/images/hero-pattern.svg') center/cover;
	opacity: 0.05;
}

.hj-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 2rem;
}

.hj-hero-title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #fff 0%, var(--hj-gold) 50%, var(--hj-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hj-hero-subtitle {
	font-size: 1.25rem;
	color: var(--hj-text-muted);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.hj-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-radius: var(--hj-radius);
	border: none;
	cursor: pointer;
	transition: var(--hj-transition);
}

.hj-btn-primary {
	background: linear-gradient(135deg, var(--hj-accent), var(--hj-accent-hover));
	color: #fff;
	box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
}

.hj-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
	color: #fff;
}

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

.hj-btn-outline:hover {
	border-color: var(--hj-accent);
	color: var(--hj-accent);
}

/* ==========================================================================
   Cards
   ========================================================================== */
.hj-card {
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	border-radius: var(--hj-radius);
	overflow: hidden;
	transition: var(--hj-transition);
}

.hj-card:hover {
	transform: translateY(-4px);
	border-color: rgba(233, 69, 96, 0.3);
	box-shadow: var(--hj-shadow);
}

/* ==========================================================================
   Album Card
   ========================================================================== */
.hj-album-card {
	position: relative;
}

.hj-album-cover {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
}

.hj-album-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--hj-transition);
}

.hj-album-card:hover .hj-album-cover img {
	transform: scale(1.05);
}

.hj-album-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 15, 26, 0.9) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: var(--hj-transition);
}

.hj-album-card:hover .hj-album-overlay {
	opacity: 1;
}

.hj-album-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 60px;
	height: 60px;
	background: var(--hj-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--hj-transition);
}

.hj-album-card:hover .hj-album-play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.hj-album-info {
	padding: 1.25rem;
}

.hj-album-title {
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
}

.hj-album-year {
	color: var(--hj-text-muted);
	font-size: 0.85rem;
}

/* ==========================================================================
   Audio Player
   ========================================================================== */
.hj-player {
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	border-radius: var(--hj-radius);
	padding: 2rem;
	margin-bottom: 2rem;
}

.hj-player-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.hj-player-cover {
	width: 120px;
	height: 120px;
	border-radius: var(--hj-radius-sm);
	overflow: hidden;
	flex-shrink: 0;
}

.hj-player-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hj-player-info h3 {
	font-size: 1.5rem;
	margin-bottom: 0.25rem;
}

.hj-player-info .album-name {
	color: var(--hj-text-muted);
	font-size: 0.9rem;
}

.hj-player-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.hj-player-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--hj-transition);
	background: var(--hj-border);
	color: var(--hj-text);
}

.hj-player-btn.play-pause {
	width: 60px;
	height: 60px;
	background: var(--hj-accent);
	color: #fff;
}

.hj-player-btn:hover {
	transform: scale(1.05);
}

.hj-player-btn.play-pause:hover {
	background: var(--hj-accent-hover);
}

.hj-player-progress {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hj-progress-bar {
	flex: 1;
	height: 6px;
	background: var(--hj-border);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.hj-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--hj-accent), var(--hj-accent-hover));
	border-radius: 3px;
	width: 0%;
	transition: width 0.1s linear;
}

.hj-player-time {
	font-size: 0.85rem;
	color: var(--hj-text-muted);
	font-variant-numeric: tabular-nums;
	min-width: 45px;
}

.hj-player-volume {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hj-volume-slider {
	width: 80px;
	height: 4px;
	background: var(--hj-border);
	border-radius: 2px;
	cursor: pointer;
	position: relative;
}

.hj-volume-fill {
	height: 100%;
	background: var(--hj-accent);
	border-radius: 2px;
	width: 80%;
}

/* Playlist */
.hj-playlist {
	border-top: 1px solid var(--hj-border);
	padding-top: 1.5rem;
	max-height: 400px;
	overflow-y: auto;
}

.hj-playlist::-webkit-scrollbar {
	width: 6px;
}

.hj-playlist::-webkit-scrollbar-track {
	background: var(--hj-border);
	border-radius: 3px;
}

.hj-playlist::-webkit-scrollbar-thumb {
	background: var(--hj-accent);
	border-radius: 3px;
}

.hj-track {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-radius: var(--hj-radius-sm);
	cursor: pointer;
	transition: var(--hj-transition);
}

.hj-track:hover {
	background: rgba(255, 255, 255, 0.05);
}

.hj-track.active {
	background: rgba(233, 69, 96, 0.1);
}

.hj-track-number {
	width: 30px;
	text-align: center;
	color: var(--hj-text-muted);
	font-size: 0.9rem;
}

.hj-track.active .hj-track-number {
	color: var(--hj-accent);
}

.hj-track-info {
	flex: 1;
}

.hj-track-title {
	font-weight: 500;
	margin-bottom: 0.1rem;
}

.hj-track.active .hj-track-title {
	color: var(--hj-accent);
}

.hj-track-meta {
	font-size: 0.8rem;
	color: var(--hj-text-muted);
}

.hj-track-duration {
	color: var(--hj-text-muted);
	font-size: 0.85rem;
	font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.hj-contact-form {
	max-width: 600px;
	margin: 0 auto;
}

.hj-form-group {
	margin-bottom: 1.5rem;
}

.hj-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	font-size: 0.9rem;
}

.hj-form-input,
.hj-form-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	border-radius: var(--hj-radius-sm);
	color: var(--hj-text);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--hj-transition);
}

.hj-form-input:focus,
.hj-form-textarea:focus {
	outline: none;
	border-color: var(--hj-accent);
	box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.hj-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.hj-form-input::placeholder,
.hj-form-textarea::placeholder {
	color: var(--hj-text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hj-footer {
	background: var(--hj-primary);
	border-top: 1px solid var(--hj-border);
	padding: 3rem 0 2rem;
	margin-top: 5rem;
}

.hj-footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.hj-footer-copy {
	color: var(--hj-text-muted);
	font-size: 0.9rem;
}

.hj-footer-links {
	display: flex;
	gap: 2rem;
}

.hj-footer-links a {
	color: var(--hj-text-muted);
	font-size: 0.9rem;
}

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

/* Social Icons */
.hj-social {
	display: flex;
	gap: 1rem;
}

.hj-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hj-text);
	transition: var(--hj-transition);
}

.hj-social a:hover {
	background: var(--hj-accent);
	border-color: var(--hj-accent);
	color: #fff;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.text-muted { color: var(--hj-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Section Title */
.hj-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.hj-section-title h2 {
	margin-bottom: 0.5rem;
}

.hj-section-title p {
	color: var(--hj-text-muted);
	max-width: 600px;
	margin: 0 auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
	.hj-menu-toggle {
		display: block;
	}
	
	.hj-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: var(--hj-primary);
		padding: 5rem 2rem 2rem;
		transition: var(--hj-transition);
		z-index: 999;
	}
	
	.hj-nav.active {
		right: 0;
	}
	
	.hj-nav ul {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.hj-hero-title {
		font-size: 2.5rem;
	}
	
	.hj-player-header {
		flex-direction: column;
		text-align: center;
	}
	
	.hj-player-controls {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.hj-footer-content {
		flex-direction: column;
		text-align: center;
	}
}

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

.hj-animate {
	animation: fadeInUp 0.6s ease forwards;
}

.hj-animate-delay-1 { animation-delay: 0.1s; }
.hj-animate-delay-2 { animation-delay: 0.2s; }
.hj-animate-delay-3 { animation-delay: 0.3s; }

/* Lyrics Page */
.hj-lyrics {
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	border-radius: var(--hj-radius);
	padding: 2.5rem;
	font-size: 1.1rem;
	line-height: 2;
	white-space: pre-line;
}

.hj-lyrics-title {
	border-bottom: 1px solid var(--hj-border);
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}

/* Messages Flash */
.hj-message {
	padding: 1rem 1.5rem;
	border-radius: var(--hj-radius-sm);
	margin-bottom: 1.5rem;
}

.hj-message-success {
	background: rgba(46, 204, 113, 0.1);
	border: 1px solid rgba(46, 204, 113, 0.3);
	color: #2ecc71;
}

.hj-message-error {
	background: rgba(233, 69, 96, 0.1);
	border: 1px solid rgba(233, 69, 96, 0.3);
	color: var(--hj-accent);
}

/* ==========================================================================
   Share Buttons
   ========================================================================== */
.hj-share-buttons {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin: 1.5rem 0;
}

.hj-share-label {
	font-size: 0.9rem;
	color: var(--hj-text-muted);
	margin-right: 0.5rem;
}

.hj-share-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hj-text);
	transition: var(--hj-transition);
}

.hj-share-btn:hover {
	transform: scale(1.1);
}

.hj-share-facebook:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.hj-share-twitter:hover { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.hj-share-whatsapp:hover { background: #25d366; border-color: #25d366; color: #fff; }
.hj-share-email:hover { background: var(--hj-accent); border-color: var(--hj-accent); color: #fff; }
.hj-share-copy:hover { background: var(--hj-gold); border-color: var(--hj-gold); color: #fff; }

/* ==========================================================================
   Favorites
   ========================================================================== */
.hj-favorite-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hj-text-muted);
	transition: var(--hj-transition);
}

.hj-favorite-btn .heart-icon {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	transition: var(--hj-transition);
}

.hj-favorite-btn:hover .heart-icon {
	color: var(--hj-accent);
}

.hj-favorite-btn.is-favorite .heart-icon {
	fill: var(--hj-accent);
	stroke: var(--hj-accent);
	color: var(--hj-accent);
}

.hj-favorite-btn:hover {
	transform: scale(1.1);
}

.hj-favorite-count {
	font-size: 0.85rem;
	color: var(--hj-text-muted);
}

/* ==========================================================================
   Download Button
   ========================================================================== */
.hj-download-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	border-radius: var(--hj-radius-sm);
	color: var(--hj-text);
	font-size: 0.9rem;
	transition: var(--hj-transition);
}

.hj-download-btn:hover {
	background: var(--hj-accent);
	border-color: var(--hj-accent);
	color: #fff;
}

/* ==========================================================================
   Production Notes
   ========================================================================== */
.hj-production-notes {
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	border-radius: var(--hj-radius);
	padding: 1.5rem;
	margin: 1.5rem 0;
}

.hj-production-notes h3 {
	font-size: 1rem;
	color: var(--hj-accent);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hj-credits-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hj-credits-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--hj-border);
	display: flex;
	justify-content: space-between;
}

.hj-credits-list li:last-child {
	border-bottom: none;
}

.hj-credit-role {
	color: var(--hj-text-muted);
	font-size: 0.9rem;
}

.hj-credit-name {
	font-weight: 500;
}

/* ==========================================================================
   Track Meta (plays count, etc.)
   ========================================================================== */
.hj-track-meta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	color: var(--hj-text-muted);
	font-size: 0.9rem;
	margin: 1rem 0;
}

.hj-track-meta-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hj-track-meta-item svg {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   Copy Link Notification
   ========================================================================== */
.hj-copy-toast {
	position: fixed;
	bottom: 80px;
	right: 20px;
	background: var(--hj-accent);
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: var(--hj-radius-sm);
	font-size: 0.9rem;
	opacity: 0;
	transform: translateY(10px);
	transition: var(--hj-transition);
	z-index: 1001;
}

.hj-copy-toast.show {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Social Links
   ========================================================================== */
.hj-social {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hj-social-link {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--hj-bg-card);
	border: 1px solid var(--hj-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hj-text);
	transition: var(--hj-transition);
}

.hj-social-link:hover {
	transform: scale(1.1);
	color: #fff;
}

.hj-social-spotify:hover { background: #1DB954; border-color: #1DB954; }
.hj-social-deezer:hover { background: #FF0092; border-color: #FF0092; }
.hj-social-youtube:hover { background: #FF0000; border-color: #FF0000; }
.hj-social-soundcloud:hover { background: #FF5500; border-color: #FF5500; }
.hj-social-bandcamp:hover { background: #629AA9; border-color: #629AA9; }
.hj-social-facebook:hover { background: #1877F2; border-color: #1877F2; }
.hj-social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
