@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&family=Dosis:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Parisienne&display=swap');
/* 1. Root and General Styles
-------------------------------------------------- */
:root {
    --primary-color: #fff7f5;
    --secondary-color: #FF0800;
    --accent-color: #FF004F;
    --accent-color-2: #000;
    --accent-color-3: #ff9748;
    --accent-color-4: #FF0080;
    --text-color: #333333;
    --background-color: #fff;
    --navbar-height: 72px;
    /* Palette florale */
    --red-floral: #E00A26;
    --orange-floral: #F65D08;
    --pink-floral: #F03F59;
    --light-pink-floral: #FFB7B6;
    --yellow-floral: #FFBD1C;
    --green-floral: #4CB174;
    --timeline-pastel: #FFF4F4;
    --white: #fff;
    --offwhite: #f9f9f9;
    --fond-mockup: #fff7f5;
}

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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background: #fff7f5;
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.7;
}

/* Correction pour éviter que le header masque le contenu */
main {
    padding-top: var(--navbar-height);
    min-height: calc(100vh - var(--navbar-height));
}

h1, h2, h3, h4 {
    font-family: 'Antic Didone', serif;
    color: var(--red-floral);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.8rem;
    margin-top: 1.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.3rem;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Antic Didone', serif;
    font-weight: 400;
}

p, .text-content {
    font-family: 'PT Sans', sans-serif;
    font-style: italic;
}

/* 2. Header and Navigation (Mobile First)
-------------------------------------------------- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: var(--navbar-height);
    min-height: var(--navbar-height);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 50%;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--red-floral);
    text-decoration: none;
    font-weight: bold;
    z-index: 1001;
    transition: color 0.3s ease;
    text-align: center;
}

/* Burger Menu - Mobile First */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 2rem;
    height: 0.2rem;
    background: var(--red-floral);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
    position: relative;
    transform-origin: 1px;
}

/* Navigation Mobile */
.main-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    padding-top: var(--navbar-height);
}

.main-nav.is-open {
    transform: translateX(0);
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    padding: 0.8rem 0;
    transition: color 0.3s ease;
    text-align: center;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, var(--orange-floral), var(--red-floral));
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--red-floral);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Burger Menu Animation */
header.nav-open .logo {
    color: var(--red-floral);
}

header.nav-open .burger-menu span {
    background: var(--red-floral);
}

header.nav-open .burger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

header.nav-open .burger-menu span:nth-child(2) {
    opacity: 0;
    transform: scale(0.1);
}

header.nav-open .burger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 3. Hero and Countdown Section (Mobile First)
-------------------------------------------------- */
.hero {
    min-height: 64vh;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
}

.hero .container {
    min-height: auto;
}

.home-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

.home-container::before,
.home-container::after {
    display: none; /* Hide floral decorations on mobile */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color-2);
}

.hero p {
    font-size: 1.2rem;
    color: var(--accent-color-3);
}

.countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.countdown-item {
    flex: 1 1 40%;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color-4);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}


.history-section {
    padding: 2rem 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Blocs créatifs et sections colorées */
.history-section, .side-content-box, .form-container, .program-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px 0 rgba(230,10,38,0.04);
    border-left: 4px solid var(--light-pink-floral);
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
}

/* Titres colorés */
h2, h3 {
    color: var(--red-floral);
    letter-spacing: 0.5px;
    text-shadow: none;
}

