{"id":2339,"date":"2026-03-23T16:05:23","date_gmt":"2026-03-23T14:05:23","guid":{"rendered":"https:\/\/chrispybeach.gr\/eiland-cocktail-dine\/"},"modified":"2026-04-08T12:59:17","modified_gmt":"2026-04-08T09:59:17","slug":"eiland-cocktail-dine","status":"publish","type":"page","link":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/","title":{"rendered":"Eiland Cocktail &amp; Dine"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2339\" class=\"elementor elementor-2339 elementor-1325\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c4f692 e-con-full e-flex e-con e-parent\" data-id=\"7c4f692\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bb8913b elementor-widget elementor-widget-template\" data-id=\"bb8913b\" 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-51e9a78 e-flex e-con-boxed e-con e-child\" data-id=\"51e9a78\" 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<div class=\"elementor-element elementor-element-ceaa9ca e-con-full e-flex e-con e-child\" data-id=\"ceaa9ca\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b3faa57 elementor-widget elementor-widget-heading\" data-id=\"b3faa57\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">TRADITION DER MEDITERRANEN ERN\u00c4HRUNG<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8cb73c7 elementor-widget elementor-widget-heading\" data-id=\"8cb73c7\" 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\">Eiland Cocktail &amp; Dine<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-24a2235 elementor-widget elementor-widget-image\" data-id=\"24a2235\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"300\" src=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland_logo-300x300-1.png\" class=\"attachment-large size-large wp-image-2340\" alt=\"\" srcset=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland_logo-300x300-1.png 300w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland_logo-300x300-1-150x150.png 150w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8223705 e-con-full e-flex e-con e-child\" data-id=\"8223705\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f44560c elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f44560c\" 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>Genie\u00dfen Sie Momente purer Entspannung im Eiland, unserer eleganten Poolbar, wo Komfort, tadelloser Service und atemberaubende Ausblicke in perfekter Harmonie miteinander verschmelzen. Es ist der ideale Ort im Chrispy Beach Resort f\u00fcr ein erfrischendes Bad, einen k\u00fchlen Cocktail und unbeschwerte Sommermomente in der wundersch\u00f6nen Gegend von Agia Marina.<br>Vom Sonnenaufgang bis zum Sonnenuntergang hei\u00dft das Eiland Paare, Familien und Gruppen von Freunden willkommen, um sich zu entspannen und den Tag in ihrem eigenen Tempo zu genie\u00dfen. <\/p><p>Genie\u00dfen Sie die sanfte Hintergrundmusik, die bequemen Lounge-Sitzgelegenheiten und die warme, einladende Atmosph\u00e4re, die dazu einl\u00e4dt, noch ein wenig l\u00e4nger zu bleiben. Erfrischen Sie sich mit charakteristischen Cocktails, kalten Bieren, Kaffee, Eis und leichten Snacks &#8211; alles mit Sorgfalt zubereitet, um perfekt zur entspannten mediterranen Atmosph\u00e4re zu passen. <\/p><p>Werfen Sie einen Blick auf unsere<strong> Online-Men\u00fcs<\/strong> und entdecken Sie eine k\u00f6stliche Vielfalt an Geschmacksrichtungen, die Sie den ganzen Tag \u00fcber genie\u00dfen k\u00f6nnen.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-11c9549 e-grid e-con-full e-con e-child\" data-id=\"11c9549\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c3675af elementor-widget elementor-widget-shortcode\" data-id=\"c3675af\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"_df_thumb \" id=\"df_1353\"  _slug=\"breakfast-menu\" data-title=\"breakfast-menu\" wpoptions=\"true\" thumb=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/BREAKFAST-MENU_Page_1.jpg\" thumbtype=\"\" >BREAKFAST MENU<\/div><script class=\"df-shortcode-script\" nowprocket type=\"application\/javascript\">window.option_df_1353 = {\"outline\":[],\"autoEnableOutline\":\"false\",\"autoEnableThumbnail\":\"false\",\"overwritePDFOutline\":\"false\",\"enableDownload\":\"false\",\"direction\":\"1\",\"pageSize\":\"0\",\"controlsPosition\":\"bottom\",\"soundEnable\":\"false\",\"source\":\"https:\\\/\\\/chrispybeach.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/BREAKFAST-MENU.pdf\",\"wpOptions\":\"true\"}; if(window.DFLIP && window.DFLIP.parseBooks){window.DFLIP.parseBooks();}<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f435ad2 elementor-widget elementor-widget-shortcode\" data-id=\"f435ad2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"_df_thumb \" id=\"df_1360\"  _slug=\"1360\" data-title=\"coffee-and-drinks-menu\" wpoptions=\"true\" thumb=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/COFFE-AND-DRINKS-MENU_Page_01.jpg\" thumbtype=\"\" >COFFEE AND DRINKS MENU<\/div><script class=\"df-shortcode-script\" nowprocket type=\"application\/javascript\">window.option_df_1360 = {\"outline\":[],\"autoEnableOutline\":\"false\",\"autoEnableThumbnail\":\"false\",\"overwritePDFOutline\":\"false\",\"enableDownload\":\"false\",\"direction\":\"1\",\"pageSize\":\"0\",\"controlsPosition\":\"bottom\",\"soundEnable\":\"false\",\"source\":\"https:\\\/\\\/chrispybeach.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/COFFE-AND-DRINKS-MENU.pdf\",\"wpOptions\":\"true\"}; if(window.DFLIP && window.DFLIP.parseBooks){window.DFLIP.parseBooks();}<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fbd1eb6 elementor-widget elementor-widget-shortcode\" data-id=\"fbd1eb6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><div class=\"_df_thumb \" id=\"df_1376\"  _slug=\"restaurant-a-la-carte-menu\" data-title=\"restaurant-a-la-carte-menu\" wpoptions=\"true\" thumb=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/alcrt.png\" thumbtype=\"\" >RESTAURANT A LA CARTE MENU<\/div><script class=\"df-shortcode-script\" nowprocket type=\"application\/javascript\">window.option_df_1376 = {\"outline\":[],\"autoEnableOutline\":\"false\",\"autoEnableThumbnail\":\"false\",\"overwritePDFOutline\":\"false\",\"enableDownload\":\"false\",\"direction\":\"1\",\"pageSize\":\"0\",\"controlsPosition\":\"bottom\",\"soundEnable\":\"false\",\"source\":\"https:\\\/\\\/chrispybeach.gr\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/RESTAURANT-A-LA-CARTE-MENU.pdf\",\"wpOptions\":\"true\"}; if(window.DFLIP && window.DFLIP.parseBooks){window.DFLIP.parseBooks();}<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c4871b7 e-flex e-con-boxed e-con e-child\" data-id=\"c4871b7\" 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-7ebecc6 elementor-widget elementor-widget-heading\" data-id=\"7ebecc6\" 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-f151159 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f151159\" 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 erstaunliches, ma\u00dfgeschneidertes Erlebnis.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bf967d9 elementor-widget elementor-widget-gallery\" data-id=\"bf967d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;columns_mobile&quot;:2,&quot;lazyload&quot;:&quot;yes&quot;,&quot;gallery_layout&quot;:&quot;grid&quot;,&quot;columns&quot;:4,&quot;columns_tablet&quot;:2,&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;aspect_ratio&quot;:&quot;3:2&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<div class=\"elementor-gallery__container\">\n\t\t\t\t\t\t\t<a class=\"e-gallery-item elementor-gallery-item elementor-animated-content\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-18.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xOC53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-17.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNy53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNi53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-15.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNS53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-14.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xNC53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-13.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkyOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMy53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-12.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMi53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-11.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMS53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-10.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xMC53ZWJwIiwic2xpZGVzaG93IjoiYmY5NjdkOSJ9\">\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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-9.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzMywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS05LndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS04LndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-7.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS03LndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-6.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNiwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS02LndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-5.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzNywidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS01LndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-4.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzOCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS00LndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-1024x683.webp\" data-width=\"800\" data-height=\"534\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-3.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTkzOSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0zLndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-593x1024.webp\" data-width=\"593\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-2.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0MCwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0yLndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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\" href=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-1.webp\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"bf967d9\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTk0MSwidXJsIjoiaHR0cHM6XC9cL2NocmlzcHliZWFjaC5nclwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDNcL0VpbGFuZC1Db2NrdGFpbC1hbmQtRGluZS0xLndlYnAiLCJzbGlkZXNob3ciOiJiZjk2N2Q5In0%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-683x1024.webp\" data-width=\"683\" data-height=\"1024\" 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>TRADITION DER MEDITERRANEN ERN\u00c4HRUNG Genie\u00dfen Sie Momente purer Entspannung im Eiland, unserer eleganten Poolbar, wo Komfort, tadelloser Service und atemberaubende Ausblicke in perfekter Harmonie miteinander verschmelzen. Es ist der ideale Ort im Chrispy Beach Resort f\u00fcr ein erfrischendes Bad, einen k\u00fchlen Cocktail und unbeschwerte Sommermomente in der wundersch\u00f6nen Gegend von Agia Marina.Vom Sonnenaufgang bis zum [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":1934,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2339","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>Eiland Cocktail &amp; Dine &#8226; Chrispy Beach Resort<\/title>\n<meta name=\"description\" content=\"Entspannen Sie sich in der Poolbar von Eiland Cocktail &amp; Dine in Chania. Genie\u00dfen Sie tolle Stimmung, erstklassigen Service und Cocktails, die von unserem freundlichen Personal serviert werden.\" \/>\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\/eiland-cocktail-dine\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Eiland Cocktail &amp; Dine &#8226; Chrispy Beach Resort\" \/>\n<meta property=\"og:description\" content=\"Entspannen Sie sich in der Poolbar von Eiland Cocktail &amp; Dine in Chania. Genie\u00dfen Sie tolle Stimmung, erstklassigen Service und Cocktails, die von unserem freundlichen Personal serviert werden.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/\" \/>\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:59:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.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<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/\",\"url\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/\",\"name\":\"Eiland Cocktail &amp; Dine &#8226; Chrispy Beach Resort\",\"isPartOf\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp\",\"datePublished\":\"2026-03-23T14:05:23+00:00\",\"dateModified\":\"2026-04-08T09:59:17+00:00\",\"description\":\"Entspannen Sie sich in der Poolbar von Eiland Cocktail & Dine in Chania. Genie\u00dfen Sie tolle Stimmung, erstklassigen Service und Cocktails, die von unserem freundlichen Personal serviert werden.\",\"breadcrumb\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#primaryimage\",\"url\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp\",\"contentUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp\",\"width\":1920,\"height\":1280,\"caption\":\"Eiland Cocktail und Dine\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chrispybeach.gr\/de\/startseite\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Eiland Cocktail &amp; Dine\"}]},{\"@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":"Eiland Cocktail &amp; Dine &#8226; Chrispy Beach Resort","description":"Entspannen Sie sich in der Poolbar von Eiland Cocktail & Dine in Chania. Genie\u00dfen Sie tolle Stimmung, erstklassigen Service und Cocktails, die von unserem freundlichen Personal serviert werden.","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\/eiland-cocktail-dine\/","og_locale":"de_DE","og_type":"article","og_title":"Eiland Cocktail &amp; Dine &#8226; Chrispy Beach Resort","og_description":"Entspannen Sie sich in der Poolbar von Eiland Cocktail & Dine in Chania. Genie\u00dfen Sie tolle Stimmung, erstklassigen Service und Cocktails, die von unserem freundlichen Personal serviert werden.","og_url":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/","og_site_name":"Chrispy Beach Resort","article_publisher":"https:\/\/www.facebook.com\/chrispybeach","article_modified_time":"2026-04-08T09:59:17+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/","url":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/","name":"Eiland Cocktail &amp; Dine &#8226; Chrispy Beach Resort","isPartOf":{"@id":"https:\/\/chrispybeach.gr\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#primaryimage"},"image":{"@id":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#primaryimage"},"thumbnailUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp","datePublished":"2026-03-23T14:05:23+00:00","dateModified":"2026-04-08T09:59:17+00:00","description":"Entspannen Sie sich in der Poolbar von Eiland Cocktail & Dine in Chania. Genie\u00dfen Sie tolle Stimmung, erstklassigen Service und Cocktails, die von unserem freundlichen Personal serviert werden.","breadcrumb":{"@id":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#primaryimage","url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp","contentUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-8.webp","width":1920,"height":1280,"caption":"Eiland Cocktail und Dine"},{"@type":"BreadcrumbList","@id":"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chrispybeach.gr\/de\/startseite\/"},{"@type":"ListItem","position":2,"name":"Eiland Cocktail &amp; Dine"}]},{"@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\/2339","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\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/comments?post=2339"}],"version-history":[{"count":0,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/pages\/2339\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media\/1934"}],"wp:attachment":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media?parent=2339"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}