video {
  width: 100%;
}
.nav__brand {
  width: 25%;
}
.site-header {
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}


.navbar {
  flex: 1;
  text-align: center;
}
.menu {
  list-style: none;
  display: inline-flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.menu a {
  text-decoration: none;

}


.logo svg {
  width: 180px;
  height: auto;
}
.logo-text {
  font-family: sans-serif;
  font-size: 32px;
  fill: black;
  transition: transform 0.3s ease;
}
.logo:hover .logo-text {
  transform: scale(1.05) skewX(5deg);
}

.description_text {
  font-size: var(--font-size-lg);
}

.project-container {
  border-bottom: none;
}


.pastille-group {
  display: flex;
  flex-direction: column;   
  align-items: flex-start;  
  gap: 2rem;
}
.btn-pastille {
  background: var(--color3);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
 align-content: center;
  color: var(--clr-black);
  transition: background 0.3s ease;
}

.btn-pastille {
  background-color:var(--color3)!important;
  transition: transform 0.2s ease-in-out;
    -webkit-animation: pulsePastille 1.5s infinite;
  animation: pulsePastille 1.5s infinite;
}
.btn-pastille:hover {
  color: white;
}



@keyframes pulsePastille {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(250, 108, 20, 0.8);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(219,250,20,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(219,250,20,0);
  }
}



/* HEADER NAV */

.navigation {
	display: flex;
	justify-content: space-between;
	position: sticky;
  top: 0;                 
  background: var(--color2);     
  z-index: 1000;           
}
.dark-mode {
  background-color: black;
  color: white;
}
		/* Logo principal */
.site-logo {
  max-height: 80px;   
  width: auto;        
  display: block;    
  object-fit: contain;
  transition: transform 0.3s ease;
}


.site-logo:hover {
  transform: scale(1.05);
}


.item {
  position: relative;
  cursor: pointer;
  color: #1e1919;
	align-content: center;
}



@media (max-width: 1024px) {
  .navbar {
    display: none; 
  }
}


@media (min-width: 1025px) {
  .burger,
  .site-menu {
    display: none !important;
  }
}
.burger { z-index: 99999;}


/* DROPDOWN */




.dropdown li {
  display: flex;
      justify-content: center;
}
.dropdown li img{
width: 15%;
}

ul.dropdown {
  margin: 2rem 21rem;
}



.hover_white {
  text-align: center;
}
.hover_white{
  text-align: center;
}


.project-list a {
  color: black;
font-size: 4rem;

}
.project-list {
    list-style: none;
    padding: 0;
}
/* --- Correction : vue LISTE sans pastilles --- */
.project-list.list-view .grid_item_footer,
.project-list.list-view .grid_item_title,
.project-list.list-view .grid_item_excerpt {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  color: var(--clr-black);
  box-shadow: none !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: 500;
  border-radius: 0 !important;
}

.project-item {
    position: relative;

    transition: background 0.3s ease;
}
.project-list.list-view .project-item {
  border-bottom: 1px solid var(--grey);
}
.project-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -220px; 
    width: 200px;
    height: 200px;
    background-image: var(--thumb);
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.project-item:hover::after {
    opacity: 1;
}


.project-list.grid-view .project-item img {
    width: 100%;
    /*border-radius: 10px;*/
    display: block;
	transition: all 0.6s ease;

	object-fit: cover;
	object-position: center;
}

.team-grid {
  display: flex;
  justify-content: space-between;
}


.project-list.grid-view h3 {
    font-size: 14px;
    margin-top: 8px;
    font-weight: normal;
}

/* Vue liste */
.project-list.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-list.list-view .project-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.project-list.list-view h3 {
    margin: 0;
    font-weight: bold;
 transition: all 0.6s ease;
}
	.project-list a {
		text-decoration: none;
	}
/* .project-list.list-view h3:hover {
  font-weight: normal;
  font-style: italic;
	text-decoration: underline;
} */
img:is([sizes="auto" i],
[sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px 
}
img:is([sizes="auto" i],
[sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px 
}


/*

/* Titre et infos sous l’image */
.project-list.grid-view .grid_item_footer {
  margin-top: 0.5rem;
}




.project-list.list-view .project-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--grey);
}

.project-list.list-view .grid_item_title {
  font-size: 2rem;
  line-height: 1.5rem;
  color: var(--color1);
}

/* Image flottante au hover (vue liste) */
.project-list.list-view .project-item img {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
 
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.project-list.list-view .project-item img.visible {
    opacity: 1;
}
	/* Conteneur des filtres */
.projects-sidebar ul {
    display: flex;
    flex-wrap: wrap;     
    gap: 12px;          
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Chaque <li> */
.projects-sidebar li {
    margin: 0;
}

.projects-sidebar {
  display: flex;
  justify-content: space-between;
}
/* Boutons catégories (tags) */
.filter-btn {
    border: 1px solid var(--clr-black);
    background: none;
    color: var(--clr-black);
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 25px;   /* arrondi style pill */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover + actif */



/* Cacher le curseur natif */
body, a, button {
  /* cursor: none; */

}

/*PAGE HOME*/
.project-title {
  margin-top: 1em;
}
.project-title a {
  text-decoration: none;
}
#wpforms-137 {
  width: 100%;
}
/*PAGE INDEX*/
.project-container {
  display: flex;
}
.tags-container {
  width: 25%;
	padding: 1em;
}
.tags-container ul {
  padding: 0;
  padding-bottom: 2rem;
}

.tags-container li {
  list-style: none;
}

.tags-container li:hover {
  list-style: none;
}

.tags-container li button {
  background: none;
  /* border: none; */
}

.projects {
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.projects-container {
  width: 75%;
  padding: 1rem;
	
}
.view-toggle {
  display: flex;
  gap: 10px;
}

/* Boutons toggle */
.view-toggle {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    gap: 8px;
}
.view-toggle button {
    border: 1px solid #333;
    background: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
	 width: 40px;         
  height: 40px;        
  border-radius: 50%;  
}
.view-toggle button.active {
    background: #333;
    color: white;
}


.tag-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--clr-black);
  background: #fff;
  color: var(--clr-black);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}


.tag-btn .check-circle {
  width: 12px;
  height: 12px;
  border: 1px solid var(--clr-black);
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s ease;
  margin-right: 0.5em;
}

.tag-btn.active {
  background: #000;
  color: #fff;
}
.tag-btn:hover .check-circle {
  background: #fff;
}

.tag-btn.active .check-circle {
  background: #fff; 
}

.toggle-btn {
  border: 2px solid #000;
  background: #fff;
  border-radius: 50%;     
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;            
}

.toggle-btn.active {
  background: #000;        
  color: #fff;           
}


.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-gap: 2px;
}
.icon-grid::before,
.icon-grid::after,
.icon-grid span,
.icon-grid div {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: currentColor;
}
.icon-grid {
  color: inherit;
}

/* Icône List (3 lignes) */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.icon-list::before,
.icon-list::after,
.icon-list span {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
}
/* ABOUT */

.about-section {
  padding-top: 4rem;
}
.two-col{
  display: flex;
  gap: 1em;
  margin-bottom: 2em;
  width: 100%;
  flex-wrap: wrap;
  
}
.about-content {
  /* gap: 4em; */
  display: flex;
  flex-wrap: wrap;
}
#contact {
  width: 100%;
}
.contact .right-col {
  display: block;
}
.two-col h3 {
  margin: 0;
	text-transform: uppercase;
}
.right-col {
	width:75%;
  
  display: flex;
  flex-wrap: wrap;
}
.left-col {
		width:20%;
}
.team-card img {
  width: 100%;
}
.team-card {
  width: 32%;
	gap: 1em;
  display: flex;
  flex-direction: column;
}
.team-grid {
  width: 75%;
}
.team-thumb {

  display: block;
  position: relative;

}
/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Image de fond */
.hero__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  /* filter: brightness(0.6); assombrit pour lisibilité du texte */
  transform: scale(1.05);
  transition: transform 8s ease; /* effet subtil */
}

