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

body {
    font-family: 'Cormorant Garamond', serif;
    color: #5A7444;
    line-height: 1.6;
    background-color: #fafafa;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.nav-brand:hover {
    text-decoration: none;
    color: inherit;
}

.logo {
    height: 50px;
    width: auto;
}

.site-title {
    font-family: 'Alex Brush', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #5A7444;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4rem;
}

.nav-link {
    font-family: 'Allura', cursive;
    font-size: 1.3rem;
    color: #5A7444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-dropdown-toggle {
    cursor: default;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle:hover {
    color: #839C4B;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #5A7444;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(131, 156, 75, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #5A7444;
    margin: 3px 0;
    transition: 0.3s;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.video-section {
    margin-bottom: 2rem;
}

.video-section video {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.date-location-section {
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.date-location-box {
    background-color: #839C4B;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.date-location-box h2 {
    font-family: 'Allura', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
}

.two-columns {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    margin: 2rem 2rem;
    align-items: stretch;
    overflow: hidden;
}

.column-left {
    display: flex;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.date-location-box h2:last-child {
    margin-bottom: 0;
}


.column-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
}

.separator-section {
    margin-bottom: 3rem;
}

.separator-image {
    width: 100%;
    height: 40px;
    max-height: 40px;
    object-fit: cover;
}

.timeline-section {
    margin: 3rem 0;
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 3rem 3rem 3rem;
    gap: 1rem;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.timeline-separator {
    width: 60%;
    height: 3px;
    background-color: #5A7444;
    margin-bottom: 1rem;
}

.timeline-text {
    font-family: 'Allura', cursive;
    font-size: 1.5rem;
    color: #5A7444;
}

.btn-program {
    display: inline-block;
    background-color: #839C4B;
    color: white;
    padding: 0.5rem 2.5rem;
    text-decoration: none;
    font-family: 'Alex Brush', cursive;
    font-size: 2.5rem;
    transition: background-color 0.3s ease;
}

.btn-program:hover {
    background-color: #6b8239;
}

.info-cards-section {
    margin: 1rem 0;
}

.info-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 3rem;
}

.info-card {
    flex: 1;
    position: relative;
    padding-bottom: 2rem;
}

.info-card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.info-card-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 160px;
    padding: 1rem 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card-box span {
    font-family: 'Alex Brush', cursive;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    line-height: 1.2;
}

.green-box {
    background-color: rgba(131, 156, 75, 0.8);
}

.yellow-box {
    background-color: rgba(255, 204, 51, 0.8);
}

.info-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
    margin-top: 3rem;
    background-color: white;
}

.footer-separator {
    width: 100%;
    height: 40px;
    max-height: 40px;
    object-fit: cover;
    display: block;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.footer-text {
    text-align: right;
    color: #5A7444;
}

.footer-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0.2rem 0;
}

.footer-text strong {
    font-weight: 600;
}

.maries-banner-section {
    margin-bottom: 3rem;
}

.maries-banner {
    position: relative;
    background-image: url('images/maries-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maries-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 900px;
}

.maries-portrait {
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 2;
}

.mariee-box,
.marie-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    text-align: center;
}

.mariee-box {
    background-color: rgba(255, 204, 51, 0.8);
}

.marie-box {
    background-color: rgba(131, 156, 75, 0.8);
}

.mariee-box h2,
.marie-box h2 {
    font-family: 'Alex Brush', cursive;
    font-size: 4rem;
    color: #404040;
    font-weight: 400;
    line-height: 1.2;
}

.content-module {
    padding: 0;
}

.module-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.module-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
}

.module-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.module-image.overlapping-photos {
    position: relative;
    padding: 2rem;
    gap: 0;
}

.module-image.overlapping-photos img:first-child {
    width: 80%;
    position: relative;
    z-index: 1;
    align-self: flex-end;
}

.module-image.overlapping-photos img:last-child {
    width: 80%;
    position: relative;
    margin-top: -10%;
    align-self: flex-start;
    z-index: 2;
}

.module-image.overlapping-photos.reversed img:first-child {
    align-self: flex-start;
    z-index: 2;
}

.module-image.overlapping-photos.reversed img:last-child {
    align-self: flex-end;
    z-index: 1;
}

.module-image.triple-overlapping {
    position: relative;
    padding: 2rem;
    gap: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.module-image.triple-overlapping img {
    width: 45%;
    height: auto;
    position: relative;
}

.module-image.triple-overlapping img:first-child {
    z-index: 1;
    margin-right: -10%;
    margin-top: 20%;
}

.module-image.triple-overlapping img:nth-child(2) {
    z-index: 3;
    margin-top: 0;
}

.module-image.triple-overlapping img:last-child {
    z-index: 2;
    margin-top: -30%;
    margin-left: -20%;
}

.module-image.triple-overlapping.offset-right-bottom img:last-child {
    margin-top: -15%;
    margin-left: 20%;
}

.module-image.triple-overlapping-landscape {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.module-image.triple-overlapping-landscape img {
    width: 60%;
    max-width: 350px;
    height: auto;
    position: relative;
}

.module-image.triple-overlapping-landscape img:first-child {
    z-index: 1;
    align-self: flex-end;
    margin-bottom: -10%;
}

.module-image.triple-overlapping-landscape img:nth-child(2) {
    z-index: 2;
    align-self: center;
    margin-bottom: -15%;
    margin-right: -25%;
}

.module-image.triple-overlapping-landscape img:last-child {
    z-index: 3;
    align-self: flex-end;
    margin-left: 10%;
}

.module-image.mixed-overlapping {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: 500px;
}

.module-image.mixed-overlapping img:first-child {
    width: 32%;
    max-width: 280px;
    height: auto;
    z-index: 2;
    position: relative;
    margin-top: -10%;
    margin-right: -5%;
    align-self: center;
}

.module-image.mixed-overlapping img:nth-child(2) {
    width: 48%;
    max-width: 420px;
    height: auto;
    z-index: 3;
    position: relative;
    margin-top: -40%;
}

.module-image.mixed-overlapping img:last-child {
    width: 32%;
    max-width: 280px;
    height: auto;
    z-index: 1;
    position: relative;
    margin-left: -40%;
    margin-top: 25%;
}

.module-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.module-title {
    font-family: 'Allura', cursive;
    font-size: 3rem;
    color: #5A7444;
    margin-bottom: 1rem;
}

.module-separator {
    width: 60px;
    height: 3px;
    background-color: #1015AF;
    margin-bottom: 1.5rem;
}

.module-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-content p,
.module-content li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5A7444;
    margin: 0;
}

.text-blue {
    color: #1015AF !important;
}

.no-gap {
    line-height: 1.4;
}

.module-content ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style-position: outside;
}

.module-content li {
    margin: 0.3rem 0;
}

.image-right .module-container {
    direction: rtl;
}

.image-right .module-text {
    direction: ltr;
}

.bg-white {
    background-color: white;
}

.bg-light {
    background-color: rgba(255, 242, 205, 0.8);
}

.bg-green {
    background-color: rgba(131, 156, 75, 0.1);
}

.info-banner-section {
    position: relative;
    margin-bottom: 3rem;
}

.info-banner {
    height: 300px;
    background-image: url('images/informations-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    position: relative;
}

.overlapping-timeline {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.timeline-bordered {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    background-color: transparent;
}

.timeline-item-bordered {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.75);
    border: 2px solid #5A7444;
    padding: 1rem;
    border-radius: 8px;
}

.timeline-item-bordered .timeline-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.timeline-item-bordered .timeline-separator {
    width: 50%;
    height: 2px;
    background-color: #5A7444;
    margin-bottom: 0.5rem;
}

.timeline-item-bordered .timeline-text {
    font-family: 'Allura', cursive;
    font-size: 1.3rem;
    color: #5A7444;
    margin: 0;
}

.logement-banner-section {
    margin-bottom: 3rem;
}

.logement-banner {
    position: relative;
    height: 300px;
    background-image: url('images/logement.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text-box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem 3rem;
    border-radius: 8px;
    width: fit-content;
    max-width: 80%;
}

.banner-text-box h2 {
    font-family: 'Alex Brush', cursive;
    font-size: 3rem;
    color: #5A7444;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.lodging-grid-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.lodging-section-title {
    font-family: 'Allura', cursive;
    font-size: 2.5rem;
    color: #5A7444;
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.lodging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lodging-card {
    display: flex;
    flex-direction: column;
}

.lodging-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

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

.lodging-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.lodging-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lodging-map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/3.4;
    overflow: hidden;
}

.lodging-map {
    width: 100%;
    height: 100%;
    border: none;
}

.lodging-name-below {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem;
    font-family: 'Alex Brush', cursive;
    font-size: 1.8rem;
    text-align: center;
}

.lodging-name-below a {
    color: #5A7444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lodging-name-below a:hover {
    color: #839C4B;
}

.lodging-info {
    padding: 1rem 0;
    text-align: center;
}

.lodging-address,
.lodging-phone,
.lodging-distance {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #5A7444;
    margin: 0.3rem 0;
    text-align: center;
}

.lodging-distance {
    font-weight: 600;
    color: #1015AF;
}

.lodging-website {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 1rem;
    background-color: #839C4B;
    color: white;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.lodging-website:hover {
    background-color: #6b8239;
}

.airbnb-section {
    display: flex;
    justify-content: center;
}

.airbnb-card {
    background-color: rgba(131, 156, 75, 0.05);
    border: 2px solid #839C4B;
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 600px;
    text-align: center;
}

.airbnb-card h4 {
    font-family: 'Alex Brush', cursive;
    font-size: 2.5rem;
    color: #5A7444;
    margin-bottom: 1rem;
}

.airbnb-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #5A7444;
    margin: 0.8rem 0;
}

.airbnb-location {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1015AF;
    margin: 1.5rem 0;
}

.airbnb-button {
    display: inline-block;
    background-color: #FF5A5F;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Alex Brush', cursive;
    font-size: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airbnb-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 90, 95, 0.3);
}

.airbnb-tip {
    font-style: italic;
    margin-top: 1.5rem;
    color: #839C4B;
}

.trajets-banner-section {
    margin-bottom: 3rem;
}

.trajets-banner {
    position: relative;
    height: 300px;
    background-image: url('images/trajets-banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.transport-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.transport-header {
    background-color: #839C4B;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transport-icon {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.transport-title {
    font-family: 'Alex Brush', cursive;
    font-size: 2rem;
    color: white;
    margin: 0;
}

.transport-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transport-paragraph {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transport-paragraph:only-child {
    align-items: center;
    text-align: center;
}

.transport-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5A7444;
    margin: 0;
}

.transport-highlight.voiture {
    font-weight: 600;
    font-size: 1.6rem;
}

.transport-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.transport-details p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5A7444;
    margin: 0;
    line-height: 1.6;
}

/* Info section styles (reusable for parking and other sections) */
.info-section {
    padding: 4rem 2rem;
}

.info-section.green-bg {
    background-color: #f0f5e8;
}

.info-section.white-bg {
    background-color: #ffffff;
}

/* Keep backward compatibility */
.parking-section {
    background-color: #f0f5e8;
    padding: 4rem 2rem;
}

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

.parking-title {
    font-family: 'Alex Brush', cursive;
    font-size: 3rem;
    color: #5A7444;
    margin: 0 0 1rem 0;
}

.parking-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #5A7444;
    margin: 0 0 3rem 0;
}

.parking-content {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.parking-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.parking-image {
    min-width: 0;
    width: 100%;
}

.parking-paragraph {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.parking-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5A7444;
    margin: 0;
}

.parking-paragraph p:not(.parking-highlight) {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5A7444;
    margin: 0;
    line-height: 1.6;
}

.parking-image img,
.parking-image iframe {
    width: 100%;
    border-radius: 8px;
    display: block;
    border: 0;
}

.parking-image img {
    height: auto;
    object-fit: contain;
}

.parking-image iframe {
    height: 400px;
}

.parking-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.parking-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5A7444;
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

/* Third section styles */
.full-width-text {
    margin: 1rem 0;
}

.full-width-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5A7444;
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

.dual-iframes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.iframe-container {
    min-width: 0;
}

.iframe-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 0;
    display: block;
}

.stacked-texts {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.dual-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.image-with-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-with-text img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.dual-images .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.dual-images .image-with-text img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.dual-images .image-with-text img#portail-muy {
    object-position: center 40%;
}

.dual-images .image-with-text img#portail-roquebrune {
    object-position: right 60%;
}

.image-with-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5A7444;
    margin: 0;
    line-height: 1.6;
    text-align: center;
}