/* Boutons colorés et créatifs */
.cta-button, button {
    background: #fff;
    color: var(--red-floral);
    border-radius: 24px;
    font-weight: bold;
    border: 2px solid var(--red-floral);
    box-shadow: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.cta-button:hover, button:hover {
    background: var(--red-floral);
    color: #fff;
    border-color: var(--red-floral);
}

/* Séparateur créatif */
.section-separator {
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: var(--light-pink-floral);
    margin: 2rem auto;
}

/* 5. Our History Page (Mobile First)
-------------------------------------------------- */
.history-page-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-history-content {
    order: 1;
}

.side-content {
    order: 2;
    width: 100%;
    padding-top: 0;
}

.side-content-box {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.side-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.side-content h3 {
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
    display: none; /* Cacher la ligne sur mobile */
}

.timeline-item {
    padding: 1rem 0 1rem 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    text-align: center;
    z-index: 1;
}

.timeline-content {
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    position: relative;
}

.timeline-image {
    width: calc(100% + 2rem);
    margin: -1rem -1rem 1rem -1rem;
    border-radius: 6px 6px 0 0;
    max-height: 250px;
    object-fit: cover;
}

.timeline-date {
    font-style: italic;
    color: var(--accent-color-3);
    margin-bottom: 0.5rem;
}

/* 6. Forms and Map (Mobile First)
-------------------------------------------------- */
.form-container, .program-item {
    background-color: var(--primary-color);
    padding: 1.5rem;
    margin: 2rem auto;
    border-radius: 10px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-family: inherit;
}

button {
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--secondary-color);
}

.map-container {
    height: 300px;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

/* 7. Tablet and Small Desktops (min-width: 768px)
-------------------------------------------------- */
@media (min-width: 768px) {
    :root {
        --navbar-height: 88px;
    }
    
    /* Header and Nav */
    .nav-container {
        justify-content: center;
        align-items: center;
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        position: static;
        width: 15%;
        font-size: 1.8rem;
        color: var(--red-floral);
        font-weight: bold;
        text-align: left;
    }

    .burger-menu {
        display: none;
    }
    
    .main-nav::before, .main-nav::after {
        display: block;
        content: '❀';
        color: var(--orange-floral);
        font-size: 1rem;
    }
    .main-nav::before { 
        margin-right: 1rem; 
    }
    .main-nav::after { 
        margin-left: 1rem; 
    }
    
    /* Hero and Countdown */
    .hero h1 { font-size: 4rem; }
    .hero p { font-size: 1.5rem; }
    .countdown { flex-wrap: nowrap; gap: 2rem; }
    .countdown-number { font-size: 3rem; }
    .countdown-label { font-size: 1rem; }

    /* History Timeline */
    .timeline {
        position: relative;
    }
    .timeline-item {
        width: 50%;
        padding: 1rem 2rem;
        position: relative;
    }
    .timeline-item.left {
        left: 0;
        padding-left: 0;
        padding-right: 4rem;
        text-align: right;
    }
    .timeline-item.right {
        left: 50%;
        padding-right: 0;
        padding-left: 4rem;
        text-align: left;
    }
    /* Timeline harmonisée */
    .timeline-icon {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        font-size: 1.5rem;
        color: #fff;
        background: var(--light-pink-floral);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px 0 rgba(230,10,38,0.08);
        border: 2px solid #fff;
    }
    .timeline::after {
        display: block;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background: #FDE6E6;
        box-shadow: none;
        opacity: 1;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
    }
    
    .map-container { height: 400px; }
}

/* 8. Larger Desktops (min-width: 992px)
-------------------------------------------------- */
@media (min-width: 992px) {
    /* Navigation améliorée */
    .nav-container {
        padding: 0 3rem;
    }
    
    .logo {
        width: 15%;
        font-size: 1.5rem;
        text-align: left;
    }
    
    .main-nav {
        gap: 3rem;
    }
    
    .main-nav a {
        font-size: 1.1rem;
    }
    
    /* Floral Decorations */
    .home-container::before,
    .home-container::after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        width: 180px;
        height: 320px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: translateY(-50%);
        z-index: 0;
        opacity: 0.85;
        pointer-events: none;
    }
    /* History Page Layout */
    .history-page-container {
        flex-direction: row;
        align-items: flex-start;
    }
    .main-history-content { flex: 2; }
    .side-content { flex: 1; padding-top: 6.5rem; }
} 

.bubbly-button {
  text-decoration: none;
  font-family: 'Helvetica', 'Arial', sans-serif;
  display: inline-block;
  font-size: 1em;
  padding: 1em 2em;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #ff0081; /* fuschia */
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5);
  outline: none;
}

.bubbly-button:focus {
  outline: 0;
}

.bubbly-button:before, .bubbly-button:after {
  position: absolute;
  content: '';
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}

