:root {
  --rose-pale: #FFF7F0;
  --rose-fonce: #FBE8E3;
  --rose-bouquet: #E5A7B6;
  --peche-doux: #D4A373;
  --marron-clair: #8b5c2d;
  --vert-doux: #B2C8BA;
  --ombre-florale: 0 3px 16px #fbe8e3;
}


body {
    background: linear-gradient(135deg, var(--rose-pale) 70%, var(--rose-fonce) 100%);
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #FFF7F0 70%, #FBE8E3 100%);
}


.hero {
    background: url('../img/hero.jpg') no-repeat center center/cover;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-intro {
  background-color: #fff5ef;
  padding: 6rem 1rem 4rem;
  text-align: center;
  border-bottom: 1px solid #f0e6e0;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;           /* taille de base */
  font-weight: 700;
  color: #3e3e3e;
  margin: 0.5rem auto 0.5rem;  /* centre le titre */
  max-width: 900px;            /* limite la largeur du bloc de texte */
  padding: 0 1rem;             /* un peu d'air sur les côtés */
  text-align: center;
  word-break: break-word;
  overflow-wrap: anywhere;
}


.overlay {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
}

.overlay h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    background-color: #d4a373;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.services {
    padding: 3rem 1rem;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: #f8f5f2;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #f0efeb;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.navbar {
    display:flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0efeb;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index:1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.logo-banner {
  width: 1850px;
  max-width: 100%;
  height: 500px; /* tu peux ajuster à 220px ou 300px selon rendu */
  background-color: #fff5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  box-sizing: border-box;
}

.logo-banner img {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
}



.navbar-logo {
  height: 100px;
  width: auto;
}

.nav-links  {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4a373;
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #f0efeb;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.bouquets-page {
    padding: 3rem 1rem;
    text-align: center;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.gallery-item {
    background-color: #f8f5f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0ddd9;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: 280px; /* fixe une hauteur uniforme */
    object-fit: cover; /* coupe les bords sans déformer l’image */
    border-bottom: 1px solid #ddd;
    transition: transform 0.25s ease;
}

.gallery-item p {
    padding: 1rem;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
    color: #555;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.lightbox .nav {
    color: white;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    padding: 1rem;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    transition: background 0.2s;
}

.lightbox .nav:hover {
    background-color: rgba(0,0,0,0.6);
}

/* Overlay de bienvenue */
.intro-anim-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #fffaf5;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutIntro 2s ease forwards;
  animation-delay: 3.5s;
}

.intro-logo {
  width: 300px;
  max-width: 80%;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInZoom 2s ease forwards;
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOutIntro {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.hero-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  text-align: center;
  background: #fffaf5;
}

.intro-content {
  animation: slideFadeIn 1.5s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.intro-logo-main {
  width: 200px;
  max-width: 80%;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.5s ease forwards;
}


.hero-subtitle {
  font-size: 1.1rem;
  color: #777;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.btn {
  margin-top: 2rem;
  background-color: #d4a373;
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #bb875a;
}

.petal-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1; /* derrière l'intro */
}

.petal {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url("../images/petal.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  animation: fall linear infinite;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.svg-intro-overlay {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #fffaf5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeOut 2s ease forwards;
    animation-delay: 3.5s;
}

#svg-intro {
    opacity: 1;
    transition: opacity 0.7s;
    z-index: 50;
    background: #fffaf5;
}


.svg-container {
    text-align: center;
}

#flower-svg path {
    stroke-dasharray: 400; /* valeur initiale */
    stroke-dashoffset: 400;
}

@keyframes drawFlower {
    to {
        stroke-dashoffset: 0;
    }
}

.logo-title {
    font-size: 2rem;
    margin-top: 1rem;
    color: #3f3f3f;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2.2s;
}

.logo-sub {
    font-size: 1rem;
    color: #7a7a7a;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2.8s;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Partie about*/

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-header h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.subtitle {
  color: #777;
  font-style: italic;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.about-photo {
  flex: 1;
  max-width: 400px;
}

.about-photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSlide 1.2s ease forwards;
}

@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 /* Section avis*/

 .testimonials {
  background-color: #fdf7f3;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #512e2e;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  border-left: 4px solid #d2a679;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial .quote {
  font-style: italic;
  color: #333;
}

.testimonial .author {
  margin-top: 15px;
  font-weight: bold;
  color: #9a4f4f;
}

/* mini gallery*/

.carousel-section {
  background: #fdf7f3;
  padding: 3rem 1rem 2rem;
  text-align: center;
}

.carousel-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #8b5c2d;
}

.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(170,110,60,0.09);
  background: #fff;
  display: flex;
  align-items: center;
}

.carousel-images {
  display: flex;
  transition: transform 0.7s cubic-bezier(.86,0,.07,1);
  width: 100%;
}

