{"id":10,"date":"2018-08-29T20:03:44","date_gmt":"2018-08-29T20:03:44","guid":{"rendered":"https:\/\/decellesconsulting.com\/search-results\/"},"modified":"2025-10-03T13:47:12","modified_gmt":"2025-10-03T17:47:12","slug":"search-results","status":"publish","type":"page","link":"https:\/\/resortlacstemarie.com\/fr\/search-results\/","title":{"rendered":"S\u00e9lectionnez un h\u00e9bergement"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"10\" class=\"elementor elementor-10\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2da2baf e-con-full e-flex e-con e-parent\" data-id=\"2da2baf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6836c62 e-con-full e-flex e-con e-child\" data-id=\"6836c62\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-14c668a elementor-widget elementor-widget-mphbe-search-results\" data-id=\"14c668a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"mphbe-search-results.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"mphb_sc_search_results-wrapper \"><div class=\"mphb-errors-wrapper\">\n\t<\/div>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e19dca2 elementor-widget elementor-widget-html\" data-id=\"e19dca2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\r\n   document.addEventListener('DOMContentLoaded', function () {\r\n    \/\/ Select the parent wrapper that contains the cards and other elements\r\n    const wrapper = document.querySelector('.mphb_sc_search_results-wrapper');\r\n    document.body.classList.add('loaded'); \/\/ Ensures smooth reveal\r\n    \r\n    if (wrapper) {\r\n        \/\/ Create a new div that will hold the cards as a grid\r\n        const cardWrapper = document.createElement('div');\r\n        cardWrapper.classList.add('card-wrapper'); \/\/ Add class for styling\r\n        wrapper.appendChild(cardWrapper); \/\/ Append it to the original wrapper\r\n        \r\n        \/\/ Move all room cards (mphb-room-type) into the new wrapper\r\n        const roomCards = document.querySelectorAll('.mphb-room-type');\r\n        \r\n        roomCards.forEach(card => {\r\n            \/\/ Add specific classes to elements inside the card\r\n            const image = card.querySelector('.post-thumbnail');\r\n            const title = card.querySelector('.mphb-room-type-title');\r\n            const description = card.querySelector('.mphb-room-type-title ~ p');\r\n\r\n            if (image) image.classList.add('room-image'); \/\/ Add 'room-image' class\r\n            if (title) title.classList.add('room-title'); \/\/ Add 'room-title' class\r\n            if (description) description.classList.add('room-description'); \/\/ Add 'room-description' class\r\n\r\n            cardWrapper.appendChild(card);\r\n        });\r\n    }\r\n\r\n    const cardWrapper = document.querySelector('.card-wrapper');\r\n    \r\n    function setUniformAreaHeights() {\r\n        \/\/ Select all the cards\r\n        const cards = document.querySelectorAll('.mphb-room-type');\r\n\r\n        \/\/ Define the grid-area classes to target\r\n        const areaSelectors = {\r\n            image: '.room-image',\r\n            title: '.room-title',\r\n            description: '.room-description',\r\n            'regular-price': '.mphb-regular-price',\r\n            'book-button': '.mphb-reserve-room-section',\r\n            'detail-button': '.mphb-view-details-button-wrapper'\r\n        };\r\n    \r\n        \/\/ Loop through each grid-area type\r\n        Object.keys(areaSelectors).forEach(area => {\r\n            let maxHeight = 0;\r\n            \/\/ Calculate the maximum height for this area across all cards\r\n            cards.forEach((card, index) => {\r\n                const element = card.querySelector(areaSelectors[area]);\r\n                if (element) {\r\n                    element.style.height = 'auto'; \/\/ Reset height before recalculating\r\n                    const elementHeight = element.offsetHeight;\r\n    \r\n                    if (elementHeight > maxHeight) {\r\n                        maxHeight = elementHeight;\r\n                    }\r\n                } \r\n            });\r\n    \r\n            \/\/ Apply the maximum height to all elements of this area\r\n            cards.forEach((card, index) => {\r\n                const element = card.querySelector(areaSelectors[area]);\r\n                if (element) {\r\n                    element.style.height = `${maxHeight}px`;\r\n                }\r\n            });\r\n        });\r\n    }\r\n\r\n\r\n    function setCardHeights() {\r\n        const cards = document.querySelectorAll('.mphb-room-type');\r\n    \r\n        \/\/ Reset all card heights to auto so they can expand naturally\r\n        cards.forEach(card => {\r\n            card.style.height = 'auto'; \/\/ Allow cards to grow if needed\r\n        });\r\n    \r\n        \/\/ Now apply uniform heights only to inner sections, not the card itself\r\n        setUniformAreaHeights(); \r\n    }\r\n\r\n    \/\/ Call the function to set uniform heights for each area\r\n    setUniformAreaHeights();\r\n    \r\n    \/\/ Call the function to adjust card heights\r\n    setCardHeights();\r\n\r\n    \/\/ Re-adjust heights on window resize\r\n    window.addEventListener('resize', function () {\r\n        setUniformAreaHeights();\r\n        setCardHeights();\r\n    });\r\n    \r\n\r\n\r\n    document.addEventListener('click', function (event) {\r\n        let bookButton = event.target.closest('.mphb-book-button');\r\n        let reserveSection = event.target.closest('.mphb-reserve-room-section');\r\n    \r\n        if (bookButton) {\r\n            \/\/ Wait for the section to expand before recalculating heights\r\n                let expandedSection = bookButton.closest('.mphb-room-type').querySelector('.mphb-reserve-room-section');\r\n    \r\n                if (expandedSection) {\r\n                    setTimeout(() => {\r\n                        setUniformAreaHeights();\r\n                        setCardHeights();\r\n                }, 300); \/\/ Allow for animation delay\r\n            } \r\n        }\r\n    \r\n        if (reserveSection && !bookButton) { \/\/ Prevent double execution\r\n            requestAnimationFrame(() => {\r\n                setUniformAreaHeights();\r\n                setCardHeights();\r\n            });\r\n        }\r\n    }, true); \/\/ Capture phase\r\n\r\n\r\n    \/\/ Watch for changes in the .card-wrapper area\r\n    const observer = new MutationObserver(() => {\r\n        setUniformAreaHeights();\r\n        setCardHeights();\r\n    });\r\n\r\n    \/\/ Start observing the card wrapper for child changes (add\/remove)\r\n    if (cardWrapper) {\r\n        observer.observe(cardWrapper, { childList: true, subtree: true });\r\n    }\r\n    \r\n});\r\n\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-a877b20 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"a877b20\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4ca74ad\" data-id=\"4ca74ad\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b2af8a0 elementor-widget elementor-widget-spacer\" data-id=\"b2af8a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":32,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_eb_attr":"","om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-10","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"robots\" content=\"noindex, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"google-site-verification\" content=\"-S4RF0Ci9fkqM4WClpN8FO6LMDT0BmBYhHMpyFAjjXM\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/resortlacstemarie.com\/fr\/search-results\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_CA\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Resort Lac Ste-Marie | Group Accommodations, Chalets &amp; Relaxation Center on the shores of Lac Ste-Marie\" \/>\n\t\t<meta property=\"og:type\" content=\"website\" \/>\n\t\t<meta property=\"og:title\" content=\"Search Results | Resort Lac Ste-Marie\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/resortlacstemarie.com\/fr\/search-results\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/resortlacstemarie.com\/wp-content\/uploads\/2019\/04\/logo-RLSM-snip.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/resortlacstemarie.com\/wp-content\/uploads\/2019\/04\/logo-RLSM-snip.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"428\" \/>\n\t\t<meta property=\"og:image:height\" content=\"297\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Search Results | Resort Lac Ste-Marie\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/resortlacstemarie.com\/wp-content\/uploads\/2019\/04\/logo-RLSM-snip.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#listItem\",\"name\":\"Search Results\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#listItem\",\"position\":2,\"name\":\"Search Results\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/#organization\",\"name\":\"Resort Lac Ste-Marie\",\"description\":\"Group Accommodations, Chalets & Relaxation Center on the shores of Lac Ste-Marie\",\"url\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/\",\"telephone\":\"+16138643962\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/resortlacstemarie.com\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/cropped-Logo__avec_www.ai_Modifier_le_17_janvier_2018__1_-removebg-preview.png?fit=512%2C512&ssl=1\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#organizationLogo\",\"width\":512,\"height\":512,\"caption\":\"Resort Lac Ste-Marie logo in svg format\"},\"image\":{\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/ResortLacSainteMarie\\\/\",\"https:\\\/\\\/www.instagram.com\\\/resortlacste_marie\\\/\",\"https:\\\/\\\/www.youtube.com\\\/@ResortLacSteMarie\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#webpage\",\"url\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/\",\"name\":\"Search Results | Resort Lac Ste-Marie\",\"inLanguage\":\"fr-CA\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/search-results\\\/#breadcrumblist\"},\"datePublished\":\"2018-08-29T20:03:44-04:00\",\"dateModified\":\"2025-10-03T13:47:12-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/\",\"name\":\"Resort Lac Ste-Marie\",\"alternateName\":\"RLSM\",\"description\":\"Group Accommodations, Chalets & Relaxation Center on the shores of Lac Ste-Marie\",\"inLanguage\":\"fr-CA\",\"publisher\":{\"@id\":\"https:\\\/\\\/resortlacstemarie.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Search Results | Resort Lac Ste-Marie","description":"","canonical_url":"https:\/\/resortlacstemarie.com\/fr\/search-results\/","robots":"noindex, max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"google-site-verification":"-S4RF0Ci9fkqM4WClpN8FO6LMDT0BmBYhHMpyFAjjXM","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/resortlacstemarie.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/resortlacstemarie.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#listItem","name":"Search Results"}},{"@type":"ListItem","@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#listItem","position":2,"name":"Search Results","previousItem":{"@type":"ListItem","@id":"https:\/\/resortlacstemarie.com\/fr#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/resortlacstemarie.com\/fr\/#organization","name":"Resort Lac Ste-Marie","description":"Group Accommodations, Chalets & Relaxation Center on the shores of Lac Ste-Marie","url":"https:\/\/resortlacstemarie.com\/fr\/","telephone":"+16138643962","logo":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/resortlacstemarie.com\/wp-content\/uploads\/2020\/07\/cropped-Logo__avec_www.ai_Modifier_le_17_janvier_2018__1_-removebg-preview.png?fit=512%2C512&ssl=1","@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#organizationLogo","width":512,"height":512,"caption":"Resort Lac Ste-Marie logo in svg format"},"image":{"@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/ResortLacSainteMarie\/","https:\/\/www.instagram.com\/resortlacste_marie\/","https:\/\/www.youtube.com\/@ResortLacSteMarie"]},{"@type":"WebPage","@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#webpage","url":"https:\/\/resortlacstemarie.com\/fr\/search-results\/","name":"Search Results | Resort Lac Ste-Marie","inLanguage":"fr-CA","isPartOf":{"@id":"https:\/\/resortlacstemarie.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/resortlacstemarie.com\/fr\/search-results\/#breadcrumblist"},"datePublished":"2018-08-29T20:03:44-04:00","dateModified":"2025-10-03T13:47:12-04:00"},{"@type":"WebSite","@id":"https:\/\/resortlacstemarie.com\/fr\/#website","url":"https:\/\/resortlacstemarie.com\/fr\/","name":"Resort Lac Ste-Marie","alternateName":"RLSM","description":"Group Accommodations, Chalets & Relaxation Center on the shores of Lac Ste-Marie","inLanguage":"fr-CA","publisher":{"@id":"https:\/\/resortlacstemarie.com\/fr\/#organization"}}]},"og:locale":"fr_CA","og:site_name":"Resort Lac Ste-Marie | Group Accommodations, Chalets &amp; Relaxation Center on the shores of Lac Ste-Marie","og:type":"website","og:title":"Search Results | Resort Lac Ste-Marie","og:url":"https:\/\/resortlacstemarie.com\/fr\/search-results\/","og:image":"https:\/\/resortlacstemarie.com\/wp-content\/uploads\/2019\/04\/logo-RLSM-snip.png","og:image:secure_url":"https:\/\/resortlacstemarie.com\/wp-content\/uploads\/2019\/04\/logo-RLSM-snip.png","og:image:width":428,"og:image:height":297,"twitter:card":"summary_large_image","twitter:title":"Search Results | Resort Lac Ste-Marie","twitter:image":"https:\/\/resortlacstemarie.com\/wp-content\/uploads\/2019\/04\/logo-RLSM-snip.png"},"aioseo_meta_data":{"post_id":"10","title":"#post_title #separator_sa #site_title","description":"#post_excerpt","keywords":null,"keyphrases":{"focus":{"keyphrase":"results","score":81,"analysis":{"keyphraseInTitle":{"score":9,"maxScore":9,"error":0},"keyphraseInDescription":{"score":3,"maxScore":9,"error":1},"keyphraseLength":{"score":9,"maxScore":9,"error":0,"length":1},"keyphraseInURL":{"score":5,"maxScore":5,"error":0}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":false,"robots_noindex":true,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-11-15 16:26:43","updated":"2025-07-18 18:02:33","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/resortlacstemarie.com\/fr\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSearch Results\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/resortlacstemarie.com\/fr"},{"label":"Search Results","link":"https:\/\/resortlacstemarie.com\/fr\/search-results\/"}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/pages\/10","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/comments?post=10"}],"version-history":[{"count":76,"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/pages\/10\/revisions"}],"predecessor-version":[{"id":58859,"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/pages\/10\/revisions\/58859"}],"wp:attachment":[{"href":"https:\/\/resortlacstemarie.com\/fr\/wp-json\/wp\/v2\/media?parent=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}