.bubbly-button:before {
  display: none;
  top: -75%;
  background-image:  
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle,  transparent 20%, #ff0081 20%, transparent 30%),
    radial-gradient(circle, #ff0081 20%, transparent 20%), 
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle,  transparent 10%, #ff0081 15%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image:  
    radial-gradient(circle, #ff0081 20%, transparent 20%), 
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle,  transparent 10%, #ff0081 15%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%),
    radial-gradient(circle, #ff0081 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.bubbly-button:active {
  transform: scale(0.9);
  background-color: #e60074;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}

.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0%{
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
  }
}

@keyframes bottomBubbles {
  0%{
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
  }
} 

.bubbly-button, .cta-button, button {
  font-family: 'Antic Didone', serif;
  background: var(--pink-floral);
  color: #fff;
  border-radius: 24px;
  border: 2px solid var(--orange-floral);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8em 2em;
  box-shadow: 0 2px 12px 0 rgba(240,63,89,0.10);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
}
.bubbly-button:hover, .cta-button:hover, button:hover {
  background: var(--yellow-floral);
  color: var(--red-floral);
  border-color: var(--red-floral);
  transform: translateY(-2px) scale(1.04);
}

.section {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(230,10,38,0.06);
  border: 2px solid var(--light-pink-floral);
  margin: 2.5rem auto;
  padding: 2.5rem 1.5rem;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.section.flower-top::before {
  content: '';
  position: absolute;
  top: -30px; left: 30px;
  width: 80px; height: 80px;
  background: url('assets/images/flower-left.svg') no-repeat center/contain;
  opacity: 0.18;
  pointer-events: none;
}

.section.flower-bottom::after {
  content: '';
  position: absolute;
  bottom: -30px; right: 30px;
  width: 80px; height: 80px;
  background: url('assets/images/flower-right.svg') no-repeat center/contain;
  opacity: 0.18;
  pointer-events: none;
}

.section-separator {
  width: 80px;
  height: 12px;
  margin: 2rem auto;
  background: url('assets/images/flower-separator.svg') no-repeat center/contain;
  border: none;
  display: block;
} 

nav {
  background: #fff;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 1000;
  font-family: 'Lora', serif;
}

nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 1.2rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}

nav a.active,
nav a:hover {
  color: var(--red-floral);
  font-weight: bold;
}

nav a.active::after,
nav a:hover::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: var(--red-floral);
  position: absolute;
  left: 0;
  bottom: -2px;
  border-radius: 2px;
  transition: width 0.2s;
}

/* --- HERO & FLEURS --- */
.hero {
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 34px;
  position: relative;
  background: none;
}

.hero-floral {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  max-width: 90vw;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  background: none;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  border-radius: 0;
  box-shadow: none;
}

.hero h1 {
  font-family: 'Parisienne', cursive;
  font-size: 7rem;
  color: var(--accent-color);
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 5.9rem;
  padding-top: 163px;
}

.hero-date {
  font-family: 'Lora', serif;
  color: var(--red-floral);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}
.countdown-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.countdown {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  margin-top: 2.5rem;
  font-family: 'Lora', serif;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: 2.8rem;
  color: var(--red-floral);
  font-family: 'Lora', serif;
  font-weight: bold;
  letter-spacing: 1px;
}

.countdown-label {
  font-size: 1.1rem;
  color: var(--red-floral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
}

/* Bubble button adapté */
.bubbly-button {
  background-color: var(--pink-floral);
  color: #fff;
  border-radius: 8px;
  border: none;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.8em 2em;
  margin-top: 2rem;
  box-shadow: 0 2px 25px rgba(240, 63, 89, 0.15);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.bubbly-button:hover {
  background: var(--red-floral);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
} 

/* --- NOUVELLE PAGE OUR HISTORY --- */

/* Hero Section avec dégradé coloré */
.history-hero {
  background: linear-gradient(135deg, var(--orange-floral) 0%, var(--red-floral) 30%, var(--pink-floral) 70%, var(--orange-floral) 100%);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-floral-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.history-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.history-title {
  font-family: 'Parisienne', cursive;
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out;
}

.history-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline moderne et colorée */
.timeline-modern {
  position: relative;
  padding: 40px 0;
}

.timeline-modern::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--orange-floral), var(--red-floral), var(--pink-floral));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item-modern {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item-modern.reverse {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.marker-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange-floral), var(--red-floral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 151, 72, 0.4);
  border: 4px solid #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.marker-line {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--orange-floral), var(--red-floral));
}

.timeline-item-modern .marker-line {
  right: -40px;
}

.timeline-item-modern.reverse .marker-line {
  left: -40px;
}

.timeline-content-modern {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin: 0 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: relative;
  flex: 1;
  max-width: 400px;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.timeline-date-modern {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  color: var(--orange-floral);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.timeline-title-modern {
  font-family: 'Antic Didone', serif;
  font-size: 1.4rem;
  color: var(--red-floral);
  margin-bottom: 15px;
  line-height: 1.3;
}

.timeline-text-modern {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

.timeline-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--orange-floral), var(--red-floral));
  border-radius: 50%;
  opacity: 0.2;
}

/* Side content moderne */
.side-content-modern {
  margin-top: 40px;
}

.couple-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.couple-card:hover {
  transform: translateY(-10px);
}

.couple-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.couple-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.couple-card:hover .couple-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 151, 72, 0.3), rgba(230, 10, 38, 0.3));
}

