h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  letter-spacing: 0.03em;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  background: #111111; /* Couleur de fallback */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(to right, #111111 0%, #1f222e 50%, #111111 100%);
  z-index: -1;
  pointer-events: none;
}


 details summary::-webkit-details-marker {
  display: none;
}
details summary::marker {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
  background: #2f3542;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: white;
  color: #111827;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 12px;
  font-weight: bold;
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #1a73e8 0%, #1557b0 100%);
}
.testimonial-avatar--tw {
  background: linear-gradient(145deg, #0ea5e9 0%, #0369a1 100%);
}
.testimonial-avatar--pc {
  background: linear-gradient(145deg, #6366f1 0%, #4338ca 100%);
}
.testimonial-avatar--ac {
  background: linear-gradient(145deg, #64748b 0%, #334155 100%);
}

.project-shot {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #2d2f3a;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  background: #0d0e14;
}
.project-shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Variables */
:root {
--odomo-blue: #1A73E8;
--fond-sombre: #111827;
--home-gap: 5.5rem;
--home-gap-sm: 2.25rem;
}

/* Header */
.header {
position: relative;
z-index: 200;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 0.5rem;
max-width: 1400px;
margin: 0 auto;
width: 100%;
box-sizing: border-box;
background: transparent;
transition: padding 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.page-home .hero-shell .header:not(.is-scrolled) {
background: transparent;
}

.header.is-scrolled {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
max-width: 100%;
margin: 0;
padding: 0.5rem 1.5rem;
background: transparent;
border-bottom: none;
box-shadow: none;
}

.header.is-scrolled::before {
content:"";
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 100vw;
margin-left: -50vw;
background: linear-gradient(to right, #111111 0%, #1f222e 50%, #111111 100%);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
z-index: -1;
pointer-events: none;
}

.logo {
height: 5rem;
width: auto;
transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease;
}

.header.is-scrolled .logo {
height: 3.5rem;
}

.logo-footer {
  height: 5rem;
  width: auto;
}

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

/* Menu Desktop */
.nav-desktop {
display: flex;
align-items: center;
gap: 2rem;
}

.nav-desktop a {
color: white;
text-decoration: none;
font-size: 0.8125rem;
letter-spacing: 0.03em;
position: relative;
padding: 0.5rem 0;
transition: color 0.3s ease;
}

.nav-desktop a:hover {
color: var(--odomo-blue);
}

.nav-desktop a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 0;
left: 0;
transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
width: 100%;
}

/* Bouton CTA Desktop */
.nav-desktop .cta {
font-size: 0.8125rem;
display: inline-flex;
align-items: center;
margin-left: 1.5rem;
padding: 0.6rem 1.5rem;
border-radius: 2rem;
background: var(--odomo-blue);
color: white;
font-weight: 600;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}

.nav-desktop .cta:hover {
background: white;
color: #000;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Menu Burger */
.burger-btn {
display: none;
width: 24px;
height: 16px;
flex-direction: column;
justify-content: space-between;
cursor: pointer;
z-index: 215;
}

.burger-line {
width: 100%;
height: 2px;
background-color: white;
transition: all 0.3s ease;
}

/* Menu Mobile */
.nav-mobile {
position: fixed;
top: 0;
right: -100%;
width: 85%;
max-width: 300px;
height: 100vh;
background: #1a1c26;
padding: 6rem 1.5rem 2rem;
transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
z-index: 210;
overflow-y: auto;
border-left: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open {
right: 0;
}

.nav-mobile a {
display: block;
color: white;
padding: 1rem 0;
text-transform: uppercase;
font-size: 0.8125rem;
letter-spacing: 0.03em;
border-bottom: 1px solid rgba(255,255,255,0.05);
transition: color 0.2s ease;
}

.nav-mobile a:hover {
color: var(--odomo-blue);
}

/* Bouton CTA Mobile */
.nav-mobile .mobile-cta {
display: block;
text-align: center;
margin: 1.5rem 0 0;
padding: 0.8rem;
border-radius: 2rem;
background: var(--odomo-blue);
color: white;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-mobile .mobile-cta:hover {
background: white;
color: #000;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Overlay */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(4px);
z-index: 205;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.overlay.open {
opacity: 1;
visibility: visible;
}

/* Animation Burger */
.burger-btn.open .burger-line:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.burger-btn.open .burger-line:nth-child(2) {
opacity: 0;
}

.burger-btn.open .burger-line:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1023px) {
.nav-desktop {
display: none;
}

.burger-btn {
display: flex;
}

.header {
padding: .5rem;
}
}

/* Section Padding - Alignement avec le header */
section {
padding-left: 1.5rem;
padding-right: 1.5rem;
max-width: 1400px;
margin-left: auto;
margin-right: auto;
}

@media (min-width: 768px) {
section {
padding-left: 2rem;
padding-right: 2rem;
}
}

@media (min-width: 1280px) {
section {
padding-left: 3rem;
padding-right: 3rem;
}
}