/* ===== PALETTE DE COULEURS MATADOR ===== */
:root {
  /* Couleurs principales */
  --primary-blue: #1976D2;
  --primary-blue-light: #42A5F5;
  --primary-blue-dark: #1565C0;
  --secondary-black: #212121;
  --secondary-black-light: #424242;
  --secondary-black-dark: #000000;

  /* Couleurs d'accentuation */
  --accent-gold: #FFB300;
  --accent-gold-light: #FFCA28;
  --accent-gold-dark: #FF8F00;

  /* Couleurs neutres */
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #EEEEEE;
  --grey-300: #E0E0E0;
  --grey-400: #BDBDBD;
  --grey-500: #9E9E9E;
  --grey-600: #757575;
  --grey-700: #616161;
  --grey-800: #424242;
  --grey-900: #212121;

  /* Couleurs de statut */
  --success: #4CAF50;
  --warning: #FF9800;
  --error: #F44336;
  --info: #2196F3;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-black) 0%, var(--secondary-black-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);

  /* Ombres */
  --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-primary: 'Roboto', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-accent: 'Roboto Slab', 'Times New Roman', serif;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== HOME PAGE CONTENT STYLES ===== */
.page-content {
  margin-top: 2rem;
}

.latest-music-section {
  background: var(--grey-50);
}

.about-preview-section {
  background: linear-gradient(135deg, var(--grey-100) 0%, var(--white) 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-black);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--grey-600);
  margin-bottom: 2rem;
  text-align: center;
}

.music-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.music-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image-container {
  position: relative;
  overflow: hidden;
}

.card-image {
  transition: transform var(--transition-slow);
}

.music-card:hover .card-image {
  transform: scale(1.1);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.music-card:hover .play-overlay {
  opacity: 1;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-black);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1rem;
  color: var(--grey-600);
  margin: 0;
}

.about-content {
  padding-right: 2rem;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--grey-700);
}

.about-image-container {
  text-align: center;
}

.about-image {
  border-radius: 16px;
  box-shadow: var(--shadow-large);
}

/* ===== BANNER COMPONENT STYLES ===== */
.banner-component {
  position: relative;
  z-index: 1;
  --primary-color: #1976D2;
  --accent-color: #FFB300;
}

/* ==================== HOME BANNER STYLES ==================== */
.home-banner {
    position: relative;
    min-height: 90vh;
    margin-top: -50px;
    padding-top: 50px;
    background: linear-gradient(135deg,
        rgba(25, 118, 210, 0.15) 0%,
        rgba(33, 33, 33, 0.9) 40%,
        rgba(31, 27, 27, 0.95) 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Effects */
.banner-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-notes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.music-note {
    position: absolute;
    color: rgba(25, 118, 210, 0.2);
    font-size: 1.5rem;
    font-weight: bold;
    animation: float 8s ease-in-out infinite;
}

.note-1 { top: 20%; left: 10%; animation-delay: 0s; }
.note-2 { top: 60%; right: 15%; animation-delay: 1.5s; }
.note-3 { top: 40%; left: 80%; animation-delay: 3s; }
.note-4 { bottom: 30%; left: 20%; animation-delay: 4.5s; }
.note-5 { top: 80%; right: 30%; animation-delay: 2s; }

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 70%,
        rgba(25, 118, 210, 0.2) 0%,
        transparent 50%
    );
}

.geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pattern-1, .pattern-2, .pattern-3 {
    position: absolute;
    border: 1px solid rgba(25, 118, 210, 0.08);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.pattern-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-direction: normal;
}

.pattern-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 20%;
    animation-direction: reverse;
    animation-duration: 25s;
}

.pattern-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
}

/* Content Styles */
.banner-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.5rem;
}

.min-height-screen {
    min-height: 90vh;
    align-items: center !important;
}

