/* Correction alignement du "37" dans ENVIRONNEMENT 37 */
.nom-37 {
  position: relative;
  top: -0.15em;
  letter-spacing: 0.1em;
}
/* Variables for main colors */
:root {
  --beige: #FAECD3;
  --green: #193B29;
  --font-main: 'Raleway', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background: var(--beige);
  color: var(--green);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--green);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(25, 59, 41, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2.5rem;
}
/* --- Navbar Brand (Logo + Company Name) --- */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: 2rem;
}

.navbar-logo {
  height: 70px;
  width: 70px;
  object-fit: contain;
  border-radius: 8px;
  /* Remove background and border for transparency */
  background: none;
  border: none;
  box-shadow: none;
}

.navbar-company-name {
  color: var(--beige);
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(25,59,41,0.10);
  line-height: 1;
}

@media (max-width: 800px) {
  .navbar-brand {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
  }
  .navbar-company-name {
    font-size: 1.1rem;
  }
  .navbar-logo {
    height: 40px;
    width: 40px;
  }
}

.navbar ul {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex: 1;
}

.navbar a {
  color: var(--beige);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.navbar-social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-right: 2rem;
  margin-left: 0;
}
.navbar-social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  transition: background 0.2s;
  font-size: 0;
  min-width: 36px;
  min-height: 36px;
  box-sizing: content-box;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding-right: 0.5rem;
  }
  .navbar-social-links {
    margin-right: 0;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
  }
  .navbar ul {
    justify-content: flex-end;
  }
}

.navbar a:hover,
.navbar a.active {
  background: var(--beige);
  color: var(--green);
}

.navbar-social-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: 2rem;
}

.navbar-social-links .social-link {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  transition: background 0.2s;
  font-size: 0;
}

.navbar-social-links .social-link:hover {
  background: var(--beige);
}

.navbar-social-links .social-link svg {
  display: block;
}

.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
  scroll-margin-top: 80px;
  transition: background 0.3s;
}

/* --- Section Zoom Animation --- */
.section {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.7s cubic-bezier(0.4,0,0.2,1),
    transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.section.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.accueil {
  background: linear-gradient(135deg, var(--beige) 70%, #e6e6d3 100%);
}

.a-propos {
  background: #f2f1f0;
  color: #222;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.a-propos-container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 1300px;
  min-height: 70vh;
  margin: 4rem auto;
  position: relative;
  z-index: 1;
}

.a-propos-left {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-width: 0;
  z-index: 2;
}

.a-propos-photo-block {
  position: relative;
  background: #eae8e6;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(25,59,41,0.08);
  margin: 2rem 0 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-propos-photo {
  width: 420px;
  max-width: 32vw;
  min-width: 220px;
  height: auto;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 8px 32px rgba(25,59,41,0.10);
  position: relative;
  z-index: 2;
}

.a-propos-lines {
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 220px;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.a-propos-lines::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0 10px,
    #222 10px 13px
  );
  opacity: 0.13;
}

.a-propos-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2.5rem 3rem 3.5rem;
  min-width: 320px;
  max-width: 600px;
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: 0 1.5rem 1.5rem 0;
  box-shadow: 0 8px 32px rgba(25,59,41,0.06);
}

.a-propos-brushstroke {
  margin-bottom: 1.2rem;
  margin-left: -0.5rem;
}

.a-propos-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #222;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.a-propos-text p {
  color: #222;
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  max-width: 520px;
}

@media (max-width: 1100px) {
  .a-propos-container {
    flex-direction: column;
    align-items: center;
    min-height: 0;
    margin: 2rem 0;
  }
  .a-propos-left,
  .a-propos-right {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
    justify-content: center;
    padding: 1.5rem 0.5rem;
  }
  .a-propos-photo {
    max-width: 90vw;
    width: 95vw;
  }
  .a-propos-right {
    border-radius: 0 0 1.5rem 1.5rem;
    margin-top: -2rem;
    box-shadow: 0 4px 16px rgba(25,59,41,0.06);
  }
}

@media (max-width: 700px) {
  .a-propos-photo-block {
    padding: 1rem;
    margin: 1rem 0 1rem 0.5rem;
  }
  .a-propos-photo {
    width: 98vw;
    min-width: 0;
    max-width: 98vw;
  }
  .a-propos-right {
    padding: 1.2rem 0.5rem;
  }
  .a-propos-title {
    font-size: 1.5rem;
  }
}

