@font-face {
    font-family: 'MakeWonderfull';
    src: url('fonts/make-wonderful-moments-script-font/MakeWonderfulMomentsScript-lg5Xw.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/FuturaStd folder/FuturaStd-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/FuturaStd folder/FuturaStd-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: optional;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-color: #333;
    --bg-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Futura', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    /* Background moved to .hero-bg img, but kept here as fallback */
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 10vh 20px 20px;
    overflow: hidden; /* Ensure image doesn't overflow */
}



.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-top: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.cartouche {
    background: rgba(44, 62, 80, 0.4);
    /* Dark blue tint matching primary color */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    text-align: center;
    max-width: 90%;
    border-radius: 16px;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cartouche h1 {
    font-size: 1.2rem;
    font-weight: bold;
    /* Uses Futura Bold */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Shape Divider Transition */
.custom-shape-divider-bottom-1705856407 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1705856407 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.custom-shape-divider-bottom-1705856407 .shape-fill {
    fill: var(--bg-color);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.description {
    max-width: 100%;
    margin: -10rem auto 2rem auto;
    text-align: justify;
    font-size: 1.25rem;
    font-weight: 300;
    color: #4a4a4a;
    position: relative;
    z-index: 10;

    /* Elegant Card Style */
    background-color: #ffffff;
    padding: 3rem 3rem 1.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.description p {
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive */


/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-box {
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #a67c52;
}

/* Use custom font for feature titles */
.feature-box h3 {
    font-family: 'MakeWonderfull', cursive;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: #333;
    font-weight: normal;
}

.feature-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.4;
}

/* Pastel Colors */
.box-1 {
    background-color: #f2e6e6;
}

/* Confort - Pinkish Beige */
.box-2 {
    background-color: #e6f2ff;
}

/* Piscine - Light Blue */
.box-3 {
    background-color: #ffe6e6;
}

/* Terrasse - Light Pink */
.box-4 {
    background-color: #e6e6e6;
}

/* Connecté - Light Grey */
.box-5 {
    background-color: #e8f5e9;
}

/* Jardin - Light Green */
.box-6 {
    background-color: #fff9c4;
}

/* Plages - Light Yellow */

/* Interiors Section */
.interiors,
.exteriors {
    padding: 4rem 2rem 0 2rem;
    background-color: #ffffff !important;
    position: relative;
    z-index: 1;
}

.interiors-title {
    text-align: center;
    margin-bottom: 3rem;
}

.interiors-title h2 {
    font-family: 'MakeWonderfull', cursive;
    font-size: 4.5rem;
    color: #333;
    margin: 0 auto 3rem;

    display: inline-block;
    position: relative;
    overflow: visible;
    z-index: 10;
    padding-right: 0;
    padding-left: 0;
}

.interiors-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 200px;
    /* Increased slightly for better visibility behind text */
    height: 200px;
    background-image: url('img/feuille_verte1.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

/* Exteriors Title - Override for different positioning */
.exteriors-title h2 {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
}

.exteriors-title h2::after {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background-image: url('img/feuille_sable.webp');
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}



/* Availability Title - Override for different positioning */
.availability-title h2 {
    padding-right: 0;
    padding-left: 0;
    /* Removed padding for gecko space */
    position: relative;
    z-index: 10;
}

.availability-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background-image: url('img/gecko.webp');
    width: 200px;
    /* Increased size like the leaf */
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

/* Surroundings Title Layout */
.surroundings-title-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.surroundings-title-layout h2 {
    margin: 0;
    display: inline-block;
    position: relative;
    padding: 20px;
    z-index: 10;
}

.surroundings-title-layout h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('img/colibri.webp');
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

/* Override any potential inherited ::after styles (like the green flower) */
.surroundings-title-layout h2::after {
    display: none;
}

/* Conciergerie Title - Yellow Flower Left */
/* Conciergerie Title - Yellow Flower Left */
.concierge-title-yellow-left h2 {
    display: inline-block;
    position: relative;
    padding: 20px;
    /* Add some padding if needed so the flower doesn't feel cramped, though it is behind */
    z-index: 10;
}

.concierge-title-yellow-left h2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url('img/fleur_jaune.webp');
    width: 200px;
    /* Increased size since it is a background element now */
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

/* Remove ::after since we are using ::before */
.concierge-title-yellow-left h2::after {
    display: none;
}

/* Tarification Title - Custom Styling */
.tarification-title h2 {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
}

.tarification-title h2::after {
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background-image: url('img/fleur_fushia.webp');
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}






/* Slider */
.slider-container,
.slide,
.slide-content,
.slide-text,
.slide-image {
    background-color: transparent !important;
}

.slider-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.slides-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #a67c52;
    font-weight: bold;
    font-size: 40px;
    /* Larger arrows */
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    z-index: 10;
    background-color: transparent;
    border: none;
    /* Transparent background as requested implicitly */
}

.prev:focus-visible,
.next:focus-visible {
    outline: 3px solid #00a896;
    outline-offset: 2px;
}

/* Position "prev button" to the left */
.prev {
    left: -60px;
}

/* Position "next button" to the right */
.next {
    right: -60px;
}

/* On hover, add color change */
.prev:hover,
.next:hover {
    color: #333;
    background-color: transparent;
}

/* Responsive arrows */
@media (max-width: 1200px) {
    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .prev,
    .next {
        background-color: rgba(255, 255, 255, 0.8);
        /* Background for visibility on image */
        font-size: 24px;
        padding: 10px;
    }
}

.slide {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    z-index: 0;
    display: block !important;
    /* Ensure display is always block for grid stacking */
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    display: block !important;
}

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

.slide-image {
    flex: 1;
    min-width: 300px;
}

.slide-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.slide-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    /* Image shows left align but centered in block, let's keep left */
    /* Image shows left align but centered in block, let's keep left */
    padding: 1rem 1rem 0;
    /* Reduced bottom padding to 0 */
}

.slide-text h3 {
    font-family: 'MakeWonderfull', cursive;
    font-size: 3rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
    /* Title centered as per image */
}

.slide-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 0;
    /* Ensure no extra margin */
}

/* Dots */
.slider-dots {
    text-align: center;
    margin-top: 0.5rem;
    /* Reduced from 2rem as requested */
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: none;
    padding: 0;
}

.dot:focus-visible {
    outline: 3px solid #00a896;
    outline-offset: 2px;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Removed Fade Keyframes as we use transition */



/* Photo Album Section */
.photo-album {
    padding: 4rem 0;
    background-color: #ffffff;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    max-width: 100%;
    margin: 0;
    padding: 10px;
}

.album-grid img {
    /* Styles moved to .album-item img */
    display: none;
    /* Hide direct children imgs if any remain, or just reset styles */
}

.album-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
}

.album-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark veil */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-overlay i {
    color: #00a896;
    /* Turquoise */
    font-size: 3rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.album-item:hover .album-overlay {
    opacity: 1;
}

.album-item:hover .album-overlay i {
    transform: scale(1);
}

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

.album-grid img:hover {
    transform: scale(1.02);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightboxImage {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.close-lightbox:focus-visible {
    outline: 2px solid white;
    outline-offset: 2px;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev-lightbox,
.next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    z-index: 1001;
}

.next-lightbox {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev-lightbox:hover,
.next-lightbox:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-lightbox:focus-visible,
.next-lightbox:focus-visible {
    outline: 2px solid white;
    outline-offset: -2px;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Plages - Light Yellow */

/* Flip Box Styles */
.flip-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem 2rem;
}

.flip-box {
    background-color: transparent;
    perspective: 1000px;
    height: 320px;
    /* Reduced from 400px */
}

/* Add focus support for accessibility */
.flip-box:hover .flip-box-inner,
.flip-box:focus-within .flip-box-inner,
.flip-box:focus .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #00a896;
    background-color: white;
}

.flip-box-front {
    background-color: white;
    color: black;
}

.flip-box-back {
    background-color: #ffffff;
    color: #333;
    transform: rotateY(180deg);
}

.flip-img-container {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-box h3 {
    color: #00a896;
    font-family: 'Futura', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.flip-box-front p {
    font-size: 1rem;
    font-weight: bold;
    color: #444;
    line-height: 1.5;
}

.flip-box-back p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}



/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 35px;
    z-index: 99;
    font-size: 20px;
    border: 2px solid white;
    outline: none;
    background-color: #00a896;
    /* Turquoise to match theme */
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    /* display: flex; Removed to ensure hidden by default, JS toggles this */
    justify-content: center;
    align-items: center;
}

#scrollTopBtn:hover {
    background-color: #36bfb1;
    /* Slightly darker teal */
    transform: translateY(-5px);
}

/* Concierge Section */
.concierge {
    padding: 2rem 2rem;
    background-color: white;
}

.accordion-container {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #FFD700;
    /* Yellow border matching image */
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    background: white;
}

.accordion-header {
    background-color: transparent;
    color: #00a896;
    /* Turquoise */
    cursor: pointer;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Futura', sans-serif;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #fcfcfc;
}

.accordion-header i {
    font-size: 1.5rem;
    color: #00a896;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
}

.accordion-content p,
.accordion-content li {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.accordion-content ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 1rem;
}

.contact-info {
    margin: 1rem 0;
}

.contact-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-centered p {
    margin: 0;
}

.red-bold {
    color: #D22B2B;
    /* Red color from image */
    font-weight: bold;
    font-size: 1.2rem;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    padding: 2rem 2rem;
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: white;
    border: 2px solid #ee3272;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pricing-card h2 {
    font-family: 'MakeWonderfull', cursive;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 2rem;
}

.season-block {
    margin-bottom: 2rem;
}

.season-block h3 {
    font-family: 'Futura', sans-serif;
    color: #D22B2B;
    /* Dark red */
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.season-date {
    font-weight: bold;
    color: #D22B2B;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.price {
    font-weight: bold;
    color: #333;
    font-size: 1.2rem;
}

.pricing-list {
    text-align: justify;
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 2rem;
}

.pricing-list li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-image {
        min-height: auto; /* Allow height to adapt to image */
        height: auto;
        order: -1;
        /* Image on top on mobile if desired, or keep as is */
    }
}

/* Availability Section */
.availability {
    padding: 4rem 2rem 2rem 2rem;
    /* Reduced bottom padding */
    background-color: #fff;
    /* or match previous section background */
    text-align: center;
}

.widget-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.widget-wrapper {
    width: 100%;
    max-width: 100%;
    border: 2px solid black;
    padding: 20px;
    background: white;
    border-radius: 20px;
}

/* Footer Section */
.main-footer {
    position: relative;
    background-image: url('img/full_picto.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 10px;
    /* Space for decoration */
    padding-bottom: 64px;
    overflow: hidden;
    margin-top: 0;
    /* Removed top margin */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}



.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    width: 300px;
    opacity: 0;
    /* Hidden by default for animation */
    transition: opacity 0.3s;
}

.footer-logo img.visible {
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.footer-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.icon-circle.pink {
    background-color: #e91e63;
}

.icon-circle.teal {
    background-color: #00a896;
}

.info-card h3 {
    font-family: 'MakeWonderfull', sans-serif;
    font-size: 24px;
    margin: 0;
    color: #333;
}

.info-card p,
.info-card a {
    margin: 5px 0;
    color: #666;
    font-family: 'Futura', sans-serif;
    /* Fallback if Futura not defined globally */
    font-size: 16px;
    text-decoration: none;
}

.info-card a {
    text-decoration: none;
    color: inherit;
    /* Default to inheriting color (black/grey) */
    transition: color 0.3s;
}

.info-card a:hover,
.info-card a:hover p {
    color: #00a896 !important;
    /* Force green on hover */
}

.siret {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.qr-code img {
    width: 150px;
    height: 150px;
    display: block;
}

.dede-medallion {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00a896;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
}

/* Mobile Optimization for Sticky Buttons */


@media (max-width: 900px) {
    .footer-cards {
        flex-direction: column;
        align-items: center;
    }
}

.surroundings {
    background-image: url('img/feuille_sable.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 1rem;
    padding-top: 100px;
    /* Added padding to prevent colibri image clipping */
    /* Ensure content isn't cut off */
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 8px;
    background-color: #00a896;
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Sticky Header Buttons */
.sticky-header-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    font-family: 'Futura', sans-serif;
}

.sticky-btn:hover {
    transform: translateY(-2px);
}

.book-btn {
    background-color: #00a896;
    /* Teal color matching chat button */
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid white;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

.book-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.lang-btn {
    background: none;
    border: none;
    box-shadow: none;
    cursor: pointer;
}

.flag-icon {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    display: block;
}

/* Ensure mobile background is not cut and fits width */


/* Contact Buttons in Accordion */
.contact-buttons-container {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Futura', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-btn i {
    font-size: 1.2rem;
}

/* Phone Button - Outline style to match Email */
.contact-btn.phone {
    background-color: transparent;
    color: #00a896;
    border: 2px solid #00a896;
    box-shadow: none;
    /* No shadow initially for outline style */
}

.contact-btn.phone:hover {
    background-color: #00a896;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Interactive Map Section */
#map-section {
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

#map-container {
    width: 100%;
    max-width: 1000px;
    /* Aligned with slider max-width */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

#map {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    background-color: #e5e5e5;
    /* Fallback color */
    z-index: 1;
    /* Ensure map is interactable */
}

/* Custom Marker Pulse Effect for Villa */
.custom-map-marker>div {
    transition: transform 0.3s ease;
}

.custom-map-marker:hover {
    z-index: 1000 !important;
}

.custom-map-marker:hover>div {
    transform: scale(1.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4) !important;
}



/* Email Button - Outline or Secondary */
.contact-btn.email {
    background-color: transparent;
    color: #00a896;
    border: 2px solid #00a896;
}

.contact-btn.email:hover {
    background-color: #00a896;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.reviews-section {
    padding: 2rem 2rem 4rem 2rem;
    background-color: transparent;
    text-align: center;
}

.reviews-section h2 {
    font-family: 'MakeWonderfull', cursive;
    font-size: 4.5rem;
    color: #333;
    margin-bottom: 3rem;

    display: inline-block;
    position: relative;
    overflow: visible;
    z-index: 10;
    padding-left: 140px;
    /* Space for the flower on the left */
    padding-right: 0;
}

.reviews-section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    /* Adjust slightly to hang off or 0 to be inside */
    right: auto;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background-image: url('img/fleur_jaune.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

/* Specific styling for English Review Section to center the flower */
.reviews-section-en h2 {
    padding-left: 0;
    padding-right: 0;
}

.reviews-section-en h2::after {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

/* Reviews Border Container */
.reviews-border-container {
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00a896;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Futura', sans-serif;
}

.review-author-info h3 {
    font-family: 'Futura', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    font-family: 'Futura', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.google-link-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 12px 30px;
    background-color: white;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Futura', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.google-link-btn:hover {
    background-color: #f1f1f1;
    border-color: #ccc;
    transform: translateY(-2px);
}

.google-logo-icon {
    font-size: 20px;
    color: #DB4437;
    /* Google Red or inherit */
}

/* Responsive Adjustments for Availability Title Overflow */


/* Universal Mobile Centering Enforcement */
/* --- MOBILE OPTIMIZATION (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        background-position: 75% center !important;
        background-attachment: scroll !important; /* Disable parallax on mobile */
    }

    .hero-logo {
        max-width: 220px;
    }

    .cartouche {
        padding: 1rem 1.5rem;
        border-radius: 20px;
    }

    .cartouche h1 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Text Adjustments */
    .description {
        font-size: 1.1rem;
        text-align: justify;
    }

    /* Interiors & Sliders */
    .interiors-title {
        margin-bottom: 1.5rem;
    }

    .interiors-title h2,
    .surroundings-title-layout h2,
    .availability-title h2,
    .concierge-title-yellow-left h2,
    .tarification-title h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    /* Slider Adjustments */
    .slide-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem;
        align-items: center !important;
    }

    .slide-text {
        text-align: center !important;
        padding-bottom: 0;
    }

    .slider-dots {
        margin-top: 0;
    }
    
    #slider-interiors .slider-dots {
        margin-top: -1.5rem;
        position: relative;
        z-index: 5;
    }

    #slider-surroundings .slider-dots {
        margin-top: 1.5rem;
    }

    /* Flip Box */
    .flip-box {
        margin-bottom: 2rem;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .flip-box-grid {
        justify-content: center !important;
        justify-items: center !important;
        padding: 0 1rem 2rem !important;
    }
    
    .flip-box-front,
    .flip-box-back,
    .flip-box-inner {
        text-align: center !important;
        align-items: center !important;
    }

    /* Floating Book Button */
    .book-btn {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10001;
        width: auto;
        padding: 12px 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        font-size: 16px;
    }

    /* Backgrounds */
    .surroundings {
        background-size: contain !important;
        background-position: center top;
    }

    /* Map */
    #map {
        height: 350px;
    }

    /* Title Overflows & Fonts */
    .availability-title h2 {
        font-size: 3rem !important;
        margin-top: 20px !important;
    }

    .surroundings-title-layout h2 {
        font-size: 2.5rem !important;
        width: 100%;
        word-wrap: break-word;
        padding: 10px !important;
    }

    /* Universal Text Centering & Layout Enforcements */
    .description, .description p {
        text-align: center !important;
    }

    .feature-box {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .slide-image, .slide-text {
        min-width: 0 !important;
        width: 100% !important;
        flex: none !important;
    }

    .slide-text h3, .slide-text p {
        text-align: center !important;
    }

    .concierge-title-yellow-left {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
    }

    .accordion-container, .accordion-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .accordion-container {
        padding: 0 !important;
    }
    
    .footer-content, .info-card {
        text-align: center !important;
        align-items: center !important;
    }

    .pricing-grid {
        display: flex !important;
        flex-direction: column-reverse;
        align-items: center !important;
        gap: 2rem !important;
    }

    .pricing-image {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 50px !important;
    }

    .pricing-image img {
        margin: 0 auto !important;
        display: block !important;
    }

    .pricing-card {
        width: 100% !important;
        margin: 0 auto !important;
        border: 2px solid #ee3272;
        border-radius: 12px;
    }

    .pricing, .availability {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .widget-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
    }

    .widget-wrapper {
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Title Positioning Adjustments */
    .concierge-title-yellow-left,
    .tarification-title,
    .availability-title {
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .concierge-title-yellow-left h2,
    .tarification-title h2,
    .availability-title h2 {
        padding: 20px !important;
        text-align: center !important;
        display: inline-block !important;
    }

    .tarification-title h2::after,
    .availability-title h2::after {
        width: 200px !important;
        height: 200px !important;
    }
}
/* Main Footer */
.main-footer {
    background-image: url('img/full_picto.webp');
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    max-width: 300px;
    height: auto;
    display: block;
    /* Forced visibility: Ensure opacity is 1 regardless of JS animation */
    opacity: 1 !important;
    transform: none !important;
}

.footer-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    margin: 1rem 0;
    color: #333;
    font-size: 1.2rem;
}

.info-card p,
.info-card a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.info-card a:hover {
    color: #00a896;
}

/* Icon Styles Reuse/Fallback */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.icon-circle.pink {
    background-color: #ffe6e6;
    color: #d63384;
}

.icon-circle.teal {
    background-color: #e6f2ff;
    color: #00a896;
}

.qr-code img {
    max-width: 120px;
    height: auto;
    margin-top: 10px;
}

/* Fix Pricing Image Spacing */
.pricing-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* PWA Install Button */
.pwa-install-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10002; /* Above chat and other floats */
    background-color: white;
    color: #00a896;
    border: 2px solid #00a896;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Futura', sans-serif;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
}

.pwa-install-btn:hover {
    transform: translateY(-2px);
    background-color: #f0fdfc;
}

/* Adjust position on mobile to match "Book" button or sit nicely */
@media (max-width: 768px) {
    .pwa-install-btn {
        bottom: 90px; /* Above bottom features */
        left: 20px;
        font-size: 13px;
        padding: 8px 16px;
    }
}