.text-content .content-wrapper {
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-intro {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-text {
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.line-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    margin-left: 1rem;
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.3);
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 1rem 0 2rem 0;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(25, 118, 210, 0.3);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

.title-line-1 {
    animation-delay: 0.5s;
color: rgba(255, 255, 255, 0.9);

    background-clip: text;
}

.title-line-2 {
    animation-delay: 0.8s;
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.9);
}

.banner-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.banner-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.action-btn {
    padding: 0 2rem;
    height: 56px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.social-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Artist Image Styles */
.image-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.neon-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-color: var(--primary-color);
    animation-delay: 0s;
}

.circle-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: rgba(25, 118, 210, 0.5);
    animation-delay: 1s;
}

.circle-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    border-color: rgba(25, 118, 210, 0.3);
    animation-delay: 2s;
}

.main-artist-image {
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: zoomIn 1s ease-out 0.8s forwards;
}

.artist-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(25, 118, 210, 0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.element {
    position: absolute;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1.5s;
}

.element-3 {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    margin-bottom: 0.5rem;
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==================== OTHER BANNER STYLES ==================== */
.other-banner {
    position: relative;
    margin-top: -50px;
    padding: 7rem 0 4rem 0;
    background: linear-gradient(135deg,
        rgba(25, 118, 210, 0.08) 0%,
        rgba(33, 33, 33, 0.95) 30%,
        rgba(0, 0, 0, 1) 100%
    );
    overflow: hidden;
}

.other-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gradient-overlay-other {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(25, 118, 210, 0.1) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(25, 118, 210, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(25, 118, 210, 0.05) 0%, transparent 25%);
}

.other-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
}

.other-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: rgba(25, 118, 210, 0.8);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1.5rem 0;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(25, 118, 210, 0.2);
    opacity: 0;
    animation: slideInUp 0.8s ease-out 0.5s forwards;
}

.page-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.page-icon {
    opacity: 0;
    animation: zoomIn 0.8s ease-out 1.1s forwards;
}

/* ==================== BANNER ANIMATIONS ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==================== BANNER RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .main-title {
        font-size: 3.5rem;
    }

    .floating-elements .element {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-banner {
        min-height: 80vh;
        padding: 4rem 0;
        margin-top: -40px;
        padding-top: 40px;
    }

    .min-height-screen {
        min-height: 80vh;
    }

    .text-content .content-wrapper {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .main-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .banner-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .banner-actions {
        justify-content: center;
    }

    .social-stats {
        justify-content: center;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .other-banner {
        padding: 5rem 0 3rem 0;
        margin-top: -40px;
    }

    .other-wrapper {
        padding: 1.5rem;
    }

    .image-content {
        order: -1;
        margin-bottom: 3rem;
    }

    .artist-image-container {
        max-width: 300px;
    }

    .music-note {
        font-size: 1rem;
    }

    .pattern-1, .pattern-2, .pattern-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .banner-actions {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 280px;
    }

    .social-stats {
        gap: 1rem;
    }
}


/* ===== STYLES DE BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--secondary-black);
  background-color: var(--grey-50);
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-blue);
}

h2 {
  font-size: 2rem;
  color: var(--primary-blue-dark);
}

h3 {
  font-size: 1.75rem;
  color: var(--secondary-black);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--grey-700);
}

/* ===== LIENS ===== */
a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-small);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--secondary-black);
}

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

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* ===== CARTES ===== */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-normal);
  border: 1px solid var(--grey-200);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.card-header {
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-black);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--grey-600);
  font-size: 0.875rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}

.col {
  padding: 0.5rem;
}

/* ===== UTILITAIRES ===== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-blue) !important;
}

.text-secondary {
  color: var(--secondary-black) !important;
}

.text-accent {
  color: var(--accent-gold) !important;
}

.bg-primary {
  background: var(--gradient-primary) !important;
}

.bg-secondary {
  background: var(--gradient-secondary) !important;
}

.bg-white {
  background: var(--white) !important;
}

.shadow {
  box-shadow: var(--shadow-medium);
}

.rounded {
  border-radius: 8px;
}

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

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

.slide-up {
  animation: slideUp 0.6s ease-out;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 0.5rem;
  }

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

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }

  .card {
    padding: 1rem;
  }
}