.prestations {
  background: var(--beige);
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.prestations-circles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 3.5rem;
  column-gap: 2rem;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 2rem 0;
}

.prestation-circle {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(25,59,41,0.10);
  width: 100%;
  max-width: 380px;
  min-width: 220px;
  height: 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  border: 3px solid transparent;
  transition: box-shadow 0.2s, transform 0.18s, background 0.2s, border 0.2s;
  position: relative;
  font-family: inherit;
  margin: 0 auto;
  outline: none;
  user-select: none;
  padding-left: 1.5rem;
}

.prestation-circle:hover,
.prestation-circle.active {
  box-shadow: 0 12px 40px rgba(25,59,41,0.22);
  border-color: var(--green);
  background: #f6f6ef;
  transform: scale(1.04);
  z-index: 2;
}

.prestation-circle.animated-pop {
  animation: circle-pop 0.35s cubic-bezier(0.4,1.4,0.4,1) 1;
}

/* Removed tilt/rotation animation for prestation rectangles */

.prestation-circle .prestation-circle-title,
.prestation-circle .prestation-circle-icon {
  transition: color 0.25s, filter 0.25s, text-shadow 0.25s;
}

.prestation-circle.active .prestation-circle-title,
.prestation-circle:hover .prestation-circle-title {
  color: #0e7c4d;
  text-shadow: 0 2px 8px rgba(25,59,41,0.10);
}

.prestation-circle.active .prestation-circle-icon,
.prestation-circle:hover .prestation-circle-icon {
  color: #0e7c4d;
  filter: drop-shadow(0 4px 16px rgba(25,59,41,0.18));
}

#prestation-detail {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(25,59,41,0.08);
  padding: 2.5rem 2rem;
  width: 100%;
  font-size: 1.13rem;
  color: #222;
  opacity: 1;
  transform: none;
  animation: none;
  transition: opacity 0.4s, transform 0.4s;
}

#prestation-detail.animated-detail {
  animation: detail-fadein 0.5s cubic-bezier(0.4,1.4,0.4,1) 1;
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes detail-fadein {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  60% {
    opacity: 0.7;
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.prestation-circle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-right: 1.5rem;
  color: var(--green);
  filter: drop-shadow(0 2px 8px rgba(25,59,41,0.10));
}

.prestation-circle-photo {
  width: 90px;
  height: 90px;
  border-radius: 1.2rem;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 8px rgba(25,59,41,0.10);
  border: 2px solid #e6e6d3;
}

@media (min-width: 900px) {
  .prestation-circle-photo {
    width: 100px;
    height: 100px;
  }
}

.prestation-circle-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  letter-spacing: 0.5px;
}

.prestation-detail-container {
  width: 100%;
  max-width: 700px;
  min-height: 180px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

#prestation-detail {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(25,59,41,0.08);
  padding: 2.5rem 2rem;
  width: 100%;
  animation: fadeIn 0.5s;
  font-size: 1.13rem;
  color: #222;
}

#prestation-detail h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #193B29;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#prestation-detail ul {
  margin: 1rem 0 1.5rem 1.2rem;
  padding-left: 1.2rem;
  list-style: disc;
}

#prestation-detail li {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .prestations-circles-grid {
    grid-template-columns: repeat(2, 150px);
    grid-template-rows: repeat(2, 150px);
    gap: 1.2rem 1.2rem;
  }
  .prestation-circle {
    width: 98vw;
    max-width: 380px;
    height: 110px;
    border-radius: 1.5rem;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 1.2rem;
  }
  .prestation-circle-photo {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
  }
  .prestation-detail-container {
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .prestations-circles-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 2rem;
    column-gap: 0;
  }
  .prestation-circle {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
    height: 90px;
    border-radius: 1rem;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 0.5rem;
    margin: 0 auto;
  }
  .prestation-circle-icon {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .prestation-circle-photo {
    width: 50px;
    height: 50px;
    border-radius: 0.7rem;
  }
  .prestation-circle-title {
    font-size: 1rem;
  }
  .prestation-detail-container {
    padding: 0 0.2rem;
  }
  #prestation-detail {
    padding: 1.2rem 0.5rem;
    font-size: 1rem;
  }
  #prestation-detail h3 {
    font-size: 1.2rem;
  }
}

