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

a {
  text-decoration: none;
}

:root {
  --bg-primary:#0a0a14;
  --cyan:#06b6d4;
  --purple:#8b5cf6;
  --pink:#ec4899;
  --white:#ffffff;
  --gray-400:#9ca3af;
  --gray-500:#6b7280;
  --gray-600:#4b5563;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  height: 100vh;
}

/* Scroll Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Canvas Background */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.gradient-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, transparent 50%, rgba(139, 92, 246, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Custom Cursor */
#cursorTrail {
  position: fixed;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: screen;
  transition: all 0.7s ease-out;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(40px);
}

/* Navigation */
#mainNav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  transition: all 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 12px 32px;
}
#mainNav.scrolled {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.logo-one {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--cyan);
}

/* Hero Section */
/* --- HERO SECTION : MINIMALIST DESIGN --- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
  padding: 120px 5% 60px;
  overflow: hidden;
}
#hero .hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
}
@media (max-width: 992px) {
  #hero .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-text-zone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (max-width: 992px) {
  .hero-text-zone {
    align-items: center;
    text-align: center;
  }
}
.hero-text-zone .status-badge.glowing {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 32px;
}
.hero-text-zone .status-badge.glowing .status-pulse {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-cyan 2s infinite;
}
.hero-text-zone .hero-name {
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-text-zone .hero-name .outlined-text {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
  color: transparent;
  transition: all 0.4s ease;
}
.hero-text-zone .hero-name:hover .outlined-text {
  color: var(--white);
  -webkit-text-stroke: 0px transparent;
}
.hero-text-zone .hero-role {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-text-zone .hero-role .gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text-zone .hero-bio {
  font-size: 18px;
  color: var(--gray-400);
  margin-bottom: 48px;
  max-width: 550px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
}
.hero-cta-group .cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-cta-group .cta-button.primary-glow {
  background: var(--white);
  color: var(--bg-primary);
}
.hero-cta-group .cta-button.primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}
.hero-cta-group .cta-button.secondary-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.hero-cta-group .cta-button.secondary-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

@keyframes pulse-cyan {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(6, 182, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.25);
}
.btn-primary svg {
  transition: transform 0.3s;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Sections */
section {
  position: relative;
  z-index: 20;
  padding: 128px 24px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

.section-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 18px;
  color: var(--gray-400);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Expertise Grid - New Categorized Design */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.expertise-category {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.expertise-category:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.category-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.backend-icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.backend-icon svg {
  stroke: var(--cyan);
}

.frontend-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.frontend-icon svg {
  stroke: var(--purple);
}

.design-icon {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
  border: 1px solid rgba(236, 72, 153, 0.3);
}
.design-icon svg {
  stroke: var(--pink);
}

.devops-icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.devops-icon svg {
  stroke: #22d3ee;
}

.motion-icon {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.motion-icon svg {
  stroke: #a855f7;
}

.tools-icon {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.05));
  border: 1px solid rgba(251, 146, 60, 0.3);
}
.tools-icon svg {
  stroke: #fb923c;
}

.expertise-category:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-pill {
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: default;
}
.tech-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.tech-pill svg {
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  fill: var(--white);
  overflow: visible;
}

/* Work Section */
.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 32px;
}

.filter-buttons {
  display: flex;
  gap: 12px;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
}

/* --- COPIEZ ET REMPLACEZ VOTRE SECTION WORK PAR CELLE-CI --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
}

.project-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.project-card:hover::before {
  opacity: 1;
}
.project-card:hover .project-image {
  transform: scale(1.05);
}
.project-card:hover .project-title {
  color: var(--cyan);
}
.project-card:hover .project-icon {
  color: var(--cyan);
  transform: translate(2px, -2px);
}

.project-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.project-image-container .project-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 20, 0.4), transparent 50%);
}

.project-content {
  position: relative;
  z-index: 10;
  padding: 40px;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.project-category {
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.project-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-500);
  transition: all 0.3s;
}

.project-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.project-description {
  color: var(--gray-400);
  margin-bottom: 24px;
  line-height: 1.7;
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-tag {
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 500;
}

/* Contact Section */
.contact-container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.contact-description {
  font-size: 20px;
  color: var(--gray-400);
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Form */
.contact-form-wrapper {
  margin-bottom: 80px;
}

.contact-form-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 48px;
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group.full-width {
  grid-column: 1/-1;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.submit-btn {
  grid-column: 1/-1;
  margin-top: 16px;
  justify-content: center;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 80px 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
}
.social-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}
.social-card svg {
  transition: color 0.3s;
}
.social-card:hover svg {
  color: var(--cyan);
}
.social-card span {
  font-size: 14px;
  color: var(--gray-500);
}

.footer {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: var(--gray-600);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-content {
    gap: 24px;
  }
  .nav-links {
    gap: 20px;
    font-size: 13px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .work-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .social-links {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 80px 16px;
  }
}/*# sourceMappingURL=styles.css.map */