/* Palette Remitche : bleu jean & rouge bandana */
:root {
  --bg-jean: #2b3f56;          /* bleu jean principal */
  --bg-jean-deep: #192433;     /* bleu jean très sombre */
  --bg-jean-alt: #385474;      /* variante plus claire */
  --accent-bandana: #c02030;   /* rouge bandana dense */
  --accent-bandana-soft: #ff4b5c; /* rouge plus lumineux pour les hovers */
  --accent-jean: #4f6f94;      /* bleu jean accent pour traits / bordures */
  --text-main: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(220, 230, 245, 0.7);
  --border-subtle: rgba(79, 111, 148, 0.5);
  --radius-lg: 0px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
}

/* Fond global avec bleu jean bien présent */
body {
  background:
    radial-gradient(circle at top left, #44658c 0, var(--bg-jean) 40%, var(--bg-jean-deep) 85%),
    radial-gradient(circle at bottom right, #182230 0, #080b11 70%);
  color: var(--text-muted);
}

body, input, select, textarea {
  color: var(--text-muted);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  letter-spacing: 0.04em;
}

/* Liens : combo bleu jean + rouge bandana */
a {
  border-bottom-color: rgba(79, 111, 148, 0.7);
  color: var(--accent-jean);
}

a:hover {
  color: var(--accent-bandana-soft);
  border-bottom-color: transparent;
  text-shadow: 0 0 16px rgba(79, 111, 148, 0.7);
}

/* Boutons : dégradé bleu jean -> rouge bandana */
.button {
  border-radius: 999px;
  background: linear-gradient(130deg, var(--accent-jean) 0, var(--accent-bandana) 48%, #911321 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85em;
}

.button:hover {
  background: linear-gradient(130deg, var(--accent-bandana-soft) 0, var(--accent-jean) 60%, var(--accent-bandana) 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}

/* Sidebar : bleu jean sombre, effet verre dépoli */
#sidebar {
  background: linear-gradient(180deg, rgba(18, 29, 44, 0.97), rgba(10, 17, 27, 0.97));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-right: 1px solid var(--border-subtle);
}

#sidebar nav ul li a {
  border: none;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#sidebar nav ul li a:hover,
#sidebar nav ul li a.active {
  color: var(--accent-bandana-soft);
}

/* Wrapper/sections : cartes bleu jean */
.wrapper {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wrapper.style1 {
  background-color: transparent;
}

.wrapper.style2,
.wrapper.style3 {
  background: radial-gradient(circle at top, rgba(79, 111, 148, 0.18), rgba(3, 6, 12, 0.9));
}

/* Carrés légèrement transparents */
.wrapper .inner {
  background: rgba(24, 37, 56, 0.85);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  padding: 3rem 3rem;
  margin: 1px;
}

/* Sections spotlight (Bio / Musique) */
.spotlights > section {
  background: rgba(43, 63, 86, 0.88);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(79, 111, 148, 0.4);
}

.spotlights > section .content > .inner {
  background: transparent;
  box-shadow: none;
  border: none;
}

.spotlights > section .image img {
  filter: saturate(1.15) contrast(1.05);
}

/* Accent sous les titres principaux (dégradé jean + bandana) */
h1.major:after {
  background-image: linear-gradient(to right, var(--accent-jean), var(--accent-bandana));
}

/* Simple flex layout so all music links have same size clickable block */
#music .features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

#music .features a.icon.major {
  flex: 1 1 160px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0;
  background: rgba(24, 37, 56, 0.85);
  border: 1px solid rgba(79, 111, 148, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  border-bottom: none; /* remove default link underline */
}

#music .features a.icon.major .label {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#music .features a.icon.major:hover {
  background: rgba(38, 59, 86, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

/* Remove extra h3 under icons since label handles text */
#music .features section h3 {
  display: none;
}

/* Footer */
#footer {
  background: #111622;
  border-top: 1px solid var(--border-subtle);
}

#footer .menu li {
  color: var(--text-muted);
}

/* Petits ajustements mobiles */
@media screen and (max-width: 980px) {
  .wrapper .inner {
    padding: 2.25rem 1.75rem;
    border-radius: 0;
  }
}
