{"id":2224,"date":"2026-03-18T09:35:22","date_gmt":"2026-03-18T07:35:22","guid":{"rendered":"https:\/\/chrispybeach.gr\/restaurant\/"},"modified":"2026-04-08T12:58:05","modified_gmt":"2026-04-08T09:58:05","slug":"restaurant","status":"publish","type":"page","link":"https:\/\/chrispybeach.gr\/de\/restaurant\/","title":{"rendered":"Restaurant"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2224\" class=\"elementor elementor-2224 elementor-217\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-823c5f1 e-con-full e-flex e-con e-parent\" data-id=\"823c5f1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c7bd17 elementor-widget elementor-widget-template\" data-id=\"4c7bd17\" 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-1e58632 e-flex e-con-boxed e-con e-child\" data-id=\"1e58632\" 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-f34e3ed elementor-widget elementor-widget-heading\" data-id=\"f34e3ed\" 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-590956e elementor-widget elementor-widget-heading\" data-id=\"590956e\" 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\">Dining<\/h1>\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-2565a3f e-flex e-con-boxed e-con e-child\" data-id=\"2565a3f\" 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-9f47cbe elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"9f47cbe\" 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>Im Chrispy Beach Resort zelebrieren wir beim Essen den mediterranen Lebensstil. Von den reichhaltigen, traditionellen Buffets in unserem Hauptrestaurant bis hin zum schicken, entspannten Ambiente des Eiland Cocktail &amp; Dine kombinieren wir frische lokale Zutaten mit einem atemberaubenden Blick auf Agia Marina. Ob Sie nun ein sonnenverw\u00f6hntes Fr\u00fchst\u00fcck oder einen Cocktail bei Sonnenuntergang genie\u00dfen m\u00f6chten, entdecken Sie ein kulinarisches Erlebnis, das zu jeder Stimmung passt.  <\/p>\t\t\t\t\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-77e242d e-flex e-con-boxed e-con e-child\" data-id=\"77e242d\" 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-85228a6 elementor-widget elementor-widget-heading\" data-id=\"85228a6\" 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\">Unsere Restaurants &amp; Bars<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0bad339 e-grid e-con-full e-con e-child\" data-id=\"0bad339\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a9ac1e8 e-con-full e-flex e-con e-child\" data-id=\"a9ac1e8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-88dd4b8 e-con-full e-flex e-con e-child\" data-id=\"88dd4b8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9d6473 elementor-widget elementor-widget-image\" data-id=\"e9d6473\" 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=\"800\" height=\"450\" src=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5-1024x576.webp\" class=\"attachment-large size-large wp-image-1918\" alt=\"\" srcset=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5-1024x576.webp 1024w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5-300x169.webp 300w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5-768x432.webp 768w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5-1536x864.webp 1536w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-5.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f27644 elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"2f27644\" 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\">Hauptrestaurant<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7063d8 elementor-widget elementor-widget-heading\" data-id=\"a7063d8\" 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\">Hauptrestaurant<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ca44023 elementor-widget elementor-widget-text-editor\" data-id=\"ca44023\" 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><strong>Fr\u00fchst\u00fccksbuffet:<\/strong> 08:00 &#8211; 10:00 (kostenlos)<\/p><p><strong>Mittagsbuffet:<\/strong> 13:00 &#8211; 14:30<\/p><p><strong>Abendessen Buffet:<\/strong> 19:00 &#8211; 21:00<\/p><p><strong>Das Erlebnis:<\/strong> Essen unter freiem Himmel auf unserer Veranda am Meer.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1870038 elementor-widget elementor-widget-text-editor\" data-id=\"1870038\" 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>Alle Mahlzeiten werden in Buffetform serviert. Die Kleiderordnung in unserem Restaurant ist leger. <\/p>\t\t\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-394c863 e-con-full e-flex e-con e-child\" data-id=\"394c863\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-cc41205 e-con-full e-flex e-con e-child\" data-id=\"cc41205\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83bf95d elementor-widget elementor-widget-image\" data-id=\"83bf95d\" 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 decoding=\"async\" width=\"800\" height=\"534\" src=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16-1024x683.webp\" class=\"attachment-large size-large wp-image-1926\" alt=\"\" srcset=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16-1024x683.webp 1024w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16-300x200.webp 300w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16-768x512.webp 768w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16-1536x1024.webp 1536w, https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Eiland-Cocktail-and-Dine-16.webp 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9831bcc elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"9831bcc\" 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\">Ganzt\u00e4gige Snackbar<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-20e9986 elementor-widget elementor-widget-heading\" data-id=\"20e9986\" 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\">Eiland Cocktail &amp; Dine<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ad5dc9b elementor-widget elementor-widget-text-editor\" data-id=\"ad5dc9b\" 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><strong>Stimmung:<\/strong> Sanfte Hintergrundmusik, Lounge-Sitze und Panoramablick auf den Ozean.<\/p><p><strong>Das Angebot:<\/strong> Cocktails, gek\u00fchlte Biere, handwerklich hergestellter Kaffee und leichte mediterrane Snacks.<\/p><p><strong>Service:<\/strong> Sowohl am Pool als auch am Strand verf\u00fcgbar.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d06ce61 elementor-widget elementor-widget-button\" data-id=\"d06ce61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"https:\/\/chrispybeach.gr\/de\/eiland-cocktail-dine\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M4 12h12.25L11 6.75l.66-.75l6.5 6.5l-6.5 6.5l-.66-.75L16.25 13H4z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Mehr sehen<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\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<\/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 Dining Im Chrispy Beach Resort zelebrieren wir beim Essen den mediterranen Lebensstil. Von den reichhaltigen, traditionellen Buffets in unserem Hauptrestaurant bis hin zum schicken, entspannten Ambiente des Eiland Cocktail &amp; Dine kombinieren wir frische lokale Zutaten mit einem atemberaubenden Blick auf Agia Marina. Ob Sie nun ein sonnenverw\u00f6hntes Fr\u00fchst\u00fcck oder einen [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1921,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2224","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>Restaurant &#8226; Chrispy Beach Resort<\/title>\n<meta name=\"description\" content=\"G\u00f6nnen Sie sich eine kulinarische Reise in unserem Hotelrestaurant mit einer Reihe von Speiseoptionen f\u00fcr jeden Gaumen.\" \/>\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\/restaurant\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Restaurant &#8226; Chrispy Beach Resort\" \/>\n<meta property=\"og:description\" content=\"G\u00f6nnen Sie sich eine kulinarische Reise in unserem Hotelrestaurant mit einer Reihe von Speiseoptionen f\u00fcr jeden Gaumen.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chrispybeach.gr\/de\/restaurant\/\" \/>\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:58:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\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\/restaurant\/\",\"url\":\"https:\/\/chrispybeach.gr\/de\/restaurant\/\",\"name\":\"Restaurant &#8226; Chrispy Beach Resort\",\"isPartOf\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/restaurant\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/restaurant\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp\",\"datePublished\":\"2026-03-18T07:35:22+00:00\",\"dateModified\":\"2026-04-08T09:58:05+00:00\",\"description\":\"G\u00f6nnen Sie sich eine kulinarische Reise in unserem Hotelrestaurant mit einer Reihe von Speiseoptionen f\u00fcr jeden Gaumen.\",\"breadcrumb\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/restaurant\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chrispybeach.gr\/de\/restaurant\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/restaurant\/#primaryimage\",\"url\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp\",\"contentUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp\",\"width\":1920,\"height\":700},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/restaurant\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chrispybeach.gr\/de\/startseite\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Restaurant\"}]},{\"@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":"Restaurant &#8226; Chrispy Beach Resort","description":"G\u00f6nnen Sie sich eine kulinarische Reise in unserem Hotelrestaurant mit einer Reihe von Speiseoptionen f\u00fcr jeden Gaumen.","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\/restaurant\/","og_locale":"de_DE","og_type":"article","og_title":"Restaurant &#8226; Chrispy Beach Resort","og_description":"G\u00f6nnen Sie sich eine kulinarische Reise in unserem Hotelrestaurant mit einer Reihe von Speiseoptionen f\u00fcr jeden Gaumen.","og_url":"https:\/\/chrispybeach.gr\/de\/restaurant\/","og_site_name":"Chrispy Beach Resort","article_publisher":"https:\/\/www.facebook.com\/chrispybeach","article_modified_time":"2026-04-08T09:58:05+00:00","og_image":[{"width":1920,"height":700,"url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.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\/restaurant\/","url":"https:\/\/chrispybeach.gr\/de\/restaurant\/","name":"Restaurant &#8226; Chrispy Beach Resort","isPartOf":{"@id":"https:\/\/chrispybeach.gr\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/chrispybeach.gr\/de\/restaurant\/#primaryimage"},"image":{"@id":"https:\/\/chrispybeach.gr\/de\/restaurant\/#primaryimage"},"thumbnailUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp","datePublished":"2026-03-18T07:35:22+00:00","dateModified":"2026-04-08T09:58:05+00:00","description":"G\u00f6nnen Sie sich eine kulinarische Reise in unserem Hotelrestaurant mit einer Reihe von Speiseoptionen f\u00fcr jeden Gaumen.","breadcrumb":{"@id":"https:\/\/chrispybeach.gr\/de\/restaurant\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chrispybeach.gr\/de\/restaurant\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispybeach.gr\/de\/restaurant\/#primaryimage","url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp","contentUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Restaurant-14-2.webp","width":1920,"height":700},{"@type":"BreadcrumbList","@id":"https:\/\/chrispybeach.gr\/de\/restaurant\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chrispybeach.gr\/de\/startseite\/"},{"@type":"ListItem","position":2,"name":"Restaurant"}]},{"@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\/2224","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=2224"}],"version-history":[{"count":0,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/pages\/2224\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media\/1921"}],"wp:attachment":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media?parent=2224"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}