{"id":399,"date":"2025-05-19T11:52:19","date_gmt":"2025-05-19T11:52:19","guid":{"rendered":"http:\/\/hotelkali.hr\/?page_id=399"},"modified":"2026-04-18T15:00:53","modified_gmt":"2026-04-18T13:00:53","slug":"rooms","status":"publish","type":"page","link":"https:\/\/hotelkali.hr\/de\/rooms\/","title":{"rendered":"All Rooms"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"399\" class=\"elementor elementor-399\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-900c0e9 e-flex e-con-boxed e-con e-parent\" data-id=\"900c0e9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5ad8586 e-flex e-con-boxed e-con e-child\" data-id=\"5ad8586\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f13bba7 elementor-widget elementor-widget-heading\" data-id=\"f13bba7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">ROOMS<\/h1>\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-d006c6c e-flex e-con-boxed e-con e-child\" data-id=\"d006c6c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c7f40bf elementor-widget elementor-widget-heading\" data-id=\"c7f40bf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Make Your Reservation<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e824c8 elementor-widget elementor-widget-html\" data-id=\"6e824c8\" data-element_type=\"widget\" data-e-type=\"widget\" id=\"booking-form-en\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<form id=\"bookRoom\" method=\"GET\" action=\"https:\/\/hotelkali.book.rentl.io\" target=\"_blank\"> \n  <div class=\"input-wrapper\">\n      <div class=\"date-wrapper\">\n  <input id=\"from\" name=\"from\" type=\"date\" min=\"2025-07-16\" required placeholder=\" \"\/>\n  <label for=\"from\">check in<\/label>\n  <\/div>\n  <\/div>\n\n  <div class=\"input-wrapper\">\n      <div class=\"date-wrapper\">\n  <input id=\"to\" name=\"to\" type=\"date\" min=\"2025-07-17\" required placeholder=\" \"\/>\n  <label for=\"to\">check out<\/label>\n  <\/div>\n  <\/div><br>\n\n<div class=\"input-wrapper\">\n  <input id=\"adults\" name=\"adults\" type=\"number\" min=\"1\" required placeholder=\" \"\/>\n  <label for=\"adults\">adults<\/label>\n  <\/div>\n\n<div class=\"input-wrapper\">\n  <input id=\"children\" name=\"children\" type=\"number\" min=\"0\" placeholder=\" \"\/>\n  <label for=\"children\">children<\/label>\n  <\/div>\n\n<div class=\"input-wrapper\">\n  <input id=\"rooms\" name=\"rooms\" type=\"number\" min=\"1\" required placeholder=\" \"\/>\n  <label for=\"rooms\">rooms<\/label>\n  <\/div>\n\n  <button class=\"kali-link\" type=\"submit\">Book Now<\/button>\n<\/form>\n\n<script>\n(function() {\n  const form = document.getElementById(\"bookRoom\");\n  const fromInput = form.querySelector('input[name=\"from\"]');\n  const toInput = form.querySelector('input[name=\"to\"]');\n\n  \/\/ Format DD-MM-YYYY \u2192 YYYY-MM-DD (for input value)\n  function toISODate(ddmmyyyy) {\n    if (!ddmmyyyy) return \"\";\n    const [day, month, year] = ddmmyyyy.split(\"-\");\n    if (!day || !month || !year) return \"\";\n    return `${year}-${month.padStart(2,'0')}-${day.padStart(2,'0')}`;\n  }\n\n  \/\/ Format YYYY-MM-DD \u2192 DD-MM-YYYY (for sending)\n  function toFormattedDate(yyyymmdd) {\n    if (!yyyymmdd) return \"\";\n    const [year, month, day] = yyyymmdd.split(\"-\");\n    if (!year || !month || !day) return \"\";\n    return `${day.padStart(2,'0')}-${month.padStart(2,'0')}-${year}`;\n  }\n\n  \/\/ Create hidden inputs with formatted date values, remove visible date input name temporarily\n  function createHiddenDateInputs() {\n    \/\/ Remove old temp hidden inputs\n    form.querySelectorAll('input[data-temp=\"true\"]').forEach(el => el.remove());\n\n    [fromInput, toInput].forEach(input => {\n      if (!input.value) return;\n\n      const formatted = toFormattedDate(input.value);\n      if (!formatted) return;\n\n      \/\/ Remove name from visible date input so it won't submit its raw value\n      input.removeAttribute(\"name\");\n\n      const hidden = document.createElement(\"input\");\n      hidden.type = \"hidden\";\n      hidden.name = input.getAttribute(\"data-original-name\"); \/\/ restore original name\n      hidden.value = formatted;\n      hidden.setAttribute(\"data-temp\", \"true\");\n      form.appendChild(hidden);\n    });\n  }\n\n  \/\/ Restore the original name attributes on date inputs (so user can edit again)\n  function restoreDateInputNames() {\n    [fromInput, toInput].forEach(input => {\n      const originalName = input.getAttribute(\"data-original-name\");\n      if (originalName && !input.name) {\n        input.name = originalName;\n      }\n    });\n  }\n\n  \/\/ Populate form fields from URL query parameters\n  function populateFormFromURL() {\n    const params = new URLSearchParams(window.location.search);\n\n    const fromParam = params.get(\"from\");\n    const toParam = params.get(\"to\");\n    const adultsParam = params.get(\"adults\");\n    const childrenParam = params.get(\"children\");\n    const roomsParam = params.get(\"rooms\");\n\n    if (fromParam) fromInput.value = toISODate(fromParam);\n    if (toParam) toInput.value = toISODate(toParam);\n    if (adultsParam) form.querySelector('input[name=\"adults\"]').value = adultsParam;\n    if (childrenParam) form.querySelector('input[name=\"children\"]').value = childrenParam;\n    if (roomsParam) form.querySelector('input[name=\"rooms\"]').value = roomsParam;\n  }\n\n  \/\/ Update min of \"to\" input to from date + 1 day\n  function updateToMinDate() {\n    if (!fromInput.value) return;\n    const fromDate = new Date(fromInput.value);\n    if (isNaN(fromDate)) return;\n\n    const nextDay = new Date(fromDate);\n    nextDay.setDate(fromDate.getDate() + 1);\n\n    const yyyy = nextDay.getFullYear();\n    const mm = String(nextDay.getMonth() + 1).padStart(2, '0');\n    const dd = String(nextDay.getDate()).padStart(2, '0');\n    toInput.min = `${yyyy}-${mm}-${dd}`;\n\n    \/\/ Clear \"to\" if it's before new min\n    if (toInput.value && toInput.value < toInput.min) {\n      toInput.value = \"\";\n    }\n  }\n\n  \/\/ Initialization\n  function init() {\n    \/\/ Save original names in data attribute for restoring later\n    fromInput.setAttribute(\"data-original-name\", fromInput.name);\n    toInput.setAttribute(\"data-original-name\", toInput.name);\n\n    \/\/ Populate form on page load from URL\n    populateFormFromURL();\n\n    \/\/ Update min for \"to\" on page load if \"from\" has value\n    updateToMinDate();\n\n    \/\/ Listen for \"from\" changes to update \"to\" min dynamically\n    fromInput.addEventListener(\"change\", () => {\n      updateToMinDate();\n    });\n\n    \/\/ On submit, create hidden inputs with formatted dates\n    form.addEventListener(\"submit\", (e) => {\n  createHiddenDateInputs();\n\n  \/\/ Handle \"children\" field as string (send empty if 0 or blank)\n  const childrenInput = form.querySelector('input[name=\"children\"]');\n  if (childrenInput) {\n    const childrenValue = childrenInput.value;\n\n    \/\/ Remove name to avoid raw number being submitted\n    childrenInput.removeAttribute(\"name\");\n\n    const hiddenChildren = document.createElement(\"input\");\n    hiddenChildren.type = \"hidden\";\n    hiddenChildren.name = \"children\";\n\n    \/\/ If 0 or empty, send empty string\n    hiddenChildren.value = (childrenValue === \"0\" || childrenValue === \"\") ? \"\" : childrenValue.toString();\n\n    hiddenChildren.setAttribute(\"data-temp\", \"true\");\n    form.appendChild(hiddenChildren);\n  }\n});\n  }\n\n  \/\/ Run init when DOM ready\n  if (document.readyState === \"loading\") {\n    document.addEventListener(\"DOMContentLoaded\", init);\n  } else {\n    init();\n  }\n})();\n<\/script>\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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-222f3b1 e-con-full e-flex e-con e-parent\" data-id=\"222f3b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7e0fa61 e-con-full e-flex e-con e-child\" data-id=\"7e0fa61\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-051cc2b e-flex e-con-boxed e-con e-child\" data-id=\"051cc2b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-b36b9fd e-con-full e-flex e-con e-child\" data-id=\"b36b9fd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-478eea7 elementor-widget elementor-widget-heading\" data-id=\"478eea7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Queen Size Double Room<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-292032d elementor-widget elementor-widget-text-editor\" data-id=\"292032d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Every corner of this space has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility. The windows reveal a landscape that breathes in the rhythm of the sea, while the interior brings a harmony of natural materials and thoughtful simplicity.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-337496c e-con-full e-flex e-con e-child\" data-id=\"337496c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cbf62a9 kali-link elementor-widget elementor-widget-heading\" data-id=\"cbf62a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/hotelkali.hr\/de\/rooms\/queen-size-double-room\/\">See More<\/a><\/div>\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<div class=\"elementor-element elementor-element-e364d83 e-con-full e-flex e-con e-child\" data-id=\"e364d83\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cd60764 e-con-full e-flex e-con e-parent\" data-id=\"cd60764\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6257cb2 e-con-full e-flex e-con e-child\" data-id=\"6257cb2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5a75f5e e-flex e-con-boxed e-con e-child\" data-id=\"5a75f5e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-b4d34b1 e-con-full e-flex e-con e-child\" data-id=\"b4d34b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-549fb57 elementor-widget elementor-widget-heading\" data-id=\"549fb57\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">King Size Double Room<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d7103a6 elementor-widget elementor-widget-text-editor\" data-id=\"d7103a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>A space where comfort is not taken for granted \u2013 it is felt in every touch, in every aspect. The bathrooms, harmoniously decorated down to the last detail, provide moments of relaxation, while the views open up to the blue horizons.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-288bbb5 e-con-full e-flex e-con e-child\" data-id=\"288bbb5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f9bf7c kali-link elementor-widget elementor-widget-heading\" data-id=\"1f9bf7c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/hotelkali.hr\/de\/rooms\/king-size-double-room\/\">See More<\/a><\/div>\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<div class=\"elementor-element elementor-element-bf85931 e-con-full e-flex e-con e-child\" data-id=\"bf85931\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f866bc1 e-con-full e-flex e-con e-parent\" data-id=\"f866bc1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8666926 e-con-full e-flex e-con e-child\" data-id=\"8666926\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-eb6df52 e-flex e-con-boxed e-con e-child\" data-id=\"eb6df52\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1d68b4e e-con-full e-flex e-con e-child\" data-id=\"1d68b4e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-94491ec elementor-widget elementor-widget-heading\" data-id=\"94491ec\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">King Size Superior Room<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-93c7a83 elementor-widget elementor-widget-text-editor\" data-id=\"93c7a83\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Spacious and refined, with private balconies and curated interiors that blend comfort and style. Ideal for guests who want more room to relax and reconnect. A stay here is not just a vacation. It is an experience where time slows down, where luxury is not shown, but felt, and where every moment becomes a memory you will want to return to.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-05c3e60 e-con-full e-flex e-con e-child\" data-id=\"05c3e60\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f2df60c kali-link elementor-widget elementor-widget-heading\" data-id=\"f2df60c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/hotelkali.hr\/de\/rooms\/king-size-superior-room\/\">See More<\/a><\/div>\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<div class=\"elementor-element elementor-element-ce2fb87 e-con-full e-flex e-con e-child\" data-id=\"ce2fb87\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5563da6d e-flex e-con-boxed e-con e-parent\" data-id=\"5563da6d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7d38119 e-con-full e-flex e-con e-child\" data-id=\"7d38119\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e61195e elementor-widget elementor-widget-heading\" data-id=\"2e61195e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Health &amp; Well-being<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-57c2c43 elementor-widget elementor-widget-heading\" data-id=\"57c2c43\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-heading-title elementor-size-default\">A place where body and spirit find balance<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f85518 elementor-widget elementor-widget-text-editor\" data-id=\"7f85518\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Here, every sense comes to the fore. Scents that evoke the nature of the Mediterranean, flavours that reflect the richness of local ingredients, sounds of the sea and breeze that calms the mind. Every detail is designed with the aim of providing harmony, connection with the environment and a feeling of complete relaxation.<\/p><p>\u00a0<\/p><p>The pool and sundeck area invites you to relax under the warm rays of the sun, while the gym allows you to maintain the rhythm of an active lifestyle. However, the experience does not end inside the hotel. A specially designed e-shuttle takes guests to discover the island, whether it is recreation in nature, exploring hidden coves or enjoying cultural and entertainment events.<\/p><p>\u00a0<\/p><p>A stay here is not just a vacation, but an opportunity to renew your energy, return to nature and enjoy the moment, in accordance with the rhythm of the island.<\/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-6a09c01a e-con-full e-flex e-con e-child\" data-id=\"6a09c01a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-76068ca2 e-con-full e-flex e-con e-child\" data-id=\"76068ca2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-11a4fc60 elementor-widget elementor-widget-image\" data-id=\"11a4fc60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"116\" height=\"116\" src=\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg\" class=\"attachment-large size-large wp-image-997\" alt=\"\" \/>\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\t\t<div class=\"elementor-element elementor-element-138bd8fe elementor-widget elementor-widget-heading\" data-id=\"138bd8fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Swimming Pool<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70426992 elementor-widget elementor-widget-text-editor\" data-id=\"70426992\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>A peaceful, sun-kissed retreat framed by Mediterranean greenery. Available only for hotel guests, our pool is the perfect spot for a morning swim or an afternoon pause.<\/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-6e760d32 e-con-full e-flex e-con e-child\" data-id=\"6e760d32\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5cc212b5 elementor-widget elementor-widget-image\" data-id=\"5cc212b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"106\" height=\"73\" src=\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-gym.svg\" class=\"attachment-large size-large wp-image-998\" alt=\"\" \/>\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\t\t<div class=\"elementor-element elementor-element-63d76029 elementor-widget elementor-widget-heading\" data-id=\"63d76029\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Boutique Gym<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5cab5ef3 elementor-widget elementor-widget-text-editor\" data-id=\"5cab5ef3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Light-filled, minimal, and fully equipped, our fitness space is designed for movement, mindfulness, and balance. Open daily exclusively to hotel guests.<\/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-6122882a e-con-full e-flex e-con e-child\" data-id=\"6122882a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c2eab39 elementor-widget elementor-widget-image\" data-id=\"7c2eab39\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"95\" height=\"95\" src=\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-shuttle.svg\" class=\"attachment-large size-large wp-image-999\" alt=\"\" \/>\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\t\t<div class=\"elementor-element elementor-element-69ff0675 elementor-widget elementor-widget-heading\" data-id=\"69ff0675\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">e-Shuttle Adventure<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4ad3e547 elementor-widget elementor-widget-text-editor\" data-id=\"4ad3e547\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Go beyond the hotel with our electric shuttle service, you can explore Ugljan\u2019s scenic paths, hidden beaches, and quiet villages, all at your own rhythm.<\/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\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>ROOMS Make Your Reservation check in check out adults children rooms Book Now Queen Size Double Room Every corner of this space has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility. The windows reveal a landscape that breathes in the rhythm of the sea, while the interior brings a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-399","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>All Rooms<\/title>\n<meta name=\"description\" content=\"Every corner of our rooms has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/ROOMS%20Make%20Your%20Reservation%20check%20in%20check%20out%20adults%20children%20rooms%20Book%20Now%20Queen%20Size%20Double%20Room%20Every%20corner%20of%20this%20space%20has%20been%20designed%20with%20the%20idea%20of%20\u200b\u200bproviding%20a%20feeling%20of%20complete%20comfort%20and%20tranquility.%20The%20windows%20reveal%20a%20landscape%20that%20breathes%20in%20the%20rhythm%20of%20the%20sea,%20while%20the%20interior%20brings%20a&hellip;\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"All Rooms\" \/>\n<meta property=\"og:description\" content=\"Every corner of our rooms has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hotelkali.hr\/de\/rooms\/\" \/>\n<meta property=\"og:site_name\" content=\"Hotel Kali\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-18T13:00:53+00:00\" \/>\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=\"3\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hotelkali.hr\/de\/rooms\/\",\"url\":\"https:\/\/hotelkali.hr\/de\/rooms\/\",\"name\":\"All Rooms &#8211; Hotel Kali\",\"isPartOf\":{\"@id\":\"https:\/\/hotelkali.hr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hotelkali.hr\/de\/rooms\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hotelkali.hr\/de\/rooms\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg\",\"datePublished\":\"2025-05-19T11:52:19+00:00\",\"dateModified\":\"2026-04-18T13:00:53+00:00\",\"description\":\"Every corner of our rooms has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility.\",\"breadcrumb\":{\"@id\":\"https:\/\/hotelkali.hr\/de\/rooms\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hotelkali.hr\/de\/rooms\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/hotelkali.hr\/de\/rooms\/#primaryimage\",\"url\":\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg\",\"contentUrl\":\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hotelkali.hr\/de\/rooms\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hotelkali.hr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"All Rooms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hotelkali.hr\/de\/#website\",\"url\":\"https:\/\/hotelkali.hr\/de\/\",\"name\":\"Hotel Kali\",\"description\":\"The island waits, the moment is yours\",\"publisher\":{\"@id\":\"https:\/\/hotelkali.hr\/de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hotelkali.hr\/de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/hotelkali.hr\/de\/#organization\",\"name\":\"Hotel Kali\",\"url\":\"https:\/\/hotelkali.hr\/de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/hotelkali.hr\/de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/kali-logo-full-black.webp\",\"contentUrl\":\"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/kali-logo-full-black.webp\",\"width\":300,\"height\":309,\"caption\":\"Hotel Kali\"},\"image\":{\"@id\":\"https:\/\/hotelkali.hr\/de\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.instagram.com\/hotel_kali_ugljan\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"All Rooms","description":"Every corner of our rooms has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility.","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":"ROOMS Make Your Reservation check in check out adults children rooms Book Now Queen Size Double Room Every corner of this space has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility. The windows reveal a landscape that breathes in the rhythm of the sea, while the interior brings a&hellip;","og_locale":"de_DE","og_type":"article","og_title":"All Rooms","og_description":"Every corner of our rooms has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility.","og_url":"https:\/\/hotelkali.hr\/de\/rooms\/","og_site_name":"Hotel Kali","article_modified_time":"2026-04-18T13:00:53+00:00","twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"3\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hotelkali.hr\/de\/rooms\/","url":"https:\/\/hotelkali.hr\/de\/rooms\/","name":"All Rooms &#8211; Hotel Kali","isPartOf":{"@id":"https:\/\/hotelkali.hr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hotelkali.hr\/de\/rooms\/#primaryimage"},"image":{"@id":"https:\/\/hotelkali.hr\/de\/rooms\/#primaryimage"},"thumbnailUrl":"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg","datePublished":"2025-05-19T11:52:19+00:00","dateModified":"2026-04-18T13:00:53+00:00","description":"Every corner of our rooms has been designed with the idea of \u200b\u200bproviding a feeling of complete comfort and tranquility.","breadcrumb":{"@id":"https:\/\/hotelkali.hr\/de\/rooms\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hotelkali.hr\/de\/rooms\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/hotelkali.hr\/de\/rooms\/#primaryimage","url":"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg","contentUrl":"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/icon-swimming-pool.svg"},{"@type":"BreadcrumbList","@id":"https:\/\/hotelkali.hr\/de\/rooms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hotelkali.hr\/"},{"@type":"ListItem","position":2,"name":"All Rooms"}]},{"@type":"WebSite","@id":"https:\/\/hotelkali.hr\/de\/#website","url":"https:\/\/hotelkali.hr\/de\/","name":"Hotel Kali","description":"The island waits, the moment is yours","publisher":{"@id":"https:\/\/hotelkali.hr\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hotelkali.hr\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/hotelkali.hr\/de\/#organization","name":"Hotel Kali","url":"https:\/\/hotelkali.hr\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/hotelkali.hr\/de\/#\/schema\/logo\/image\/","url":"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/kali-logo-full-black.webp","contentUrl":"https:\/\/hotelkali.hr\/wp-content\/uploads\/2025\/05\/kali-logo-full-black.webp","width":300,"height":309,"caption":"Hotel Kali"},"image":{"@id":"https:\/\/hotelkali.hr\/de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/hotel_kali_ugljan\/"]}]}},"_links":{"self":[{"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/pages\/399","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/comments?post=399"}],"version-history":[{"count":241,"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/pages\/399\/revisions"}],"predecessor-version":[{"id":2296,"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/pages\/399\/revisions\/2296"}],"wp:attachment":[{"href":"https:\/\/hotelkali.hr\/de\/wp-json\/wp\/v2\/media?parent=399"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}