html, body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #f5eddc;
  font-family: Georgia, serif;
  display: flex;
  flex-direction: column;
}
body {
  flex: 1;
  text-align: center;
  background: #f5eddc;
  margin-top: 30px;
}

/* Menu circulaire */
.nav-circle-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 40px auto 20px auto;
}
.circle-container {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: .6s;
}
.circle-container:hover {
  width: 255px;
  height: 255px;
}
.flower-ring {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 1;
}
.nav-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle)));
  transform-origin: center;
  background-color: transparent;
  color: #7d9e7c;
  font-weight: bold;
  font-size: 1rem;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.6s ease, color 0.6s ease;
}
.nav-button:hover {
  color: #CC7722;
  transform: rotate(var(--angle)) translate(150px) rotate(calc(-1 * var(--angle))) scale(1.1);
  z-index: 3;
}

/* ====== STATIC CARDS MENU ====== */
.static-cards-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  margin: 36px 0 5% 0;
  padding: 36px 5vw 36px 5vw;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
}
.static-card {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 320px;
  background-size: cover;
  background-position: center;
  border: 4px solid #7d9e7c;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(151, 198, 155, 0.12);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.93s cubic-bezier(.4,0,.2,1),
    box-shadow 0.33s cubic-bezier(.4,0,.2,1),
    filter 0.25s cubic-bezier(.4,0,.2,1),
    border 0.25s cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.static-card span {
  display: block;
  background: rgba(255,255,255,0.93);
  color: #7d9e7c;
  font-size: 1.18rem;
  font-weight: bold;
  border-radius: 0 16px 0 0;
  padding: 12px 22px;
  margin: 18px;
  z-index: 2;
  position: relative;
  pointer-events: none;
  transition: color 0.2s;
}
.static-card:hover {
  z-index: 2;
  transform: scale(1.07);
  box-shadow: 0 18px 44px rgba(204, 119, 34, 0.13), 0 2px 8px rgba(60,60,60,0.08);
  filter: brightness(1.04);
  border: 4px solid #CC7722;
}
.static-card:hover span {
  color: #CC7722;
}

/* Responsive static cards */
@media (max-width: 1200px) {
  .static-card {
    min-width: 140px;
    height: 180px;
  }
  .static-card span {
    font-size: 1rem;
    padding: 8px 14px;
    margin: 12px;
  }
  .static-cards-menu {
    gap: 12px;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .static-card {
    min-width: 90px;
    height: 120px;
  }
  .static-cards-menu {
    gap: 10px;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .static-cards-menu {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 12px 0 12px 0;
    margin: 18px 0 5% 0;
  }
  .static-card {
    width: 92vw;
    max-width: 420px;
    min-width: 0;
    height: 110px;
    flex: none;
    margin: 0;
  }
  .static-card span {
    font-size: 0.96rem;
    padding: 8px 12px;
    margin: 8px;
  }
}

/* Scrollbar custom (pour le scroll horizontal sur mobile) */
.static-cards-menu::-webkit-scrollbar {
  height: 6px;
  background: transparent;
}
.static-cards-menu::-webkit-scrollbar-thumb {
  background: #CC7722;
  border-radius: 3px;
}
.static-cards-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* Pied de page */
.monfooter {
  background-color: #CC7722;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
}
.social-icons {
  margin: 10px 0;
}
.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #fffde7;
}

/* Galerie */
.gallery-container {
  padding: 40px 20px 240px;
  max-width: 1200px;
  margin: auto;
}
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}
.gallery-item {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: pointer;
  display: block;
  break-inside: avoid;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
/* Responsive galerie */
@media (max-width: 992px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  animation: fadein 0.3s ease;
}
@keyframes fadein {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scrollbar général */
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #7d9e7c;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #CC7722;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #CC7722 transparent;
}

/* Section Contact */
.contact-section {
  max-width: 600px;
  margin: auto;
  margin-bottom: 2.5%;
  padding: 20px;
  background: #ffffffee;
  border: 8px solid #7d9e7c;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.contact-section h2 {
  color: #5c4433;
  margin-bottom: 20px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form label {
  font-weight: bold;
  color: #2f7c5f;
  text-align: left;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  border: 2px solid #7d9e7c;
  font-size: 1rem;
  background-color: #f9f9f9;
}
.contact-form button {
  background-color: #7d9e7c;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.6s ease;
}
.contact-form button:hover {
  background-color: #CC7722;
}

/* ----------- NOUVEAU BLOC GOOGLE MAP ----------- */
.map-container {
  width: 100%;
  max-width: 90%;
  margin: 36px auto 48px auto;
  border-radius: 40px;
  box-shadow: 0 4px 28px rgba(151, 198, 155, 0.12);
  background: #f7f5ee;
  padding: 0;
  display: block;
}
.map-container iframe {
  width: 100%;
  height: 500px;
  min-height: 260px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .map-container {
    max-width: 97vw;
    border-radius: 14px;
  }
  .map-container iframe {
    height: 260px;
  }
}
@media (max-width: 600px) {
  .map-container {
    max-width: 99vw;
    border-radius: 9px;
    margin: 18px auto 28px auto;
  }
  .map-container iframe {
    height: 180px;
    min-height: 110px;
  }
}

/* ----------- SECTION À PROPOS ----------- */
.about-main {
  width: 100vw;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(120deg, #f7faf7 50%, #f5eee3 100%);
  padding: 50px 0 60px 0;
  box-sizing: border-box;
}
.about-section {
  display: flex;
  align-items: center;
  background: #fffefc;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(151, 198, 155, 0.11);
  padding: 36px 48px;
  gap: 46px;
  max-width: 860px;
  margin: 0 auto 5% auto;
  margin-top: 2.5%;
  width: 95vw;
  box-sizing: border-box;
}
.about-photo-container {
  flex: 0 0 220px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.about-photo {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #7d9e7c;
  box-shadow: 0 4px 18px rgba(151, 198, 155, 0.18);
  background: #f3fdf4;
}
.about-desc {
  flex: 1;
  text-align: left;
  color: #5c4433;
}
.about-desc h1 {
  font-size: 2.3rem;
  margin-bottom: 8px;
  color: #CC7722;
  letter-spacing: -1px;
}
.about-desc h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #7d9e7c;
  font-weight: 500;
}
.about-desc p {
  font-size: 1.07rem;
  line-height: 1.6;
  margin-bottom: 26px;
  color: #4b4a47;
}
.about-values {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.about-values li {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: #6a8063;
  font-weight: 500;
}
.about-values i {
  margin-right: 10px;
  color: #7d9e7c;
  font-size: 1.1em;
}
.about-cta {
  margin-top: 18px;
}
.about-btn {
  background: #7d9e7c;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 13px 34px;
  font-size: 1.04rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(151, 198, 155, 0.09);
  transition: background 0.35s, transform 0.22s;
}
.about-btn:hover {
  background:  #CC7722;
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-section {
    padding: 22px 12px;
    gap: 4px;
  }
  .about-photo {
    width: 145px;
    height: 145px;
    border-width: 6px;
  }
}
@media (max-width: 700px) {
  .about-main {
    padding: 12vw 0 10vw 0;
    gap: 4px;
    min-height: unset;
  }
  .about-section {
    flex-direction: column;
    gap: 4px;
    padding: 7vw 3vw;
    border-radius: 17px;
    max-width: 99vw;
    width: 99vw;
    box-sizing: border-box;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }
  .about-photo-container {
    justify-content: center;
    margin-bottom: 0;
  }
  .about-photo {
    width: 97px;
    height: 97px;
    border-width: 3px;
  }
  .about-desc {
    text-align: center;
    padding: 0;
  }
  .about-desc h1 {
    font-size: 1.19rem;
    margin-bottom: 7px;
  }
  .about-desc h2 {
    font-size: 0.97rem;
    margin-bottom: 10px;
  }
  .about-desc p,
  .about-values li {
    font-size: 0.98rem;
  }
  .about-btn {
    font-size: 0.93rem;
    padding: 8px 19px;
  }
  .about-values {
    margin-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .about-section {
    padding: 6vw 1vw;
    border-radius: 7px;
    gap: 4px;
  }
  .about-photo {
    width: 62px;
    height: 62px;
    border-width: 2px;
  }
  .about-desc h1 {
    font-size: 0.93rem;
  }
  .about-desc h2 {
    font-size: 0.87rem;
  }
  .about-desc p,
  .about-values li {
    font-size: 0.85rem;
  }
  .about-btn {
    font-size: 0.80rem;
    padding: 7px 11px;
  }
}

/* ----------- EVENT PAGES (afterwork, mariage, etc) ----------- */
.event-main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 34px 0 54px 0;
}
.event-title {
  text-align: center;
  color: #7d9e7c;
  font-size: 2.2rem;
  margin-bottom: 36px;
  letter-spacing: -1px;
  font-family: Georgia, serif;
}
.event-title span {
  font-size: 1.05rem;
  color: #CC7722;
  display: block;
  margin-top: 7px;
  letter-spacing: 0;
  font-family: inherit;
}
.event-section {
  display: flex;
  align-items: center;
  margin-bottom: 54px;
  gap: 42px;
  background: #f8fdf7;
  border-radius: 28px;
  box-shadow: 0 6px 26px rgba(151, 198, 155, 0.11);
  padding: 24px 36px;
  transition: box-shadow .24s;
}
.event-section:hover {
  box-shadow: 0 10px 32px rgba(204, 119, 34, 0.17);
}
.event-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid #97c69b;
  box-shadow: 0 3px 18px rgba(151, 198, 155, 0.18);
  background: #f3fdf4;
  flex-shrink: 0;
  transition: transform .25s;
}
.event-section:hover .event-img {
  transform: scale(1.04) rotate(-2deg);
}
.event-desc {
  flex: 1;
  text-align: left;
  color: #5c4433;
}
.event-desc h2 {
  margin: 0 0 11px 0;
  font-size: 1.3rem;
  color: #CC7722;
  font-family: Georgia, serif;
}
.event-desc p {
  margin: 0;
  color: #4b4a47;
  font-size: 1.08rem;
  line-height: 1.6;
}
/* alternance droite/gauche */
.event-section.alt {
  flex-direction: row-reverse;
  background: #fffefc;
}
/* Responsive */
@media (max-width: 900px) {
  .event-main {
    padding: 10vw 0 10vw 0;
  }
  .event-section,
  .event-section.alt {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 18px 3vw;
  }
  .event-img {
    width: 110px;
    height: 110px;
  }
  .event-desc {
    text-align: center;
  }
  .event-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
}

/* ----------- PRESTATIONS ----------- */
.prestations-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.prestations-list li {
  background: #f7f5ee;
  border-radius: 1.5rem;
  padding: 1.2rem 1.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px #e7e4d4a6;
  gap: 0.7em;
  transition: box-shadow 0.2s;
}
.prestations-list li i {
  color: #9f7b35;
  font-size: 1.5em;
}
.prestations-list li:hover {
  box-shadow: 0 4px 18px #bda97d3e;
}

.contact-section {
  position: static !important;
  overflow: visible !important;
  z-index: 0 !important;
  background: #ffffffee !important;
}

.map-container {
  position: static !important;
  overflow: visible !important;
  z-index: 0 !important;
  background: #f7f5ee !important;
  opacity: 1 !important;
}
/* Polices Google Fonts personnalisées pour la page communion */

.julius-title {
  font-family: 'Julius Sans One', sans-serif !important;
  font-size: 2.6rem !important;
  color: #7d9e7c !important;
  letter-spacing: 1px;
  display: block;
}

.style-script-subtitle {
  font-family: 'Style Script', cursive !important;
  font-size: 2.0rem !important; 
  color: #cc7722;
  font-weight: 300 !important;
  margin-top: 6px;
  display: block;
  line-height: 1.15;
}

.poiret-one {
  font-family: 'Poiret One', cursive !important;
  font-size: 1.18rem !important;
  color: #5c4433;
  font-weight: bold !important;
  letter-spacing: 0.5px;
  display: inline;
}

/* Responsive pour les titres personnalisés */
@media (max-width: 900px) {
  .julius-title {
    font-size: 1.4rem !important;
  }
  .style-script-subtitle {
    font-size: 1.06rem !important;
  }
  .poiret-one {
    font-size: 1rem !important;
  }
}
