/* resettt */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* bodyyy */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #37352f;
  background: #F8F2E7;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* headerrr */
header {
  margin-bottom: 32px;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f1d1c;
}

/* Navigation */
nav {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.95rem;
}

nav a {
  color: #1f1d1c;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #3b82f6;
}

/* Liens dans le contenu */
a {
  color: #3b82f6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Sections / cartes */
main, section {
  margin-bottom: 32px;
}

section {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 24px 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #e4e2e0;
  padding-bottom: 8px;
}

/* Iframe (formulaire Tally) */
iframe {
  border-radius: 8px;
  background: #ffffff;
}

/* Footer */
footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e4e2e0;
  font-size: 0.85rem;
  color: #6b6b6b;
}

/* Boutons sociaux (page Liens) */
.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 24px;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  border: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  filter: brightness(1.05);
}

/* Couleurs officielles */
.pinterest { 
  background: #E60023;        
}
.deezer   { 
  background: #9B26FF;         
}
.spotify  { 
  background: #1DB954;         
}
.instagram{ 
  background: #F56040;
}

/* Responsif */
/* @media (max-width: 768px) {
  body {
    padding: 24px 16px;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  section {
    padding: 20px 16px;
  }
} */

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }
  nav {
    font-size: 0.85rem;
    gap: 8px;
  }
  section h2 {
    font-size: 1.4rem;
  }
  .social-btn {
    min-width: 100px;
    padding: 8px 16px;
    font-size: 12px;
  }
}
