
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #F4F4F2;
  color: #0F0F0F;
}

header {
  background: white;
  padding: 0.5rem 1.5rem;
  position: fixed;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container.centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #0F0F0F;
  font-weight: bold;
}

.hero {
  background-color: black;
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  object-fit: cover;
  z-index: 0;
}

.overlay-bottom {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(244, 244, 242, 0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  text-align: right;
  z-index: 2;
}

.cta-floating {
  display: none;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.service.visible {
  opacity: 1;
  transform: translateX(0);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.project {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.project.visible {
  opacity: 1;
  transform: translateX(0);
}

.project img {
  width: 100%;
  border-radius: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project img:hover {
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 2rem;
  background: white;
  font-size: 0.9rem;
  color: #52616B;
}

#lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

button {
  background-color: #FF5C35;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e14c28;
}

.service {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  border-top: 4px solid #FF5C35;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #333;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Courier New", Courier, monospace;
  font-weight: 400;
}

h1, h2, h3, .logo {
  font-family: "depot-new-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

header {
  background: white;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  font-family: "depot-new-web", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #0F0F0F;
  position: relative;
  transition: color 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #FF5C35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav a:hover::after {
  transform: scaleX(1);
}


.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  margin: 2px 0;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  nav.show {
    display: flex;
  }

  .burger {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    font-size: 1.2rem;
  }
}


/* Correction du centrage du menu mobile */
nav ul {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  text-align: center;
}


section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

section h1, section h2 {
  font-family: 'Orator Std', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

section p, section ul {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  line-height: 1.6;
}

section ul {
  padding-left: 20px;
}

section ul li {
  list-style: disc;
}


.fullscreen-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.fullscreen-section .content {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.fullscreen-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000; /* fallback background */
  opacity: 0.5;
  z-index: 1;
}