.carousel-images img {
  width: 1000px;
  height: 500px;   /* ← change cette valeur ! */
  object-fit: cover;
  flex-shrink: 0;
  margin: auto;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff8f2;
  border: none;
  font-size: 2.7rem;
  color: #bb875a;
  cursor: pointer;
  z-index: 2;
  padding: 0 10px;
  border-radius: 60%;
  box-shadow: 0 1px 6px rgba(180,150,120,0.13);
  transition: background 0.2s, color 0.2s;
}
.carousel-btn:hover {
  background: #d4a373;
  color: #fff;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

@media (max-width: 1000px) {
  .carousel-images img {
    width: 96vw;
    height: 40vw;
    min-height: 160px;
    max-width: 100vw;
  }
  .carousel {
    max-width: 100vw;
  }
}


.gallery-link {
  display: inline-block;
  margin-top: 1rem;
  color: #d4a373;
  background: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 7px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.gallery-link:hover {
  background: #f3e6d8;
}

body {
    background: linear-gradient(135deg, #FFF7F0 70%, #FBE8E3 100%);
}

.hero-intro {
    background: url("../images/svg.PNG") repeat top left, #FFF7F0;
    background-size: 280px;
    /* ...autres styles... */
    box-shadow: 0 8px 38px rgba(212, 163, 115, 0.07);
    border-bottom: 3px solid #f5e3d9;
    border-top-left-radius: 0 0 55px 55px;
    border-top-right-radius: 0 0 55px 55px;
    position: relative;
    overflow: hidden;
}

.navbar {
    background: linear-gradient(90deg, #fbe8e3 60%, #fff7f0 100%);
    border-bottom: 2.5px solid #e5a7b6;
    box-shadow: 0 2px 12px rgba(212, 163, 115, 0.07);
    padding: 1.2rem 2rem;
}

.navbar-logo {
    border-radius: 30%;
    border: 2px solid #e5a7b6;
    box-shadow: 0 0 10px #fbe8e3;
    background: #fff7f0;
    transition: transform 0.2s;
}
.navbar-logo:hover {
    transform: rotate(-7deg) scale(1.05);
    border-color: #d4a373;
}

.nav-links a {
    color: #8b5c2d;
    font-family: 'Playfair Display', serif;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    font-size: 1.11rem;
}

.nav-links a:hover {
    color: #d4a373;
    border-bottom: 2px solid #e5a7b6;
    background: #fff3ea;
    border-radius: 5px;
}

.hamburger {
    color: #d4a373;
}

.decor-flower.flower1 { position: absolute; top: 60px; left: 1.3vw; width: 60px; z-index:2; }
.decor-flower.flower2 { position: absolute; top: 320px; right: 2vw; width: 45px; opacity: 0.7; z-index:2;}


.btn {
    background-color: #d4a373;
    color: #fff;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 3px 16px #fbe8e3;
    letter-spacing: 1px;
    transition: background 0.3s, box-shadow 0.2s;
}
.btn:hover {
    background: linear-gradient(90deg, #e5a7b6 50%, #d4a373 100%);
    box-shadow: 0 6px 26px #fbe8e3;
}

.hero-intro::after {
    content: '';
    position: absolute;
    z-index: 1;
    opacity: 0.18;
    pointer-events: none;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 40%, #E5A7B6 70%, transparent 100%);
    filter: blur(1px);
}

.hero-intro::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 64px; /* Ajuste si besoin */
  background: linear-gradient(180deg, #fbe8e3 90%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-intro .fleur {
    position: absolute;
    z-index: 1;
    opacity: 0.14;
    pointer-events: none;
    border-radius: 100%;
}

.hero-intro .fleur1 {
    width: 110px; height: 110px;
    left: 8vw; top: 30px;
    background: radial-gradient(circle at 45% 55%, #E5A7B6 50%, transparent 100%);
}
.hero-intro .fleur2 {
    width: 80px; height: 80px;
    right: 12vw; bottom: 70px;
    background: radial-gradient(circle at 60% 60%, #D4A373 40%, transparent 100%);
}

body::before, body::after {
  content: '';
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: 210px; height: 210px;
  opacity: 0.11;
  border-radius: 60% 40% 70% 30% / 50% 70% 30% 50%;
  background: radial-gradient(circle at 70% 30%, #e7adc5 60%, transparent 100%);
}


body::before {
  left: 2vw;
  top: 80vh; /* Met la tache en bas de la page */
  filter: blur(4.5px);
  opacity: 0.10;
}

body::after {
  right: 1vw; top: 14vh;
  background: radial-gradient(circle at 30% 80%, #ffe4e2 60%, transparent 100%);
  width: 180px; height: 180px;
  filter: blur(4.5px);
}

.hero-intro {
  background: linear-gradient(180deg, #FFF7F0 80%, #FBE8E3 100%);
  position: relative;
  box-shadow: 0 8px 38px rgba(212, 163, 115, 0.07);
  border-bottom: 3px solid #f5e3d9;
  border-top-left-radius: 0 0 55px 55px;
  border-top-right-radius: 0 0 55px 55px;
  overflow: hidden;
}

.hero-intro .petal-decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  opacity: 0.14;
}
.hero-intro .petal1 { left: 3vw; top: 35px; width: 70px; }
.hero-intro .petal2 { right: 4vw; bottom: 45px; width: 50px; }



.hero-intro::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 40px;
  background: url("data:image/svg+xml;utf8,<svg width='100%' height='40' viewBox='0 0 1920 40' xmlns='http://www.w3.org/2000/svg'><path d='M0,20 C500,60 1400,-10 1920,30 V40 H0 Z' fill='%23fff7f0'/></svg>") repeat-x bottom;
  z-index: 2;
}

.navbar {
    background: linear-gradient(90deg, #FFE3F1 30%, #FFF7F0 100%);
    box-shadow: 0 3px 14px rgba(230,180,193,0.07);
    border-bottom: 2px solid #ecc0d7;
}
.nav-links a {
    color: #925f68;
}
.nav-links a:hover {
    color: #e7adc5;
    background: #fff3f6;
    border-radius: 10px;
    padding: 0.35rem 1rem;
    transition: 0.2s;
}

.intro-content {
  position: relative;
  z-index: 2;
}

footer {
    background: linear-gradient(90deg, #FFE3F1 30%, #FFF7F0 100%);
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    font-size: 1rem;
    color: #925f68;
    border-top: 2px solid #ecc0d7;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo span {
    color: #e7adc5;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-links {
    margin: 0.7rem 0 0.8rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.03rem;
}
.footer-links a {
    color: #a07880;
    text-decoration: none;
    margin: 0 0.3em;
    padding: 0.1em 0.5em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.footer-links a:hover {
    background: #fff3f6;
    color: #e7adc5;
}
.footer-sep {
    color: #e7adc5;
    margin: 0 0.5em;
}

.footer-socials {
    margin-top: 0.7rem;
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

.footer-social svg {
    display: inline-block;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(231,173,197,0.10);
    border-radius: 50%;
}
.footer-social:hover svg {
    transform: scale(1.08) rotate(-7deg);
    box-shadow: 0 4px 16px #e7adc545;
}

/* Sections de la page Mariages */
.wedding-section {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid #f0ddd7;
}

.wedding-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.wedding-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #8b5c2d;
  margin-bottom: 0.3rem;
  text-align: center;
}

.wedding-section .section-intro {
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.wedding-video-wrapper {
  max-width: 900px;
  margin: 1.5rem auto 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.wedding-video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.bottom-nav-section {
    text-align: center;
    margin: 3rem 0 4rem 0;
}

.btn-to-mariage {
    display: inline-block;
    background-color: #d4a373;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.btn-to-mariage:hover {
    background-color: #bb875a;
    transform: translateY(-2px);
}

.bottom-contact-section {
    text-align: center;
    margin: 3rem 0 4rem 0;
}

.btn-contact-mariage {
    display: inline-block;
    background-color: #d4a373;
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.btn-contact-mariage:hover {
    background-color: #bb875a;
    transform: translateY(-2px);
}

.separator {
  border: 0;
  height: 1px;
  background: #e2c9c9;
  opacity: 0.4;
  width: 60%;
  margin: 3rem auto;
  border-radius: 10px;
}

.section-intro {
  color: #6d4f4f;
}

.video-banner {
  max-width: 800px;
  width: 90%;
  border-radius: 14px;
  overflow: hidden;
  margin: 1.5rem auto;
}

/* ===================== */
/*   Ajustements mobile  */
/* ===================== */

@media (max-width: 768px) {

  .hero-intro {
    padding: 3.5rem 1.2rem 3rem;
  }

  /* 🔻 Réduction du gros logo d'accueil sur téléphone */
  .logo-banner {
    width: 100%;
    max-width: 100%;
    height: auto;            /* plus de hauteur fixe */
    padding: 1.5rem 0;
  }

  .logo-banner img {
    max-width: 70%;          /* le logo occupe ~70% de la largeur */
    height: auto;            /* respect des proportions */
  }

  /* Titre du hero sur mobile */
  .hero-title {
    font-size: 1.8rem;
    max-width: 95vw;
    padding: 0 1rem;
    text-align: center;
  }

  /* 🔻 On réduit un peu le logo du menu aussi */
  .navbar-logo {
    height: 70px;            /* au lieu de 100px */
  }
}








