@charset "UTF-8";
/* =====================================================
   bigtroll.be — CSS optimisé & commenté
   TABLE DES SECTIONS
   1.  Variables & Reset
   2.  Fond & Halo (fixe, sans pulsation)
   3.  Typographie, Liens & Sélection
   4.  Layout global (container)
   5.  Profil (photo + texte aligné à droite)
   6.  Cartes & Animations
   7.  Grilles
   8.  Titres, Listes & Footer
   9.  Lecteur SoundCloud
   10. Boutons (réseaux + envoyer)
   11. Formulaire
   12. Œuvres (2 colonnes)
   ===================================================== */

/* ========================
   1) Variables & Reset
   ======================== */
:root {
  --bg1:#0b1220;
  --bg2:#2a195c;
  --card:#101a2b;
  --muted:#a3b3cf;
  --text:#e8eefc;
  --accent:#38bdf8;
  --border:rgba(148,163,184,.18);
  --shadow-soft:0 8px 30px rgba(2,6,23,.35);
  --accent-color: var(--accent, #38bdf8);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: Poppins, Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* ========================
   2) Fond & Halo (fixe)
   ======================== */


/* ===================================
   3) Typographie, Liens & Sélection
   =================================== */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--accent); color: #fff; }

/* ========================
   4) Layout global
   ======================== */
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }

/* ========================
   5) Profil (photo + texte)
   - Règles robustes: marche si #profil est un header OU un conteneur de header
   ======================== */
#profil,
#profil header {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
}
#profil > div:last-child,
#profil header > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) {
  #profil,
  #profil header {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .avatar-glow { margin-inline: auto; }
}

.avatar-glow {
  border-radius: 24px;
  padding: 4px;
  box-shadow: 0 0 18px rgba(56,189,248,.18);
}
.avatar {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid var(--border);
  display: block;
}

h1 { letter-spacing: .3px; font-size: 2.2rem; margin: 0 0 6px; }
.tagline { color: var(--muted); font-size: 1rem; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(167,139,250,.18));
  color: #dbeafe;
  border: 1px solid rgba(148,163,184,.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
}

/* ========================
   6) Cartes & Animations
   ======================== */
.card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  animation: fadeIn .6s ease both;
}
.card--glow { box-shadow: 0 0 18px rgba(56,189,248,.18), var(--shadow-soft); }

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

/* ========================
   7) Grilles
   ======================== */
.grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ===============================
   8) Titres, Listes & Footer
   =============================== */
h2 { letter-spacing: .2px; margin: 10px 0 12px; font-size: 1.4rem; }
ul { margin: 8px 0 0 0; padding-left: 1rem; } /* retrait supprimé + espace pour puces */
li { margin: 6px 0; }
.note { font-size: .9rem; color: var(--muted); }
.footer { margin: 32px 0 12px; color: var(--muted); font-size: .9rem; text-align: center; }

/* ========================
   9) Lecteur SoundCloud
   ======================== */
.sc-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.sc-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================
   10) Boutons (réseaux + envoyer)
   ======================== */
.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.sbtn, .contact-form .sbtn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: transform .08s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.sbtn:hover, .contact-form .sbtn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(56,189,248,0.4);
}
.sbtn:active, .contact-form .sbtn:active { transform: translateY(0); }

/* ========================
   11) Formulaire
   ======================== */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }

/* Champs & Textarea */
.contact-form input, .contact-form textarea, .contact-form button {
  font-family: inherit;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: #fff; line-height: 1.4;
  resize: vertical;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent-color);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.25);
}
.form-footer { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: .5rem; }

/* ========================
   12) Œuvres (2 colonnes)
   ======================== */
.oeuvres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.oeuvres-grid ul { list-style: disc; padding-left: 1.2rem; margin: 0; }
.oeuvres-grid li { margin-bottom: 0.4rem; }
.oeuvres-grid em { font-style: normal; } /* Pas d’italique */