.realisations {
  background: #e6e6d3;
}

.contact {
  background: var(--green);
  color: var(--beige);
/* Contact section links: no blue, no underline */
.contact-block a {
  color: #e0e0d0;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.contact-block a:hover {
  color: #fff;
  text-decoration: underline;
}
/* --- Contact Section Redesign --- */
.contact-header-row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.contact-header-row h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--beige);
  margin: 0;
}

.contact-cta {
  color: #cfe3c7;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.contact-cta:hover {
  color: #fff;
}
.contact-cta .arrow {
  font-size: 1.3em;
  margin-left: 0.2em;
}

.contact-main-row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
}

.contact-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  min-width: 220px;
  max-width: 340px;
}

.contact-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--beige);
}

.contact-block p {
  color: #e0e0d0;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-form {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 260px;
  max-width: 420px;
  background: transparent;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1.5px solid #bfcab7;
  color: var(--beige);
  font-size: 1.08rem;
  padding: 0.9rem 1.1rem;
  border-radius: 2px;
  font-family: 'Raleway', Arial, sans-serif;
  margin-bottom: 0;
  transition: border 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1.5px solid #fff;
  background: #232323;
}

.contact-form button[type="submit"] {
  align-self: flex-end;
  background: none;
  color: #cfe3c7;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: color 0.2s;
  text-align: right;
}
.contact-form button[type="submit"]:hover {
  color: #fff;
}

.contact-map-row {
  width: 100%;
  max-width: 1000px;
  margin: 2.5rem auto 0 auto;
  display: flex;
  justify-content: center;
}

.contact-map {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(25,59,41,0.10);
  border: 3px solid #fff;
}

@media (max-width: 900px) {
  .contact-header-row,
  .contact-main-row,
  .contact-map-row {
    max-width: 98vw;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact-main-row {
    gap: 1.5rem;
  }
  .contact-map {
    height: 180px;
  }
}
}

h1, h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  max-width: 600px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}

input, textarea {
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: var(--beige);
  color: var(--green);
  font-family: 'Raleway', Arial, sans-serif;
  box-shadow: 0 1px 4px rgba(25, 59, 41, 0.07);
  resize: none;
}

input:focus, textarea:focus {
  outline: 2px solid var(--green);
}

button[type="submit"] {
  background: var(--beige);
  color: var(--green);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

button[type="submit"]:hover {
  background: var(--green);
  color: var(--beige);
}

@media (max-width: 800px) {
  .navbar ul {
    gap: 1rem;
  }
  .section {
    padding: 3rem 0.5rem;
  }
  h1, h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 500px) {
  .navbar ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .section {
    padding: 2rem 0.2rem;
  }
  .accueil-hero-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
  }
  .accueil-hero-photo-block,
  .accueil-hero-text-block {
    width: 90vw !important;
    max-width: 350px !important;
    margin: 0 auto 1.2rem auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 1.2rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    aspect-ratio: 1/1 !important;
    background: #fff !important;
    box-shadow: 0 4px 16px rgba(25,59,41,0.08) !important;
  }
  .accueil-hero-photo {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    border-radius: 1.1rem !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
  .accueil-hero-text-bg {
    width: 98vw !important;
    max-width: 98vw !important;
    min-width: 0 !important;
    margin: 0 auto 1.2rem auto !important;
    padding: 1.1rem 0.5rem !important;
    min-height: 80px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border-radius: 1.2rem !important;
    aspect-ratio: unset !important;
    background: #e6e6d3 !important;
    border: 4px solid #fff !important;
    box-shadow: 0 4px 16px rgba(25,59,41,0.08) !important;
  }
  
  .accueil-cta {
    align-self: flex-start !important;
    margin-left: 0 !important;
  }
}
/* Accueil Hero Section */
.accueil-hero {
  background: var(--beige);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.accueil-hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 950px;
  min-height: 70vh;
  position: relative;
  gap: 0;
}

.accueil-hero-photo-block {
  flex: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  min-width: 0;
  z-index: 2;
  overflow: visible;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  border-radius: 0.7rem;
  box-shadow: 0 8px 32px rgba(25,59,41,0.08);
}

.accueil-hero-photo {
  width: 95%;
  max-width: 850px;
  height: auto;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: 0 8px 32px rgba(25,59,41,0.10);
  position: relative;
  z-index: 2;
}

.accueil-hero-lines {
  position: absolute;
  left: -40px;
  bottom: -30px;
  width: 180px;
  height: 60px;
  background: none;
  z-index: 1;
  pointer-events: none;
}
.accueil-hero-lines::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    120deg,
    transparent 0 8px,
    #193B29 8px 10px
  );
  opacity: 0.18;
}

