@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Orbitron:wght@400..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@media screen and (min-width: 80rem) {
  .container {
    margin: 1em 2em;
    display: flexbox
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    min-height: 100vh;
    cursor: none; /* Masque le curseur par défaut */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(167, 139, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 139, 250, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* ===== CURSEUR PERSONNALISÉ ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #a78bfa;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(167, 139, 250, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}
@keyframes debut {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contactez-moi {
  text-align: center;
  color: #a78bfa;
  font-size: 100px;
  font-family: 'Orbitron', sans-serif;
  margin-top: 70px;
}

.nomprojet h1{
  text-align: center;
  color: #b98bfa;
  font-size: 60px;
  font-family: 'Orbitron', sans-serif;
  margin-top: 70px;
}

.nomprojet h2{
  text-align: center;
  color: #de8bfa;
  font-size: 40px;
  font-family: 'Orbitron', sans-serif;
  margin-top: 70px;
}

.nomprojet h3{
  text-align: center;
  color: #b98bfa;
  font-size: 25px;
  font-family: 'Orbitron', sans-serif;
  margin-top: 70px;
}


.section img {
    width: auto;
    max-width: 100%;
    max-height: 600px;
    display: block;
    margin: 30px auto 4rem auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.button:hover {
  background-color: #a78bfa;
}


.social-buttons {
    display: flex;
    justify-content: center;
}
.social-btn {
    display: flex;
    margin: auto;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(124, 10, 162, 0.3);
    color: #b9a6ff;
    border-radius: 12px;
    padding: 1rem 2rem;
    cursor: none;
    transition: all 0.3s ease;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    width: 150px;
    text-align: center;
    justify-content: center;
    font-size: 18px;    
}

.social-btn:hover {
    transform: translateY(-5px);
    scale: 1.05;
    background: rgba(167, 139, 250, 0.2);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.social-btn img {
    width: 30px;
    height: 30px;
}

.social-btn:last-child img {
    filter: brightness(0) invert(1);
}
.btn-retour {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 30px;
  margin-top: 30px;
  text-decoration: none;
  color: #1b193b;
  background: linear-gradient(135deg, #a78bfa, #7c5cff);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
  transition: all 0.3s ease;
}

.btn-retour:hover {
  background: linear-gradient(135deg, #b9a6ff, #8a6bff);
  scale: 1.05;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(167, 139, 250, 0.7);
  cursor: none;

}

.btn-retour:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.5);
}

.divider {
    height: 2px;
    max-width: 800px;
    margin: 5rem auto;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
}
