/*
Theme Name: Mouton Noir – Thème enfant
Template: twentytwentyone
Author: Raoul Boiteux
Version: 1.0
*/

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 6rem;
}

/* Amélioration du scroll smooth */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  * {
    scroll-behavior: inherit;
  }
}

/* Optimisation du rendu pendant le scroll */
body {
  will-change: scroll-position;
}

main, section {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

* {
  scroll-behavior: inherit;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typographie - H1 avec Inter Display Semibold */
h1, .h1,
.equipe-title,
.archive-title,
.realisation-main-title,
.contact-title,
.cta-title {
  font-family: 'Inter Display', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
}

/* Typographie - Paragraphes avec Inter Medium */
p, .p,
.description-content p,
.contact-description,
.cta-text,
.objectif-content,
.values-content,
.client-content,
.titre-content {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 500 !important;
}

/* Typographie - H2, H3 avec Inter Display Semibold */
h2, .h2,
h3, .h3,
.description-content h2,
.values-title,
.realisation-objectif h2,
.member-name,
.realisation-title,
.carousel-title,
.carousel-item-title {
  font-family: 'Inter Display', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-weight: 600 !important;
}

a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter Display', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.site-logo:hover {
  opacity: 0.7;
}

/* Menu Toggle Button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  position: relative;
}

.menu-toggle-line {
  width: 28px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle:hover .menu-toggle-line {
  opacity: 0.7;
}

/* Navigation */
.main-navigation {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.main-navigation.is-open {
  right: 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1001;
  pointer-events: none;
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-content {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  height: 100%;
  width: 100%;
}

.nav-menu-wrapper {
  padding: 6rem 3rem 3rem;
  overflow-y: auto;
  background: #000000;
}

.nav-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.nav-menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.4s ease;
  display: block;
}

.menu-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg) scale(1.1);
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a {
  display: block;
  padding: 1.5rem 0;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  padding-left: 2rem;
  opacity: 0.8;
}

.nav-menu a:hover::before {
  width: 1rem;
}

/* Carousel 3D Section */
.carousel-3d-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000000;
  margin-top: 0;
  overflow: hidden;
}

.carousel-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

#canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay "VOIR" au survol du carousel */
.carousel-hover-overlay {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.15s ease, transform 0.15s ease;
  /* Pas de transition sur left/top pour un suivi instantané */
  will-change: left, top, transform, opacity;
}

.hover-view-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(44, 64, 107, 0.4);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Réalisations List Section */
.realisations-list-section {
  padding: 8rem 3rem;
  background: #000000;
}