.couple-info {
  padding: 30px;
}

.couple-names {
  font-family: 'Parisienne', cursive;
  font-size: 2.5rem;
  color: var(--red-floral);
  text-align: center;
  margin-bottom: 20px;
}

.couple-description {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 25px;
}

.couple-description p {
  margin-bottom: 15px;
}

.love-quote {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, var(--orange-floral), var(--red-floral));
  border-radius: 15px;
  margin-top: 20px;
}

.love-quote span {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #fff;
  font-size: 1.1rem;
}

/* Section statistiques */
.stats-section {
  background: linear-gradient(135deg, var(--orange-floral), #fff);
  padding: 80px 0;
  margin-top: 60px;
}

.stats-title {
  text-align: center;
  font-family: 'Antic Didone', serif;
  font-size: 2.5rem;
  color: var(--red-floral);
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-family: 'Antic Didone', serif;
  font-size: 3rem;
  color: var(--red-floral);
  font-weight: bold;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'PT Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive design - Mobile First */
@media (max-width: 768px) {
  .history-title {
    font-size: 2.5rem;
  }
  
  .timeline-modern::before {
    left: 30px;
  }
  
  .timeline-item-modern,
  .timeline-item-modern.reverse {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .timeline-marker {
    margin-bottom: 20px;
  }
  
  .marker-line {
    display: none;
  }
  
  .timeline-content-modern {
    margin: 0;
    max-width: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .couple-image-container {
    height: 300px;
  }
  
  .couple-names {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .history-hero {
    padding: 60px 0 40px 0;
  }
  
  .history-title {
    font-size: 2rem;
  }
  
  .history-subtitle {
    font-size: 1.1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .couple-names {
    font-size: 1.8rem;
  }
  
  .timeline-content-modern {
    padding: 20px;
  }
  
  .marker-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Décorations florales autour du hero-content */
.flower-left, .flower-right {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 1;
  margin-top: -25px;
  transition: all 0.3s ease;
}
.flower-left {    
  left: 330px;
  width: 452px;
  max-width: 30vw;
  height: auto;
  transform: none;
}
.flower-right {
  right: 290px;
  width: 395px;
  max-width: 30vw;
  height: auto;
}
 

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.super-footer {
  background: #fff;
  border-top: 2px solid var(--light-pink-floral);
  box-shadow: 0 -2px 16px 0 rgba(230,10,38,0.04);
  position: relative;
  text-align: center;
  font-family: 'Lora', serif;
  color: var(--text-color);
  flex-shrink: 0;
  z-index: 10;
  overflow: hidden;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-names-script {
  font-family: 'Dancing Script', cursive;
  color: var(--red-floral);
  font-size: 2rem;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-date {
  color: var(--orange-floral);
  font-size: 1.1rem;
  font-style: italic;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-links {
  margin-bottom: 1.2rem;
}

.footer-links a {
  color: var(--red-floral);
  text-decoration: none;
  margin: 0 0.7rem;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Lora', serif;
}

.footer-links a:hover {
  color: var(--pink-floral);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.7;
}

.footer-floral {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 420px;
  max-width: 90vw;
  transform: translateX(-50%);
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  user-select: none;
} 

 

/* Mobile First - Responsive Design */
@media (max-width: 1200px) {
  .flower-left {
    left: 140px;
    width: 390px;
    max-width: 46vw;
  }
  .flower-right {
    right: 100px;
    width: 354px;
    max-width: 34vw;
  }
}

@media (max-width: 900px) {
  .flower-left, .flower-right {
    
    max-width: 50vw;
  }
  .flower-left {
    width: 360px;
    left: 20px;
  }
  .flower-right {
    width: 320px;
    right: 20px;
  }
  .hero h1 {
    font-size: 4.2rem;
    line-height: 3.7rem;
  }
  .countdown-number {
    font-size: 1.5rem;
  }
  .countdown {
    width: 80%;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .flower-left {
    left: 55px;
    width: 200px;
    max-width: 40vw;
  }
  .flower-right {
    right: 45px;
    width: 175px;
    max-width: 40vw;
  }

  .hero {
    min-height: 50vh;
  }
  .hero-content {
    padding: 2.9rem 0.5rem 1.2rem 0.5rem;
  }
  .hero h1 {
    font-size: 2.8rem;
    padding-top: 0 !important;
    line-height: 2.7rem;
  }
  .hero-date {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .countdown {
    width: 100%;
    gap: 1.2rem;
  }
  .countdown-number {
    font-size: 1.2rem;
  }
  .countdown-label {
    font-size: 0.8rem;
  }
} 

/* --- PAGE INFORMATION --- */

.map-section h2 {
  text-align: center;
  font-family: 'Antic Didone', serif;
  font-size: 2.5rem;
  color: var(--red-floral);
  margin-bottom: 2rem;
  position: relative;
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--orange-floral), var(--red-floral));
  border-radius: 2px;
}

/* Container du château */
.chateau-container {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.chateau-container h3 {
  font-family: 'Parisienne', cursive;
  font-size: 2.5rem;
  color: var(--red-floral);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Images du château */
.chateau-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.chateau-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.chateau-image img:hover {
  transform: scale(1.02);
}

/* Layout carte et adresse */
.map-location-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

/* Container de la carte */
.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

.map-container iframe {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

/* Container de l'adresse */
.address-container {
  padding: 2.5rem;
  color: #e22323;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.address-container h4 {
  font-family: 'Parisienne', cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.address-container p {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.address-container .address-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255,255,255,0.3);
}

.address-container .address-details p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

/* Responsive pour la page information */
@media (min-width: 768px) {
  /* Navigation tablette corrigée */
  header {
    height: var(--navbar-height);
    min-height: var(--navbar-height);
  }
  
  .nav-container {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .main-nav {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    background: transparent;
    backdrop-filter: none;
    transform: translateX(0);
    gap: 1.5rem;
    z-index: 1;
    padding-top: 0;
    display: flex;
    align-items: center;
  }
  
  .main-nav a {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--text-color);
    transition: color 0.3s ease;
  }
  
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--red-floral);
  }
  
  .container {
    margin-top: 3rem;
    padding: 0 2rem;
  }
  
  .chateau-image {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .chateau-image img {
    height: 300px;
  }
  
  .map-location-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .map-container {
    height: 500px;
  }
  
  .address-container {
    padding: 3rem;
  }
}

@media (max-width: 600px) {
  .logo {
    width: 55%;
    font-size: 1.7rem;
    text-align: center;
  }
  
  .container {
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  
  .map-section h2 {
    font-size: 2rem;
  }
  
  .chateau-container {
    padding: 1.5rem;
  }
  
  .chateau-container h3 {
    font-size: 2rem;
  }
  
  .chateau-image img {
    height: 200px;
  }
  
  .map-location-layout {
    gap: 1.5rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .address-container {
    padding: 2rem;
  }
  
  .address-container h4 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .flower-left {
    left: 5px;
    width: 150px;
    max-width: 45vw;
  }
  .flower-right {
    right: 0px;
    width: 130px;
    max-width: 45vw;
  }
  
  .logo {
    width: 60%;
    font-size: 1.5rem;
    text-align: center;
  }
  
  .container {
    margin-top: 0.5rem;
    padding: 0 0.25rem;
  }
  
  .map-section h2 {
    font-size: 1.8rem;
  }
  
  .chateau-container {
    padding: 1rem;
  }
  
  .chateau-container h3 {
    font-size: 1.8rem;
  }
  
  .chateau-image img {
    height: 180px;
  }
  
  .map-location-layout {
    gap: 1rem;
  }
  
  .map-container {
    height: 250px;
  }
  
  .address-container {
    padding: 1.5rem;
  }
  
  .address-container h4 {
    font-size: 1.8rem;
  }
  
  .address-container p {
    font-size: 1rem;
  }
} 

/* --- PAGE THEME --- */

/* Section thème et moodboard */
.theme-section {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--light-pink-floral), #fff);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.theme-section h2 {
  font-family: 'Parisienne', cursive;
  font-size: 3rem;
  color: var(--red-floral);
  margin-bottom: 2rem;
  position: relative;
}

.theme-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--orange-floral), var(--red-floral));
  border-radius: 2px;
}

/* Container du moodboard */
.moodboard {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.moodboard a {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive pour la page thème */
@media (min-width: 768px) {
  .theme-section {
    padding: 4rem 2rem;
  }
  
  .theme-section h2 {
    font-size: 3.5rem;
  }
  
  .moodboard {
    padding: 3rem;
  }
}

@media (max-width: 600px) {
  .theme-section {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
  
  .theme-section h2 {
    font-size: 2.5rem;
  }
  
  .moodboard {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .theme-section {
    padding: 1.5rem 0.5rem;
  }
  
  .theme-section h2 {
    font-size: 2rem;
  }
  
  .moodboard {
    padding: 0.5rem;
  }
} 

/* --- PAGE GALLERY --- */

/* Section wedshoot */
.wedshoot-section {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--light-pink-floral), #fff);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.wedshoot-section h2 {
  font-family: 'Parisienne', cursive;
  font-size: 3rem;
  color: var(--red-floral);
  margin-bottom: 2rem;
  position: relative;
}

.wedshoot-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--orange-floral), var(--red-floral));
  border-radius: 2px;
}

/* Container wedshoot */
.wedshoot-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Item wedshoot */
.wedshoot-item {
  text-align: center;
  width: 100%;
}

.wedshoot-item img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.wedshoot-item img:hover {
  transform: scale(1.05);
}

.wedshoot-item p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wedshoot-item a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.wedshoot-item a:hover {
  transform: scale(1.02);
}

/* Responsive pour la page gallery */
@media (min-width: 768px) {
  .wedshoot-section {
    padding: 4rem 2rem;
  }
  
  .wedshoot-section h2 {
    font-size: 3.5rem;
  }
  
  .wedshoot-container {
    padding: 3rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .wedshoot-item {
    flex: 1;
    max-width: 300px;
  }
  
  .wedshoot-item img {
    max-width: 250px;
  }
}

@media (max-width: 600px) {
  .wedshoot-section {
    padding: 2rem 1rem;
    margin: 1rem 0;
  }
  
  .wedshoot-section h2 {
    font-size: 2.5rem;
  }
  
  .wedshoot-container {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .wedshoot-item img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .wedshoot-section {
    padding: 1.5rem 0.5rem;
  }
  
  .wedshoot-section h2 {
    font-size: 2rem;
  }
  
  .wedshoot-container {
    padding: 1rem;
    gap: 1rem;
  }
  
  .wedshoot-item img {
    max-width: 200px;
  }
  
  .wedshoot-item p {
    font-size: 1rem;
  }
} 