.accueil-hero-text-block {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  min-width: 0;
  z-index: 3;
}

.accueil-hero-text-bg {
  background: #e6e6d3;
  border: 6px solid #fff;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  margin-left: -40px;
  box-shadow: 0 8px 32px rgba(25,59,41,0.08);
  max-width: 1100px !important;
  min-width: 700px !important;
  min-height: 0;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
/* Logo in Accueil Hero Section */
.accueil-hero-logo {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-top: 1.5rem;
  margin-left: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
/* Identité Accueil : logo + nom (gros, aligné) */
.accueil-hero-identite {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.accueil-hero-identite .accueil-hero-logo {
  width: 90px;
  height: 90px;
  margin: 0;
  border-radius: 12px;
 
}

.accueil-hero-nom {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #193B29;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
  padding: 0;
}

.accueil-hero-titre {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #193B29;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
/* Identité Accueil : logo + nom */
.accueil-hero-identite {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.2rem;
}

.accueil-hero-identite .accueil-hero-logo {
  width: 80px;
  height: 80px;
  margin: 0;
}

.accueil-hero-nom {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #193B29;
  letter-spacing: 1px;
  text-transform: uppercase;
}
}

/* --- Fix: Accueil Hero Identité (logo + nom) horizontal alignment --- */
.accueil-hero-identite {
 display: flex;
 align-items: center;
 gap: 2rem;
 margin-bottom: 1.2rem;
}

.accueil-hero-identite .accueil-hero-logo {
 width: 150px;
 height: 150px;
 margin: 0;
 
}

.accueil-hero-nom {
 font-family: 'Playfair Display', serif;
 font-size: 2.2rem;
 font-weight: 700;
 color: #193B29;
 letter-spacing: 1px;
 text-transform: uppercase;
 line-height: 1.05;
 margin: 0;
 padding: 0;
}
}

.accueil-hero-text-bg h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #193B29;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
}

.accueil-hero-subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  color: #193B29;
  margin-bottom: 2.2rem;
  width: 100%;
  letter-spacing: 0.5px;
}

.accueil-hero-text-bg .highlight {
  color: #193B29;
  background: #FAECD3;
  padding: 0 0.2em;
  border-radius: 0.2em;
  font-weight: 900;
}

.accueil-cta {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.8rem 1.5rem;
  background: var(--green);
  color: var(--beige);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25,59,41,0.10);
  transition: background 0.2s, color 0.2s;
}
.accueil-cta:hover {
  background: var(--beige);
  color: var(--green);
  border: 2px solid var(--green);
}

@media (max-width: 900px) {
  .accueil-hero-container {
    flex-direction: column;
    align-items: center;
    min-height: 60vh;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .accueil-hero-photo-block,
  .accueil-hero-text-block {
    justify-content: center;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .accueil-hero-text-bg {
    margin-left: 0;
    margin-top: -40px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 0.5rem;
    min-height: 180px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 800px) {
  .accueil-hero-container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    box-sizing: border-box;
  }
  .accueil-hero-text-bg h1 {
    font-size: 1.1rem;
  }
  .accueil-hero-photo {
    width: 100%;
    max-width: 100%;
  }
  .accueil-hero-text-bg {
    padding: 1rem 0.3rem;
    min-width: 0;
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .accueil-hero-subtitle {
    font-size: 0.95rem;
  }
}
/* Contact Section */
.contact-container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto 0 auto;
}

.contact-info {
  flex: 1.1;
  font-size: 1.15rem;
  color: var(--beige);
  background: var(--green);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 24px rgba(25,59,41,0.10);
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info a {
  color: var(--beige);
  text-decoration: underline;
  word-break: break-all;
}

.contact-map-block {
  flex: 2;
  min-width: 260px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25,59,41,0.10);
  border: 3px solid #fff;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .contact-map {
    height: 220px;
  }
}
/* Correction: Remove background and shadow from accueil logo */
.accueil-hero-identite .accueil-hero-logo {
  background: none !important;
  box-shadow: none !important;
}