body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}
header {
  background: #1a2236;
  color: #fff;
  padding: 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #ffb400;
}
.hero {
  background: linear-gradient(120deg, #1a2236 60%, #ffb400 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem 3rem 2rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta {
  background: #ffb400;
  color: #1a2236;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.cta:hover {
  background: #ffd580;
}
.services-apercu {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}
.services-apercu h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.service-item {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 270px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cta-secondary {
  background: none;
  color: #1a2236;
  border: 2px solid #ffb400;
  padding: 0.7rem 1.7rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.cta-secondary:hover {
  background: #ffb400;
  color: #fff;
}
footer {
  background: #1a2236;
  color: #fff;
  text-align: center;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.contact-form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  margin: 2.5rem 0 2rem 0;
}
.contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2.5rem 2rem;
  min-width: 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  background: #f7f7f7;
  resize: vertical;
}
.contact-form button {
  margin-top: 1rem;
}
.contact-coordonnees {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-coordonnees h2 {
  margin-top: 0;
}
.galerie {
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 12px;
  max-width: 1100px;
  margin: 2rem auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.galerie-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  object-fit: cover;
  height: 180px;
}
.galerie-note {
  color: #888;
  font-size: 0.95rem;
  text-align: center;
}
.galerie-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.galerie-caption {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #444;
  text-align: center;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(30,30,40,0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-content {
  margin: 3vh auto 0 auto;
  display: block;
  max-width: 90vw;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}
.lightbox-caption {
  color: #fff;
  text-align: center;
  margin-top: 1.2rem;
  font-size: 1.15rem;
  font-weight: 500;
}
.lightbox-close {
  position: absolute;
  top: 2.5vh;
  right: 3vw;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #ffb400;
}
@media (max-width: 800px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav li {
    margin: 0.2rem 0.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .contact-form-section {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .galerie {
    padding: 1.2rem 0.5rem;
  }
  .galerie-grid img {
    height: 140px;
  }
}
@media (max-width: 700px) {
  nav {
    padding: 0.8rem 1rem;
  }
  nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  nav li {
    margin: 0.1rem 0.3rem;
  }
  nav a {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }
  .logo {
    font-size: 1.4rem;
  }
  .galerie-caption {
    font-size: 0.95rem;
  }
  .lightbox-content {
    max-width: 98vw;
    max-height: 50vh;
  }
  .lightbox-caption {
    font-size: 1rem;
  }
}
.creative-services {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin: 2.5rem 0 2rem 0;
}
.service-card {
  background: linear-gradient(120deg, #fff 70%, #ffb40022 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(26,34,54,0.07);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  width: 270px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  border: 1.5px solid #f1f1f1;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,180,0,0.13);
  border-color: #ffb40055;
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ffb40022;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(255,180,0,0.08);
}
.why-choose-us {
  background: #1a2236;
  color: #fff;
  border-radius: 16px;
  max-width: 900px;
  margin: 3.5rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 2px 12px rgba(26,34,54,0.08);
  text-align: center;
}
.why-choose-us h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  color: #ffb400;
}
.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.why-item {
  background: #fff;
  color: #1a2236;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 2px 8px rgba(255,180,0,0.07);
  margin-bottom: 0.5rem;
}
.why-item span {
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .creative-services,
  .apropos-cols,
  .apropos-classic-cols {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .apropos-photo img {
    width: 120px;
    height: 120px;
  }
  .apropos-valeurs,
  .apropos-valeurs-classic {
    gap: 0.7rem;
    justify-content: center;
  }
  .services-list-titre {
    margin-top: 1.2rem;
  }
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .logo {
    margin-bottom: 0.7rem;
  }
  .hero {
    padding: 2.5rem 0.7rem 2rem 0.7rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .services-detail {
    gap: 1.2rem;
    padding: 0 0.5rem;
  }
  .service-card {
    width: 100%;
    min-width: 0;
    padding: 1.5rem 0.7rem 1rem 0.7rem;
  }
  .why-choose-us {
    padding: 1.2rem 0.5rem;
  }
  .galerie {
    padding: 1.2rem 0.5rem;
  }
  .galerie-grid {
    gap: 0.7rem;
  }
  .galerie-grid img {
    height: 110px;
  }
  .contact-form-section {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
    padding: 0 0.5rem;
  }
  .contact-form, .contact-coordonnees {
    min-width: 0;
    max-width: 100%;
    padding: 1.2rem 0.7rem;
  }
  .apropos-classic {
    padding: 1.2rem 0.7rem;
  }
  .apropos-accroche {
    font-size: 1rem;
    padding-left: 0.5rem;
  }
  .apropos-soustitre {
    font-size: 1.08rem;
    padding-left: 0.5rem;
  }
  .page-header h1 {
    font-size: 1.3rem;
  }
  .services-titre {
    font-size: 1.2rem;
    padding-left: 0.5rem;
  }
}
@media (max-width: 500px) {
  nav {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
  }
  nav ul {
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  nav li {
    margin: 0.1rem 0.2rem;
  }
  nav a {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }
  .logo {
    font-size: 1.3rem;
  }
  body {
    font-size: 0.97rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer {
    font-size: 0.9rem;
  }
}
.apropos-creative {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  max-width: 1100px;
  margin: 2.5rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}
.apropos-cols {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 2.2rem;
}
.apropos-photo {
  flex: 0 0 180px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.apropos-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(26,34,54,0.13);
  border: 5px solid #ffb40033;
}
.apropos-texte {
  flex: 1;
}
.apropos-citation {
  font-style: italic;
  color: #ffb400;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid #ffb400;
  padding-left: 1rem;
}
.apropos-frise {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}
.frise-etape {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  color: #1a2236;
  box-shadow: 0 2px 8px rgba(255,180,0,0.07);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.frise-etape span {
  font-weight: bold;
  color: #ffb400;
  margin-right: 0.5rem;
}
.apropos-valeurs {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 2rem 0 1.5rem 0;
  flex-wrap: wrap;
}
.valeur-card {
  background: #ffb400;
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.7rem;
  font-weight: 500;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(255,180,0,0.13);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.apropos-philo {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .apropos-cols {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .apropos-photo img {
    width: 120px;
    height: 120px;
  }
  .apropos-valeurs {
    gap: 0.7rem;
  }
}
.btn-more {
  background: #ffb400;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(255,180,0,0.08);
}
.btn-more:hover {
  background: #1a2236;
  color: #ffb400;
}
.service-more {
  background: #f7f7f7;
  border-radius: 10px;
  margin-top: 1.1rem;
  padding: 1.1rem 1rem 0.7rem 1rem;
  font-size: 0.98rem;
  color: #222;
  box-shadow: 0 2px 8px rgba(26,34,54,0.06);
  border-left: 4px solid #ffb400;
}
.apropos-classic {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}
.apropos-classic-cols {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.apropos-accroche {
  font-style: italic;
  color: #ffb400;
  font-size: 1.13rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid #ffb400;
  padding-left: 1rem;
}
.apropos-valeurs-classic {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  margin: 1.5rem 0 1.5rem 0;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .apropos-classic-cols {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .apropos-valeurs-classic {
    gap: 0.7rem;
  }
}
.apropos-soustitre {
  font-size: 1.25rem;
  color: #1a2236;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-left: 3px solid #ffb400;
  padding-left: 0.7rem;
}
.apropos-texte p {
  margin-bottom: 1.1rem;
}
.services-list-titre {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
.services-titre {
  font-size: 1.7rem;
  color: #1a2236;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-left: 4px solid #ffb400;
  padding-left: 1rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.page-header {
  margin-bottom: 0.5rem;
}
.services-intro {
  text-align: center;
  font-size: 1.13rem;
  color: #444;
  margin-bottom: 2.2rem;
  margin-top: 0.7rem;
}
.services-detail {
  margin-bottom: 3.2rem;
}
.apropos-2cols {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 950px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
}
.apropos-2cols-gauche {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apropos-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(26,34,54,0.13);
  border: 5px solid #ffb40033;
}
.apropos-2cols-droite {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.apropos-2cols-droite h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.apropos-accroche {
  font-style: italic;
  color: #ffb400;
  font-size: 1.13rem;
  margin-bottom: 0.7rem;
  border-left: 4px solid #ffb400;
  padding-left: 1rem;
}
.apropos-valeurs-2cols {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0.7rem 0;
}
.apropos-conclu {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 1rem 1.2rem;
  text-align: center;
  color: #1a2236;
  font-weight: 500;
  margin-top: 0.7rem;
}
@media (max-width: 900px) {
  .apropos-2cols {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem 0.7rem;
  }
  .apropos-img {
    width: 120px;
    height: 120px;
  }
  .apropos-2cols-droite h1 {
    font-size: 1.3rem;
  }
  .apropos-accroche {
    font-size: 1rem;
    padding-left: 0.5rem;
  }
  .apropos-valeurs-2cols {
    gap: 0.5rem;
    justify-content: center;
  }
}
.apropos-simple {
  max-width: 600px;
  margin: 3rem auto 2rem auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.apropos-simple h1 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.apropos-accroche {
  font-style: italic;
  color: #ffb400;
  font-size: 1.13rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 700px) {
  .apropos-simple {
    padding: 1.2rem 0.7rem;
  }
  .apropos-simple h1 {
    font-size: 1.3rem;
  }
  .apropos-accroche {
    font-size: 1rem;
  }
}
.contact-soustitre {
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(90deg, #ffb400 60%, #ffd580 100%);
  font-weight: 600;
  margin-bottom: 1.1rem;
  margin-top: 0.2rem;
  text-align: center;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255,180,0,0.10);
  border: 2px solid #ffb400;
  letter-spacing: 0.2px;
}
@media (max-width: 700px) {
  .contact-soustitre {
    font-size: 1rem;
    padding: 0.6rem 0.7rem;
  }
}
.page-header h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1a2236;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .page-header h1 {
    font-size: 1.3rem;
  }
}
.btn-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26,34,54,0.85);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  color: #fff;
  font-size: 1.3rem;
  z-index: 2;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn-zoom:hover, .btn-zoom:focus {
  background: #ffb400;
  color: #1a2236;
  transform: scale(1.13) translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,180,0,0.18);
  outline: none;
}
.footer-legal {
  text-align: center;
  font-size: 0.98rem;
  color: #fff;
}
.footer-mentions {
  margin-top: 0.3rem;
  font-size: 0.93rem;
  color: #ffd580;
}
.footer-mentions a {
  color: #ffd580;
  text-decoration: underline;
}
.footer-mentions a:hover {
  color: #ffb400;
} 

/* Bannière de cookies */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a2236;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #ffb400;
}

.cookie-text p {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.cookie-links a {
  color: #ffb400;
  text-decoration: none;
  font-size: 0.9rem;
}

.cookie-links a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-accept, .btn-refuse {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.btn-accept {
  background: #ffb400;
  color: #1a2236;
}

.btn-accept:hover {
  background: #ffd580;
  transform: translateY(-1px);
}

.btn-refuse {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-refuse:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive pour la bannière cookies */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .btn-accept, .btn-refuse {
    flex: 1;
    max-width: 150px;
  }
}

/* Messages du formulaire de contact */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Bouton désactivé */
.cta:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Champ honeypot pour Netlify Forms */
.hidden {
  display: none;
} 