{"id":2021,"date":"2026-03-19T12:56:25","date_gmt":"2026-03-19T10:56:25","guid":{"rendered":"https:\/\/chrispybeach.gr\/kontaktieren-sie-uns\/"},"modified":"2026-04-08T12:54:48","modified_gmt":"2026-04-08T09:54:48","slug":"kontaktieren-sie-uns","status":"publish","type":"page","link":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/","title":{"rendered":"Kontaktieren Sie uns"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2021\" class=\"elementor elementor-2021 elementor-399\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-abb0fa4 e-con-full e-flex e-con e-parent\" data-id=\"abb0fa4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-496e2db elementor-widget elementor-widget-template\" data-id=\"496e2db\" 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-71fc4c5 e-flex e-con-boxed e-con e-parent\" data-id=\"71fc4c5\" 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-35e2fe6 e-con-full e-flex e-con e-child\" data-id=\"35e2fe6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-561e88e elementor-widget-tablet__width-inherit elementor-widget-mobile__width-inherit elementor-widget elementor-widget-heading\" data-id=\"561e88e\" 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\">Kontakt aufnehmen<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eeb3a24 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"eeb3a24\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/maps.app.goo.gl\/2Y99j3XnufKp4dGj7\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Agia Marina, Postfach 73014, Chania, Kreta, Griechenland<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"mailto:res.beach@chrispy.gr\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">res.beach@chrispy.gr<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:+302821060667\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">+30 28210 60667<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<a href=\"tel:+302821060668\">\n\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">+30 2821 060668<\/span>\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5840293 e-con-full e-flex e-con e-child\" data-id=\"5840293\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-23cc914 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"23cc914\" 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 data-start=\"1366\" data-end=\"1545\"><span class=\"BZ_Pyq_fadeIn\">Informieren Sie <\/span><span class=\"BZ_Pyq_fadeIn\">uns <\/span><span class=\"BZ_Pyq_fadeIn\">was <\/span><span class=\"BZ_Pyq_fadeIn\">Sie <\/span><span class=\"BZ_Pyq_fadeIn\">brauchen <\/span><span class=\"BZ_Pyq_fadeIn\">und <\/span><span class=\"BZ_Pyq_fadeIn\">wir werden Sie <\/span><span class=\"BZ_Pyq_fadeIn\">f\u00fchren <\/span><span class=\"BZ_Pyq_fadeIn\">Sie <\/span><span class=\"BZ_Pyq_fadeIn\">von <\/span><span class=\"BZ_Pyq_fadeIn\">dort.<\/span><br data-start=\"1214\" data-end=\"1217\"><span class=\"BZ_Pyq_fadeIn\">F\u00fcllen Sie  <\/span><span class=\"BZ_Pyq_fadeIn\">aus  <\/span><span class=\"BZ_Pyq_fadeIn\">die  <\/span><span class=\"BZ_Pyq_fadeIn\">Formular  <\/span><span class=\"BZ_Pyq_fadeIn\">unter  <\/span><span class=\"BZ_Pyq_fadeIn\">oder  <\/span><span class=\"BZ_Pyq_fadeIn\">verwenden Sie  <\/span><span class=\"BZ_Pyq_fadeIn\">die  <\/span><span class=\"BZ_Pyq_fadeIn\">Kontakt  <\/span><span class=\"BZ_Pyq_fadeIn\">Details  <\/span><span class=\"BZ_Pyq_fadeIn\">zu  <\/span><span class=\"BZ_Pyq_fadeIn\">erreichen  <\/span><span class=\"BZ_Pyq_fadeIn\">us  <\/span><span class=\"BZ_Pyq_fadeIn\">direkt &#8211;  <\/span><span class=\"BZ_Pyq_fadeIn\">wir werden  <\/span><span class=\"BZ_Pyq_fadeIn\">antworten Sie  <\/span><span class=\"BZ_Pyq_fadeIn\">als  <\/span><span class=\"BZ_Pyq_fadeIn\">bald  <\/span><span class=\"BZ_Pyq_fadeIn\">als  <\/span><span class=\"BZ_Pyq_fadeIn\">m\u00f6glich.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b627bd9 elementor-button-align-start elementor-tablet-button-align-start elementor-mobile-button-align-stretch placeholder-form elementor-widget elementor-widget-form\" data-id=\"b627bd9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;N\\u00e4chste&quot;,&quot;step_previous_label&quot;:&quot;Vorherige&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t\t\t\t<form class=\"elementor-form\" method=\"post\" name=\"Formular f\u00fcr die Kontaktseite\" aria-label=\"Formular f\u00fcr die Kontaktseite\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"2021\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"b627bd9\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"Chrispy Beach Resort\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"Name\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-email elementor-field-group elementor-column elementor-field-group-email elementor-col-100 elementor-field-required\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"email\" name=\"form_fields[email]\" id=\"form-field-email\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"E-Mail\" required=\"required\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-textarea elementor-field-group elementor-column elementor-field-group-message elementor-col-100\">\n\t\t\t\t\t<textarea class=\"elementor-field-textual elementor-field  elementor-size-sm\" name=\"form_fields[message]\" id=\"form-field-message\" rows=\"4\" placeholder=\"Nachricht\"><\/textarea>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-cf_turnstile elementor-field-group elementor-column elementor-field-group-field_75da01e elementor-col-100\">\n\t\t\t\t\t<div class=\"elementor-field\" id=\"form-field-field_75da01e\"><div class=\"elementor-cf-turnstile\" data-sitekey=\"0x4AAAAAAA8xtTpyEdYG1D0L\" data-type=\"managed\" data-theme=\"light\" data-size=\"flexible\" style=\"min-height:65px\"><\/div><style>.elementor-cf-turnstile > div {display:flex;}<\/style><\/div>\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button class=\"elementor-button elementor-size-sm elementor-animation-grow\" type=\"submit\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Senden Sie<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\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>Kontakt aufnehmen Informieren Sie uns was Sie brauchen und wir werden Sie f\u00fchren Sie von dort.F\u00fcllen Sie aus die Formular unter oder verwenden Sie die Kontakt Details zu erreichen us direkt &#8211; wir werden antworten Sie als bald als m\u00f6glich.<\/p>\n","protected":false},"author":4,"featured_media":1959,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2021","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>Kontaktieren Sie uns &#8226; Chrispy Beach Resort<\/title>\n<meta name=\"description\" content=\"Kontaktieren Sie das Chrispy Beach Resort in Chania, Kreta. Unser Team ist Ihnen gerne behilflich bei Reservierungen, Anfragen oder allen Informationen, die Sie ben\u00f6tigen.\" \/>\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\/kontaktieren-sie-uns\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kontaktieren Sie uns &#8226; Chrispy Beach Resort\" \/>\n<meta property=\"og:description\" content=\"Kontaktieren Sie das Chrispy Beach Resort in Chania, Kreta. Unser Team ist Ihnen gerne behilflich bei Reservierungen, Anfragen oder allen Informationen, die Sie ben\u00f6tigen.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/\" \/>\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:54:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\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\/kontaktieren-sie-uns\/\",\"url\":\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/\",\"name\":\"Kontaktieren Sie uns &#8226; Chrispy Beach Resort\",\"isPartOf\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp\",\"datePublished\":\"2026-03-19T10:56:25+00:00\",\"dateModified\":\"2026-04-08T09:54:48+00:00\",\"description\":\"Kontaktieren Sie das Chrispy Beach Resort in Chania, Kreta. Unser Team ist Ihnen gerne behilflich bei Reservierungen, Anfragen oder allen Informationen, die Sie ben\u00f6tigen.\",\"breadcrumb\":{\"@id\":\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#primaryimage\",\"url\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp\",\"contentUrl\":\"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/chrispybeach.gr\/de\/startseite\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kontaktieren Sie uns\"}]},{\"@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":"Kontaktieren Sie uns &#8226; Chrispy Beach Resort","description":"Kontaktieren Sie das Chrispy Beach Resort in Chania, Kreta. Unser Team ist Ihnen gerne behilflich bei Reservierungen, Anfragen oder allen Informationen, die Sie ben\u00f6tigen.","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\/kontaktieren-sie-uns\/","og_locale":"de_DE","og_type":"article","og_title":"Kontaktieren Sie uns &#8226; Chrispy Beach Resort","og_description":"Kontaktieren Sie das Chrispy Beach Resort in Chania, Kreta. Unser Team ist Ihnen gerne behilflich bei Reservierungen, Anfragen oder allen Informationen, die Sie ben\u00f6tigen.","og_url":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/","og_site_name":"Chrispy Beach Resort","article_publisher":"https:\/\/www.facebook.com\/chrispybeach","article_modified_time":"2026-04-08T09:54:48+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp","type":"image\/webp"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/","url":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/","name":"Kontaktieren Sie uns &#8226; Chrispy Beach Resort","isPartOf":{"@id":"https:\/\/chrispybeach.gr\/de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#primaryimage"},"image":{"@id":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#primaryimage"},"thumbnailUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp","datePublished":"2026-03-19T10:56:25+00:00","dateModified":"2026-04-08T09:54:48+00:00","description":"Kontaktieren Sie das Chrispy Beach Resort in Chania, Kreta. Unser Team ist Ihnen gerne behilflich bei Reservierungen, Anfragen oder allen Informationen, die Sie ben\u00f6tigen.","breadcrumb":{"@id":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#primaryimage","url":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp","contentUrl":"https:\/\/chrispybeach.gr\/wp-content\/uploads\/2026\/03\/Interior-2.webp","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/chrispybeach.gr\/de\/kontaktieren-sie-uns\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/chrispybeach.gr\/de\/startseite\/"},{"@type":"ListItem","position":2,"name":"Kontaktieren Sie uns"}]},{"@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\/2021","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=2021"}],"version-history":[{"count":0,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/pages\/2021\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media\/1959"}],"wp:attachment":[{"href":"https:\/\/chrispybeach.gr\/de\/wp-json\/wp\/v2\/media?parent=2021"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}