/* Confirmation page styles */
.confirmation-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-title {
    font-family: 'Alex Brush', cursive;
    font-size: 3rem;
    color: #5A7444;
    margin: 0 0 2rem 0;
}

.confirmation-main-text {
    margin: 2rem 0 3rem 0;
}

.confirmation-main-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #5A7444;
    margin: 0;
    line-height: 1.6;
}

.confirmation-button-container {
    margin: 3rem 0;
}

.confirmation-button {
    display: inline-block;
    background-color: #FFCC33;
    color: #5A7444;
    font-family: 'Alex Brush', cursive;
    font-size: 2rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.confirmation-button:hover {
    background-color: #e6b82e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #5A7444;
}

.confirmation-info {
    margin: 3rem 0 0 0;
    text-align: left;
}

.confirmation-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #5A7444;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
    text-align: justify;
}

.confirmation-info p:last-child {
    margin-bottom: 0;
}

/* Easter egg pages styles */
.easter-egg-gallery {
    position: relative;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.easter-egg-gallery img {
    width: 40%;
    height: auto;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.easter-egg-gallery img:first-child {
    z-index: 1;
    margin-right: -10%;
    margin-top: 20%;
}

.easter-egg-gallery img:nth-child(2) {
    z-index: 3;
    margin-top: 0;
}

.easter-egg-gallery img:last-child {
    z-index: 2;
    margin-top: -30%;
    margin-left: -20%;
}

.easter-egg-video {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.easter-egg-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hidden easter egg elements */
.easter-egg-lizard {
    position: absolute;
    width: 50px !important;
    height: auto !important;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

.easter-egg-lizard:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .easter-egg-gallery {
        padding: 2rem 1rem;
    }

    .easter-egg-gallery img {
        width: 45%;
    }

    .easter-egg-gallery img:first-child {
        margin-right: 0%;
        margin-top: 5%;
    }

    .easter-egg-gallery img:nth-child(2) {
        margin-top: 0%;
    }

    .easter-egg-gallery img:last-child {
        margin-top: -5%;
        margin-left: -15%;
    }

    .easter-egg-lizard {
        width: 50px;
    }

    .nav-container {
        padding: 1rem;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        gap: 1rem;
    }

    .nav-menu.nav-menu-active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .maries-banner-section {
        margin-bottom: 1rem;
    }

    .trajets-banner-section {
        margin-bottom: 1rem;
    }

    .logement-banner-section {
        margin-bottom: 1rem;
    }

    .transport-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transport-section {
        padding: 1.5rem;
    }

    .transport-header {
        padding: 1.25rem;
    }

    .transport-content {
        padding: 1.5rem;
    }

    .parking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .parking-section {
        padding: 3rem 1rem;
    }

    .parking-title {
        font-size: 2.5rem;
    }

    .dual-iframes,
    .dual-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .stacked-texts {
        margin: 2rem 0;
    }

    .confirmation-section {
        padding: 3rem 1rem;
    }

    .confirmation-title {
        font-size: 2.5rem;
    }

    .confirmation-main-text p {
        font-size: 1.2rem;
    }

    .confirmation-button {
        font-size: 1.8rem;
        padding: 0.8rem 2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(131, 156, 75, 0.05);
        margin: 0 2rem;
        padding: 0;
    }

    .dropdown-link {
        padding: 0.3rem 1rem;
        font-size: 0.9rem;
    }

    .main-content {
        padding: 1rem;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .date-location-box {
        padding: 1.5rem;
    }

    .date-location-box h2 {
        font-size: 2rem;
    }

    .separator-section {
        margin-bottom: 0;
    }

    .timeline {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 0.5rem 1rem 0.5rem;
        gap: 0.5rem;
    }

    .timeline-section {
        margin: 1rem 0;
    }

    .timeline-item {
        flex: 0 0 45%;
        max-width: 150px;
    }

    .timeline-item:nth-child(5) {
        flex: 0 0 100%;
        max-width: 200px;
    }

    .timeline-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
    }

    .timeline-separator {
        width: 60%;
        height: 2px;
        margin-bottom: 0.5rem;
    }

    .btn-program {
        font-size: 1.5rem;
        padding: 0.8rem 2rem;
    }

    .info-cards {
        flex-direction: column;
        margin: 0 1rem;
    }

    .info-card-image {
        height: 300px;
    }

    .info-card-box {
        height: 100px;
    }

    .info-card-box span {
        font-size: 1.5rem;
    }

    .footer {
        margin-top: 1rem;
    }

    .footer-text {
        text-align: center;
    }

    .maries-banner {
        height: auto;
        min-height: 300px;
        padding: 2rem 1rem;
    }

    .maries-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .maries-portrait {
        width: 50%;
        height: auto;
        order: 1;
    }

    .mariee-box,
    .marie-box {
        width: 100%;
        height: auto;
        padding: 1rem;
    }

    .mariee-box {
        order: 0;
    }

    .marie-box {
        order: 2;
    }

    .mariee-box h2,
    .marie-box h2 {
        font-size: 2.5rem;
    }

    .module-container {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .image-right .module-container {
        direction: ltr;
    }

    .module-text {
        padding: 1rem 1.5rem;
    }

    .module-title {
        font-size: 2rem;
    }

    .module-image {
        order: -1;
    }

    .module-image.overlapping-photos {
        padding: 1rem;
    }

    .module-image.triple-overlapping {
        padding: 1rem;
    }

    .module-image.triple-overlapping img {
        width: 45%;
    }

    .module-image.triple-overlapping img:first-child {
        margin-right: 0%;
        margin-top: 5%;
    }

    .module-image.triple-overlapping img:nth-child(2) {
        margin-top: 0%;
    }

    .module-image.triple-overlapping img:last-child {
        margin-top: -5%;
        margin-left: -15%;
    }

    .module-image.triple-overlapping-landscape {
        padding: 1rem;
        min-height: 300px;
        align-items: center;
    }

    .module-image.triple-overlapping-landscape img {
        width: 70%;
        max-width: 250px;
    }

    .module-image.triple-overlapping-landscape img:first-child {
        margin-bottom: -8%;
        align-self: center;
        margin-right: -10%;
    }

    .module-image.triple-overlapping-landscape img:nth-child(2) {
        margin-bottom: -10%;
        margin-right: 0;
        align-self: center;
        margin-left: -10%;
    }

    .module-image.triple-overlapping-landscape img:last-child {
        margin-left: 10%;
        align-self: center;
        margin-right: -10%;
    }

    .module-image.triple-overlapping.offset-right-bottom img:last-child {
        margin-top: -5%;
        margin-left: 20%;
    }

    .module-image.mixed-overlapping {
        flex-direction: column;
        padding: 1rem;
        min-height: 300px;
    }

    .module-image.mixed-overlapping img:first-child,
    .module-image.mixed-overlapping img:last-child {
        width: 60%;
        max-width: 200px;
    }

    .module-image.mixed-overlapping img:nth-child(2) {
        width: 80%;
        max-width: 300px;
        margin-top: 5%;
    }

    .module-image.mixed-overlapping img:first-child {
        margin-right: 0;
        margin-bottom: -10%;
        align-self: flex-start;
    }

    .module-image.mixed-overlapping img:last-child {
        margin-left: 0;
        margin-top: -10%;
        align-self: flex-end;
    }

    .info-banner {
        height: auto;
        min-height: 350px;
        padding: 2rem 1rem;
    }

    .overlapping-timeline {
        padding: 0 0.5rem;
        bottom: -60px;
    }

    .timeline-bordered {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .timeline-item-bordered {
        flex: 0 0 40%;
        max-width: 120px;
        padding: 0.5rem;
    }

    .timeline-item-bordered:nth-child(5) {
        flex: 0 0 40%;
        max-width: 120px;
    }

    .timeline-item-bordered .timeline-icon {
        width: 45px;
        height: 45px;
    }

    .timeline-item-bordered .timeline-text {
        font-size: 1rem;
    }

    .logement-banner {
        height: 200px;
    }

    .banner-text-box {
        padding: 1.5rem 2rem;
    }

    .banner-text-box h2 {
        font-size: 2rem;
        white-space: normal;
    }

    .trajets-banner {
        height: 200px;
    }

    .lodging-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lodging-grid-section {
        padding: 1rem;
    }

    .info-section {
        padding: 2rem 1.5rem;
    }
}