/* Effet léger au survol (zoom lent) */
.hero:hover .hero__bg {
  transform: scale(1.1);
}

/* Contenu du hero */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--font-weight);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

/* Bouton CTA */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .btn{  
  color: #fff;
  border: 2px solid #fff;
}
.services .btn{  
  color: var(--color1);
  border: 2px solid var(--color1);
}


.services, .quote {
  display: flex;
}
.services__illustration {
  width: 25%;
}
.quote_large {
  padding-left: 2rem;
    display: flex;
    align-items: center;
}
.services img {
  width: 100%;
}
.services__content, .quote_large  {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
}

.projects__grid {
  display: flex;
  gap: 20px;
}

.project-thumb img {
  width: 100%;
  height: 20em;           
  object-fit: cover;       
  object-position: center; 
  display: block;
}
.about-network {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 60px; 
  list-style: none;
  padding: 0;
  margin-top: 2em;
}

.about-network li {
  text-align: center;
	width: 60%;
}

.about-network img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* FOOTER */
.footer {
	color: var(--color2);
  padding: 1em;
  display: flex;
  justify-content: space-between;
}
.footer h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.footer {
  font-size: 1rem;
}

.footer ul {
list-style: none;
	padding: 0;
}
.footer-newsletter {
	width:60%;
}
.footer-section {
	width:20%;
}