.realisations-list {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.realisation-item {
  display: block;
  padding: 3rem 0;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.realisation-item::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  font-size: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.realisation-item:hover {
  padding-left: 3rem;
  background: rgba(255, 255, 255, 0.02);
}

.realisation-item:hover::after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.realisation-item:last-child {
  border-bottom: none;
}

/* Description Section */
.description-section h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: none;
  margin: 0 0 1rem 0;
  font-family: 'Inter Display', 'Inter', sans-serif;
  text-align: center;
}

.description-section {
  padding: 10rem 3rem;
  background: #000000;
  
}

.description-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.description-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.description-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto 4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.description-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-filled {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #333333;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 6px;
  cursor: pointer;
}

.btn-filled:hover {
  background: #444444;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 6px;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Archive Réalisations */
.archive-realisations {
  padding-top: 6rem;
  background: #000000;
}

.archive-hero {
  padding: 6rem 3rem 8rem;
  text-align: center;
}

.archive-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-transform: uppercase;
}

.realisations-archive-list {
  padding: 4rem 3rem;
  position: relative;
  min-height: 60vh;
}

.realisations-list-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.realisations-list-vertical {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.realisation-item-vertical {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.realisation-item-link-full {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.realisation-item-link-full:hover .realisation-item-title {
  opacity: 0.7;
}

.realisation-item-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.realisation-item-left {
  flex: 1;
}

.realisation-item-title {
  font-size: clamp(2.5rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Inter Display', 'Inter', sans-serif;
}


.realisation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.realisation-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.realisation-item-right {
  display: flex;
  align-items: center;
}

.realisation-view-btn {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  background: rgba(44, 64, 107, 0.4);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.realisation-view-btn:hover {
  background: rgba(44, 64, 107, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Image hover à droite */
.realisation-hover-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  max-width: 400px;
  height: 100%;
  max-height: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.realisation-hover-image.is-visible {
  opacity: 1;
}

.hover-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.no-realisation {
  text-align: center;
  padding: 6rem 3rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

/* Single Réalisation */
.single-realisation-page {
  padding-top: 6rem;
  background: #000000;
}

.single-realisation {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3rem 8rem;
}

.realisation-header {
  margin-bottom: 6rem;
  text-align: center;
  padding-top: 4rem;
}

.realisation-main-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-transform: uppercase;
}

.realisation-cover {
  width: 100%;
  margin-bottom: 8rem;
  overflow: hidden;
  background: #111111;
  position: relative;
}

/* Viewer 3D */
.realisation-3d-viewer {
  min-height: 60vh;
  background: #000000;
}

.model-viewer-container {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background: #000000;
  overflow: hidden;
}

.model-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

.model-canvas:active {
  cursor: grabbing;
}

.model-viewer-controls {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.control-hint {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.reset-camera-btn {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.reset-camera-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(180deg) scale(1.1);
}

.model-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.model-loading p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .model-viewer-container {
    height: 50vh;
    min-height: 400px;
  }
  
  .model-viewer-controls {
    top: 1rem;
    right: 1rem;
  }
  
  .control-hint {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  
  .reset-camera-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .model-viewer-container {
    height: 40vh;
    min-height: 300px;
  }
  
  .control-hint {
    display: none;
  }
}

.cover-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.realisation-content {
  max-width: 1000px;
  margin: 0 auto;
}

.realisation-titre-section {
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.titre-content {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.7;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.titre-content p {
  margin: 0;
}

.realisation-objectif {
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.realisation-objectif h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
}

.objectif-content {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.objectif-content p {
  margin: 0 0 1.5rem 0;
}

.objectif-content p:last-child {
  margin-bottom: 0;
}

.realisation-meta {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-item strong {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.meta-item span {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 700;
}

.client-content {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 700;
}

.client-content p {
  margin: 0;
}

.realisation-voir-plus {
  margin-top: 4rem;
  padding-top: 4rem;
  text-align: center;
}

.voir-plus-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-family: 'Inter', sans-serif;
}

.voir-plus-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.realisation-navigation {
  margin-top: 8rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.nav-link {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
  padding-left: 1rem;
}

/* Footer */
.site-footer {
  padding: 6rem 3rem 3rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-location span,
.footer-social a {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
}

.footer-social a:hover {
  color: #ffffff;
  padding-left: 0.5rem;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 700;
}

/* Page Équipe */
.page-equipe {
  padding-top: 6rem;
  background: #000000;
}

.equipe-hero {
  padding: 8rem 3rem 6rem;
  text-align: center;
  background: #000000;
}

.equipe-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.equipe-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 4rem;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

/* Images Full Width */
.equipe-image-full-width {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.image-full-width {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Section Vision */
.equipe-vision {
  padding: 6rem 3rem;
  background: #000000;
  text-align: center;
}

.equipe-vision-content {
  max-width: 800px;
  margin: 0 auto;
}

.vision-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

.vision-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
}

.vision-text p {
  margin: 0 0 1.5rem 0;
}

.vision-text p:last-child {
  margin-bottom: 0;
}


/* Section Services */
.equipe-services {
  padding: 6rem 3rem;
  background: #000000;
  text-align: center;
}

.equipe-services-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

.services-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
}

.services-text p {
  margin: 0 0 1.5rem 0;
}

.services-text p:last-child {
  margin-bottom: 0;
}

.equipe-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.equipe-members {
  padding: 6rem 3rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.equipe-members-header {
  text-align: center;
  margin-bottom: 4rem;
}

.members-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

.equipe-members-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.equipe-member {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.member-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111111;
  border-radius: 0;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.equipe-member:hover .member-image {
  transform: scale(1.05);
}

.member-image-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.member-name {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

.member-role {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  font-family: 'Inter', sans-serif;
}




.no-members {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.equipe-values {
  padding: 8rem 3rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.equipe-values-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 6rem;
}

.values-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.values-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.values-content {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.values-content p {
  margin: 0 0 1.5rem 0;
}

.values-content p:last-child {
  margin-bottom: 0;
}

.equipe-cta {
  padding: 8rem 3rem;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.equipe-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

.btn-equipe {
  display: inline-block;
  padding: 1.2rem 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-equipe:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Pagination */
.pagination {
  max-width: 1600px;
  margin: 6rem auto;
  padding: 0 3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.pagination a,
.pagination span {
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  font-weight: 700;
}

.pagination a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.pagination .current {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .realisations-list {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
  }

  .equipe-members-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .hero-section,
  .realisations-list-section,
  .description-section,
  .cta-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .realisations-archive-list {
    padding: 2rem 1.5rem;
  }
  
  .realisation-item-vertical {
    padding: 2rem 0;
  }
  
  .realisation-item-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .realisation-item-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  
  .realisation-hover-image {
    display: none;
  }
  
  .realisation-view-btn {
    align-self: flex-start;
  }

  /* Carousel 3D Responsive */
  .carousel-3d-section {
    height: 100vh;
  }

  .realisations-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .realisation-item {
    padding: 2rem 0;
    font-size: clamp(1.8rem, 8vw, 3rem);
  }

  .realisation-item:hover {
    padding-left: 1.5rem;
  }

  .cta-content {
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
  }

  .single-realisation {
    padding: 0 1.5rem 4rem;
  }

  .nav-wrapper {
    grid-template-columns: 1fr;
  }
  
  .nav-image-wrapper {
    display: none;
  }
  
  .nav-menu-wrapper {
    padding: 5rem 1.5rem 2rem;
  }

  .menu-close {
    right: 1.5rem;
    top: 1.5rem;
  }

  .nav-menu a {
    font-size: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Page Équipe Responsive */
  .equipe-hero,
  .equipe-members,
  .equipe-values,
  .equipe-cta {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .equipe-members-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .equipe-values-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .hero-section,
  .realisations-list-section,
  .description-section,
  .cta-section,
  .single-realisation {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Carousel 3D Mobile */
  .carousel-3d-section {
    height: 100vh;
  }

  /* Page Équipe Mobile */
  .equipe-hero,
  .equipe-members,
  .equipe-values,
  .equipe-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .equipe-members-container {
    gap: 2.5rem;
  }
}

/* Page Contact */
.page-contact {
  padding-top: 6rem;
  background: #000000;
  min-height: calc(100vh - 6rem);
}

.contact-section {
  width: 100%;
  min-height: calc(100vh - 6rem);
}

.contact-container {
  display: flex;
  width: 100%;
  min-height: calc(100vh - 6rem);
}

.contact-text {
  flex: 0 0 66.666%;
  padding: 6rem 4rem 6rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000000;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.contact-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-bottom: 5rem;
  max-width: 600px;
}

.contact-info {
  margin-bottom: 4rem;
}

.info-title {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: block;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 0.7;
}

.contact-socials {
  margin-top: 2rem;
}

.contact-image {
  flex: 0 0 33.333%;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.contact-image-placeholder {
  width: 100%;
  height: 100%;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-text {
    flex: 1;
    padding: 4rem 3rem;
  }

  .contact-image {
    flex: 1;
    min-height: 50vh;
  }
}

@media (max-width: 768px) {
  .contact-text {
    padding: 4rem 1.5rem;
  }

  .contact-description {
    margin-bottom: 3rem;
  }

  .contact-info {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .contact-text {
    padding: 3rem 1rem;
  }
}

/* ============================================
   PAGE TARIFS - PRICING CARDS
   ============================================ */

.page-tarifs {
  background: #000000;
  min-height: 100vh;
  padding-top: 6rem;
}

/* Hero Section */
.tarifs-hero {
  padding: 6rem 3rem 4rem;
  text-align: center;
}

.tarifs-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.tarifs-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Inter Display', 'Inter', sans-serif;
}

.tarifs-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 3rem 8rem;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Pricing Card */
.pricing-card {
  position: relative;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

/* Card Header */
.pricing-card-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: 'Inter Display', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-billing {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Price */
.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  font-family: 'Inter Display', 'Inter', sans-serif;
  line-height: 1.2;
}

/* Audience Description */
.pricing-audience {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  min-height: 3rem;
}

/* Features List */
.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-item span {
  flex: 1;
}

/* Pricing Button */
.pricing-button {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  margin-top: auto;
}

.pricing-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.pricing-button-popular {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-color: #4ade80;
  color: #000000;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.pricing-button-popular:hover {
  background: linear-gradient(135deg, #5ae890, #33d56f);
  box-shadow: 0 6px 30px rgba(74, 222, 128, 0.5);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1200px) {
  .pricing-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .pricing-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 968px) {
  .pricing-container {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 2rem;
  }
  
  .pricing-card {
    padding: 3rem 2.5rem;
  }
  
  .tarifs-hero {
    padding: 4rem 2rem 3rem;
  }
  
  .pricing-section {
    padding: 3rem 2rem 6rem;
  }
}

@media (max-width: 768px) {
  .tarifs-hero {
    padding: 4rem 1.5rem 3rem;
  }
  
  .pricing-section {
    padding: 3rem 1.5rem 6rem;
  }
  
  .pricing-card {
    padding: 2.5rem 2rem;
  }
  
  .popular-badge {
    right: 1.5rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.85rem;
  }
}

@media (max-width: 480px) {
  .tarifs-hero {
    padding: 3rem 1rem 2rem;
  }
  
  .pricing-section {
    padding: 2rem 1rem 4rem;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .pricing-title {
    font-size: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
}
