{"id":1834,"date":"2026-03-18T09:35:51","date_gmt":"2026-03-18T07:35:51","guid":{"rendered":"https:\/\/chrispybeach.gr\/galerie\/"},"modified":"2026-04-08T12:53:07","modified_gmt":"2026-04-08T09:53:07","slug":"galerie","status":"publish","type":"page","link":"https:\/\/chrispybeach.gr\/de\/galerie\/","title":{"rendered":"Galerie"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1834\" class=\"elementor elementor-1834 elementor-221\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2b9490e e-con-full e-flex e-con e-parent\" data-id=\"2b9490e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f619c3 elementor-widget elementor-widget-template\" data-id=\"6f619c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"2401\" class=\"elementor elementor-2401 elementor-1074 elementor-1074\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-87022b3 e-flex e-con-boxed e-con e-parent\" data-id=\"87022b3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f296e29 elementor-widget elementor-widget-html\" data-id=\"6f296e29\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\/dist\/flatpickr.min.css\">\r\n\r\n<form class=\"av-form\" id=\"booking-form\">\r\n    <div class=\"option1 option-av\">\r\n        <label for=\"checkin-picker\">Einchecken<\/label>\r\n        <div>\r\n            <input type=\"text\" id=\"checkin-picker\" required=\"\" readonly>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <div class=\"option2 option-av\">\r\n        <label for=\"checkout-picker\">Auschecken<\/label>\r\n        <div>\r\n            <input type=\"text\" id=\"checkout-picker\" required=\"\" readonly>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <div class=\"option3 option-av\">\r\n        <label>G\u00e4ste<\/label>\r\n        <div class=\"guest-counter\">\r\n            <button type=\"button\" class=\"ctrl-btn minus\" aria-label=\"Decrease guests\">-<\/button>\r\n            <span id=\"guest-count-display\">2 G\u00e4ste<\/span>\r\n            <button type=\"button\" class=\"ctrl-btn plus\" aria-label=\"Increase guests\">+<\/button>\r\n        <\/div>\r\n    <\/div>\r\n    \r\n    <div class=\"option4 option-av\">\r\n        <button type=\"submit\" class=\"sirios-btn filled\">Verf\u00fcgbarkeit pr\u00fcfen<\/button>\r\n    <\/div>\r\n<\/form>\r\n\r\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/flatpickr\"><\/script>\r\n<script>\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n    \/\/ 1. Setup Dates\r\n    const today = new Date();\r\n    \r\n    const tomorrow = new Date(today);\r\n    tomorrow.setDate(tomorrow.getDate() + 1);\r\n\r\n    const dayAfterTomorrow = new Date(tomorrow);\r\n    dayAfterTomorrow.setDate(dayAfterTomorrow.getDate() + 1);\r\n\r\n    \/\/ 2. Initialize Calendars\r\n    const checkOutPicker = flatpickr(\"#checkout-picker\", {\r\n        dateFormat: \"d M Y\",\r\n        minDate: dayAfterTomorrow,\r\n        defaultDate: dayAfterTomorrow\r\n    });\r\n\r\n    const checkInPicker = flatpickr(\"#checkin-picker\", {\r\n        dateFormat: \"d M Y\",\r\n        minDate: \"today\",\r\n        defaultDate: tomorrow,\r\n        onChange: function(selectedDates, dateStr, instance) {\r\n            if (selectedDates.length > 0) {\r\n                \/\/ Ensure checkout is always at least 1 day after checkin\r\n                const newMinOut = new Date(selectedDates[0]);\r\n                newMinOut.setDate(newMinOut.getDate() + 1);\r\n                checkOutPicker.set('minDate', newMinOut);\r\n                \r\n                \/\/ If current checkout is before the new minimum, push it forward\r\n                if (checkOutPicker.selectedDates[0] < newMinOut) {\r\n                    checkOutPicker.setDate(newMinOut);\r\n                }\r\n            }\r\n        }\r\n    });\r\n\r\n    \/\/ 3. Guest Counter Logic\r\n    const minusBtn = document.querySelector('.ctrl-btn.minus');\r\n    const plusBtn = document.querySelector('.ctrl-btn.plus');\r\n    const displaySpan = document.getElementById('guest-count-display');\r\n\r\n    let currentGuests = 2; \/\/ Default starting guests\r\n    const minGuests = 1;\r\n    const maxGuests = 9;\r\n\r\n    const updateGuestCount = () => {\r\n        if (currentGuests === 1) {\r\n            displaySpan.textContent = \"1 Guest\";\r\n        } else {\r\n            displaySpan.textContent = `${currentGuests} Guests`;\r\n        }\r\n    };\r\n\r\n    minusBtn.addEventListener('click', () => {\r\n        if (currentGuests > minGuests) {\r\n            currentGuests--;\r\n            updateGuestCount();\r\n        }\r\n    });\r\n\r\n    plusBtn.addEventListener('click', () => {\r\n        if (currentGuests < maxGuests) {\r\n            currentGuests++;\r\n            updateGuestCount();\r\n        }\r\n    });\r\n\r\n    \/\/ 4. URL Generation & Form Submission Override\r\n    const form = document.getElementById('booking-form');\r\n    \r\n    form.addEventListener('submit', (e) => {\r\n        e.preventDefault(); \/\/ Stop standard submission\r\n\r\n        \/\/ Grab the raw Date objects from Flatpickr\r\n        const checkinDate = checkInPicker.selectedDates[0];\r\n        const checkoutDate = checkOutPicker.selectedDates[0];\r\n\r\n        \/\/ Format check-in as YYYY-MM-DD using Flatpickr's built-in utility\r\n        const formattedCheckin = flatpickr.formatDate(checkinDate, \"Y-m-d\");\r\n\r\n        \/\/ Calculate total nights\r\n        const diffTime = Math.abs(checkoutDate - checkinDate);\r\n        const nights = Math.ceil(diffTime \/ (1000 * 60 * 60 * 24));\r\n\r\n        \/\/ Define remaining variables\r\n        const rooms = 1; \/\/ Assuming default 1 room\r\n        const adults = currentGuests;\r\n\r\n        \/\/ Construct the final URL\r\n        const targetUrl = `https:\/\/chrispybeachresort.reserve-online.net\/?property=CHRISPY&checkin=${formattedCheckin}&rooms=${rooms}&nights=${nights}&adults=${adults}`;\r\n\r\n        \/\/ Open in a new tab\r\n        window.open(targetUrl, '_blank');\r\n    });\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-784d734 e-flex e-con-boxed e-con e-child\" data-id=\"784d734\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-766775a elementor-widget elementor-widget-heading\" data-id=\"766775a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Galerie<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5eab69d elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"5eab69d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein fantastisches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Familienresort besuchen.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c5540c3 elementor-gallery--filter-align-left elementor-widget elementor-widget-gallery\" data-id=\"c5540c3\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"gallery-global\" data-settings=\"{&quot;gallery_layout&quot;:&quot;masonry&quot;,&quot;columns_tablet&quot;:3,&quot;columns_mobile&quot;:2,&quot;image_hover_animation&quot;:&quot;grow&quot;,&quot;lazyload&quot;:&quot;yes&quot;,&quot;columns&quot;:4,&quot;gap&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_laptop&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;gap_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;link_to&quot;:&quot;file&quot;,&quot;show_all_galleries&quot;:&quot;yes&quot;,&quot;overlay_background&quot;:&quot;yes&quot;,&quot;content_hover_animation&quot;:&quot;fade-in&quot;}\" data-widget_type=\"gallery.default\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-gallery__titles-container e--pointer-underline e--animation-fade\" aria-label=\"Gallery filter\">\n\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"all\">\n\t\t\t\t\t\tAlle\t\t\t\t\t<\/a>\n\t\t\t\t\n\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"0\">\n\t\t\t\t\t\tElegantes Doppelzimmer Dreibettzimmer Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"1\">\n\t\t\t\t\t\tFamilienzimmer Schlafzimmer\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"2\">\n\t\t\t\t\t\tRestaurant\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"3\">\n\t\t\t\t\t\tEiland Cocktail &amp; Dine\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"4\">\n\t\t\t\t\t\tInterieur\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"5\">\n\t\t\t\t\t\t\u00c4u\u00dferes\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-item elementor-gallery-title\" role=\"button\" tabindex=\"0\" data-gallery-index=\"6\">\n\t\t\t\t\t\tPool\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTgzNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Bvb2wtNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Galerie Chrispy Beach Resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTEyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-12-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTEyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-12-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-1-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-12-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtOC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS05LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-45.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-45-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-4-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTExLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-11-768x433.webp\" data-width=\"768\" data-height=\"433\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-23.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-23-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-23.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTIzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-23-768x511.webp\" data-width=\"768\" data-height=\"511\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS04LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"eiland\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-52.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-52-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-20.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTIwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-20-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-22.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-22-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Geb\u00fchr f\u00fcr die Bew\u00e4ltigung der Klimakrise\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-11-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-3-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-28.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-28-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-24.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTI0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-24-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTE1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-15-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-3-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0yLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-2-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Bvb2wtMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-2-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-13-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-10-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-21.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-21-768x492.webp\" data-width=\"768\" data-height=\"492\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS03LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Stornierungsbedingungen\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS00LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-4-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-17-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-33.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-33-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-6-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTEzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-13-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-6-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-27.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-27-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-7-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-13-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-12-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-25.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-25-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-6-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-26.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-26-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-47.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-47-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-16-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTgzNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTE2LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-16-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-2-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-41.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-41-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTEwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-10-768x433.webp\" data-width=\"768\" data-height=\"433\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-3-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"Elegantes Doppel- oder Dreibettzimmer\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS02LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0zLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-3-768x1327.webp\" data-width=\"768\" data-height=\"1327\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-14-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-15-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Bvb2wtNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-46.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-46-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTE1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-15-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTgzOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTE0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-14-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-51.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-51-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-54.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-54-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTE0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-14-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-25.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTI1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-25-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-48.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-48-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Familienzimmer chrispy beach resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTEzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-13-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-19.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTE5LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-19-768x513.webp\" data-width=\"768\" data-height=\"513\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-7-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-30.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-30-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtOC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-8-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-18-768x535.webp\" data-width=\"768\" data-height=\"535\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-19.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-19-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMTAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-10-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-40.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-40-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-39.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-39-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-1-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xOC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-18-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-14-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-56.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-56-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTE2LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-16-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-11-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-37.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-37-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTE3LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-17-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Einrichtungen chrispy beach resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-12-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Bvb2wtMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-43.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-43-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-21.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTIxLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-21-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-20.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg5MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-20-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-5-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-53.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-53-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Datenschutzrichtlinie Chrispy Beach Resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-4-768x1365.webp\" data-width=\"768\" data-height=\"1365\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-2-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-34.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-34-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-1-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-10-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-31.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-31-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-3-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTExLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-11-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-57.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTcud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-57-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-29.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-29-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-42.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-42-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTEwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-10-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Chrispy-Beach-hotel-with-pool-1.png\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0NocmlzcHktQmVhY2gtaG90ZWwtd2l0aC1wb29sLTEucG5nIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Chrispy-Beach-hotel-with-pool-1-768x432.png\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-22.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTIyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-22-768x511.webp\" data-width=\"768\" data-height=\"511\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-5-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-24.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg4NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMjQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-24-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Bvb2wtMy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-3-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-5-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-49.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-49-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-4-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-1-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"6\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Bvb2wtNi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-6-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-2-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMTQtMi53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2-768x280.webp\" data-width=\"768\" data-height=\"280\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-1-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTEyLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-12-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTE4LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-18-768x1365.webp\" data-width=\"768\" data-height=\"1365\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-15-768x1152.webp\" data-width=\"768\" data-height=\"1152\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkwMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtOS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-9-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-6-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-35.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-35-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS01LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-5-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-1-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Chrispy Beach Resort\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-36.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3NCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzYud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-36-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMTMud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-13-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-38.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-38-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk3MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTkud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-9-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk4MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-2-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"3\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNy53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-17-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTgzOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTE1LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-15-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtOS53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-9-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtNC53ZWJwIiwic2xpZGVzaG93IjoiYzU1NDBjMyJ9\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-4-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg0MiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTExLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-11-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-44.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2NiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNDQud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-44-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-50.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg2MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTAud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-50-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"Bedingungen &amp; Konditionen\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-55.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg1NSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtNTUud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-55-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"0\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTgzNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VsZWdhbnQtRG91YmxlLVRyaXBsZS1Sb29tLTE3LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Elegant-Double-Triple-Room-17-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"5\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk2OSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0V4dGVyaW9yLTEzLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Exterior-13-768x432.webp\" data-width=\"768\" data-height=\"432\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0NywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTE0LndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-14-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1MywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTgud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-8-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"2\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkxMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL1Jlc3RhdXJhbnQtMTEud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-11-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"1\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-32.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTg3OCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ZhbWlseS1BcGFydG1lbnQtMzIud2VicCIsInNsaWRlc2hvdyI6ImM1NTQwYzMifQ%3D%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Family-Apartment-32-768x576.webp\" data-width=\"768\" data-height=\"576\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" data-e-gallery-tags=\"4\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"c5540c3\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk1MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0ludGVyaW9yLTEwLndlYnAiLCJzbGlkZXNob3ciOiJjNTU0MGMzIn0%3D\">\n\t\t\t\t\t<div class=\"e-gallery-image elementor-gallery-item__image\" data-thumbnail=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-10-768x512.webp\" data-width=\"768\" data-height=\"512\" aria-label=\"\" role=\"img\" ><\/div>\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-gallery-item__overlay\"><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Galerie Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein fantastisches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Familienresort besuchen. Alle Elegantes Doppelzimmer Dreibettzimmer Schlafzimmer Familienzimmer Schlafzimmer Restaurant Eiland Cocktail &amp; Dine Interieur \u00c4u\u00dferes Pool<\/p>\n","protected":false},"author":2,"featured_media":1835,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-1834","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Galerie &#8226; Chrispy Beach Resort<\/title>\n<meta name=\"description\" content=\"Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein erstaunliches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Hotel besuchen. Klicken Sie hier und erfahren Sie mehr!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/chrispybeach.gr\/de\/galerie\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Galerie &#8226; Chrispy Beach Resort\" \/>\n<meta property=\"og:description\" content=\"Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein erstaunliches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Hotel besuchen. Klicken Sie hier und erfahren Sie mehr!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chrispybeach.gr\/de\/galerie\/\" \/>\n<meta property=\"og:site_name\" content=\"Chrispy Beach Resort\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/chrispybeach\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-08T09:53:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/galerie\/\",\"url\":\"https:\/\/chrispybeach.gr\/de\/galerie\/\",\"name\":\"Galerie &#8226; Chrispy Beach Resort\",\"isPartOf\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/galerie\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/galerie\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp\",\"datePublished\":\"2026-03-18T07:35:51+00:00\",\"dateModified\":\"2026-04-08T09:53:07+00:00\",\"description\":\"Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein erstaunliches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Hotel besuchen. Klicken Sie hier und erfahren Sie mehr!\",\"breadcrumb\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/galerie\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chrispybeach.gr\/de\/galerie\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/galerie\/#primaryimage\",\"url\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp\",\"contentUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp\",\"width\":1920,\"height\":1280,\"caption\":\"Galerie Chrispy Beach Resort\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/galerie\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chrispybeach.gr\/de\/startseite\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Galerie\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/#website\",\"url\":\"https:\/\/chrispybeach.gr\/de\/\",\"name\":\"Chrispy Beach Resort\",\"description\":\"Beachfront Hotel in Agia Marina, Chania\",\"publisher\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/chrispybeach.gr\/de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/#organization\",\"name\":\"Chrispy Beach Resort\",\"url\":\"https:\/\/chrispybeach.gr\/de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/chrispy-beach-logo-2.png\",\"contentUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/chrispy-beach-logo-2.png\",\"width\":1662,\"height\":1779,\"caption\":\"Chrispy Beach Resort\"},\"image\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/chrispybeach\",\"https:\/\/www.instagram.com\/chrispybeach\/\",\"https:\/\/www.tiktok.com\/@chrispybeach\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Galerie &#8226; Chrispy Beach Resort","description":"Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein erstaunliches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Hotel besuchen. Klicken Sie hier und erfahren Sie mehr!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/chrispybeach.gr\/de\/galerie\/","og_locale":"de_DE","og_type":"article","og_title":"Galerie &#8226; Chrispy Beach Resort","og_description":"Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein erstaunliches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Hotel besuchen. Klicken Sie hier und erfahren Sie mehr!","og_url":"https:\/\/chrispybeach.gr\/de\/galerie\/","og_site_name":"Chrispy Beach Resort","article_publisher":"https:\/\/www.facebook.com\/chrispybeach","article_modified_time":"2026-04-08T09:53:07+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chrispybeach.gr\/de\/galerie\/","url":"https:\/\/chrispybeach.gr\/de\/galerie\/","name":"Galerie &#8226; Chrispy Beach Resort","isPartOf":{"@id":"https:\/\/chrispybeach.gr\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/chrispybeach.gr\/de\/galerie\/#primaryimage"},"image":{"@id":"https:\/\/chrispybeach.gr\/de\/galerie\/#primaryimage"},"thumbnailUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp","datePublished":"2026-03-18T07:35:51+00:00","dateModified":"2026-04-08T09:53:07+00:00","description":"Sehen Sie sich unsere Bildergalerie an und machen Sie sich bereit f\u00fcr ein erstaunliches, ma\u00dfgeschneidertes Erlebnis, wenn Sie unser Hotel besuchen. Klicken Sie hier und erfahren Sie mehr!","breadcrumb":{"@id":"https:\/\/chrispybeach.gr\/de\/galerie\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chrispybeach.gr\/de\/galerie\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispybeach.gr\/de\/galerie\/#primaryimage","url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp","contentUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Pool-4.webp","width":1920,"height":1280,"caption":"Galerie Chrispy Beach Resort"},{"@type":"BreadcrumbList","@id":"https:\/\/chrispybeach.gr\/de\/galerie\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chrispybeach.gr\/de\/startseite\/"},{"@type":"ListItem","position":2,"name":"Galerie"}]},{"@type":"WebSite","@id":"https:\/\/chrispybeach.gr\/de\/#website","url":"https:\/\/chrispybeach.gr\/de\/","name":"Chrispy Beach Resort","description":"Beachfront Hotel in Agia Marina, Chania","publisher":{"@id":"https:\/\/chrispybeach.gr\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/chrispybeach.gr\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/chrispybeach.gr\/de\/#organization","name":"Chrispy Beach Resort","url":"https:\/\/chrispybeach.gr\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispybeach.gr\/de\/#\/schema\/logo\/image\/","url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/chrispy-beach-logo-2.png","contentUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/chrispy-beach-logo-2.png","width":1662,"height":1779,"caption":"Chrispy Beach Resort"},"image":{"@id":"https:\/\/chrispybeach.gr\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/chrispybeach","https:\/\/www.instagram.com\/chrispybeach\/","https:\/\/www.tiktok.com\/@chrispybeach"]}]}},"_links":{"self":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/pages\/1834","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/comments?post=1834"}],"version-history":[{"count":0,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/pages\/1834\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media\/1835"}],"wp:attachment":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media?parent=1834"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}