.project-card {
  position: relative;
  margin-bottom: 1rem;


}

.project-thumb {
  display: block;
  position: relative;
}

.project-thumb img {
  display: block;
  width: 100%;

  transition: transform 0.6s ease, filter 0.3s ease;
}

.project-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Les pastilles */
.grid_item_footer {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.grid_item_title,
.grid_item_excerpt {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.4em 0.9em;
  font-size: 0.85rem;
  color: #fff;
 
  white-space: nowrap;
}

.grid_item_excerpt {
  opacity: 0.8;
  font-weight: 400;
}
.project-title {
  display: none;
}
.projects__grid {
  flex-wrap: wrap;
    justify-content: space-between;
}

.project-card {
  width: 48%;
}

.projects__meta {
  display: flex;
  justify-content: space-between;
}



.site-header {
  width: 90%;$

  position: fixed;
  top: 1rem;             
  left: 50%;            
  transform: translateX(-50%); 
  width: 80%;
border-radius: 9999px;


}



.services.quote{
  border-top: none;
}
section {
border-bottom: solid 1px grey;
flex-wrap: wrap;
}
header {
  text-transform: uppercase;
}
header button {
  text-transform: uppercase;
}

.petite-pastille {
  display: block;
  float: left;
  background-color: rgba(245, 245, 245, 0);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 9999px;
  margin-right: 0.5vw;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.1em;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(171, 171, 171, 0.75);
  text-decoration: none;
}

.first-section {
  padding-top: 196px;
  /*! width: 70%; */
}
.statement {
  width: 70%;
}
.tags-container {
  margin-top: 4.8rem;
}
/* Flèche pour "Was wir tun" */
.has-dropdown > .dropdown-toggle::after {
  content: "↓";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(.455,.03,.515,.955);
  font-size: 0.9em;
  pointer-events: none;
}

/* Quand le menu est ouvert → flèche vers le haut */
.has-dropdown.open > .dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}
.projects {



  flex-wrap: wrap;          /* ✅ autorise le retour à la ligne */


}

.big_title, .quote_large  {

  line-height: 1.1;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;        

  font-size: var(--font-size-xl);
  margin-top: 1rem;
  margin-bottom: 1rem;
}


.pastille-group {
  width: 30%;
}
.services__illustration img {
  width: 100%;
}


.description_text {
  margin: 0 ;
  padding: 0;
  margin-left: auto;
  padding-bottom: 3rem;
}
section {
  width: 100%;
}


.gallery-image img {

  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
	  max-width: 100%;
  height: auto;
  display: block;
}
.gallery-image {
  display: flex;
  flex-direction: column;

  margin-bottom: 40px;


  width: 75%;
  margin-left: auto;
  padding: 0;
	margin-right:2rem;
}


#bio-role {
  margin-bottom: 1rem;
}

.gallery-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}
.pastille {

  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
 border: 1px solid var(--clr-black);
  color: var(--clr-black);
 display: inline-block;
 
}
.check-circle {
  display: inline-block;
  flex-shrink: 0;
}

.illustration_text {
width: 60%; 
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  
}
.services__illustration.illustration_text img {
    width: 40%;
}
.pastille-group {
  width: 25%;
}