{"id":60,"date":"2018-02-17T23:15:11","date_gmt":"2018-02-17T23:15:11","guid":{"rendered":"https:\/\/eagle-themes.com\/themes\/zante\/?page_id=60"},"modified":"2019-06-06T14:37:04","modified_gmt":"2019-06-06T11:37:04","slug":"home-page","status":"publish","type":"page","link":"https:\/\/www.surfbeach.gr\/en\/","title":{"rendered":"Home"},"content":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][rev_slider_vc alias=&#8221;rev-slider-restaurant&#8221; el_class=&#8221;color-overlay-slider overlay-opacity-01&#8243;][\/vc_column][\/vc_row][vc_row disable_element=&#8221;yes&#8221;][vc_column]<div class=\"hbf half-over-slider\">\n  <div class=\"inner\">\n      <!--START FORM-->\n      <form id=\"search-form\" action=\"https:\/\/santamariasurfingbeach.reserve-online.net\/\" method=\"get\" target=\"_blank\">\n        <div class=\"row\">\n                    <!-- PARAMETERS -->\n          <input type=\"hidden\" name=\"\" value=\"\" >\n          <input type=\"hidden\" name=\"\" value=\"\" >\n                    <!-- CHECK IN -->\n          <div class=\"col-md-3\">\n            <label for=\"eagle_booking_checkin\">Arrival Date<\/label>\n            <input type=\"text\" id=\"eagle_booking_checkin\" class=\"form-control datepicker\" placeholder=\"Check In\">\n            <input type=\"hidden\" name=\"\">\n          <\/div>\n          <!-- CHECKOUT -->\n          <div class=\"col-md-3\">\n            <label for=\"eagle_booking_checkout\">Departure Date<\/label>\n            <input type=\"text\" id=\"eagle_booking_checkout\" class=\"form-control datepicker\" placeholder=\"Check Out\">\n            <input type=\"hidden\" name=\"\">\n          <\/div>\n          <!-- GUESTS -->\n          <div class=\"col-md-3\">\n            <label for=\"eagle_booking_guests\">Guests<\/label>\n            <div class=\"guests-picker\">\n              <div class=\"minus\"><\/div>\n              <input type=\"text\" name=\"\" id=\"eagle_booking_guests\" class=\"form-control\" min=\"1\" max=\"10\" value=\"2\" placeholder=\"Guests\" readonly>\n              <div class=\"plus\"><\/div>\n            <\/div>\n          <\/div>\n          <!-- BUTTON -->\n          <div class=\"col-md-3\">\n            <input class=\"button\" type=\"submit\" value=\"CHECK AVAILABILITY\">\n          <\/div>\n          <script>\n          (function ($) {\n            \"use strict\";\n                $(document).ready(function () {\n\n                  var datepicker = $('.datepicker');\n                  var checkin_date = $('#eagle_booking_checkin');\n                  var checkout_date = $('#eagle_booking_checkout');\n\n                  \/\/ SET DEFAULT DATES\n                  var default_checkin_date = moment().format('DD\/MM\/YYYY');\n                  var default_checkout_date = moment().add(10, 'd').format('DD\/MM\/YYYY');\n\n                  \/\/ TRANSLATE\n                  $.fn.datepicker.dates['en'] = {\n                    days: [\n                    \"Sunday\",\n                    \"Monday\",\n                    \"Tuesday\",\n                    \"Wednesday\",\n                    \"Thursday\",\n                    \"Friday\",\n                    \"Saturday\"\n                    ],\n                    daysShort: [\n                    \"Sun\",\n                    \"Mon\",\n                    \"Tue\",\n                    \"Wed\",\n                    \"Thu\",\n                    \"Fri\",\n                    \"Sat\"\n                    ],\n                    daysMin: [\n                    \"Su\",\n                    \"Mo\",\n                    \"Tu\",\n                    \"We\",\n                    \"Th\",\n                    \"Fr\",\n                    \"Sa\"\n                    ],\n                    months: [\n                    \"'January\",\n                    \"February\",\n                    \"March\",\n                    \"April\",\n                    \"May\",\n                    \"June\",\n                    \"July\",\n                    \"August\",\n                    \"September\",\n                    \"October\",\n                    \"November\",\n                    \"December'\"\n                    ],\n                    monthsShort: [\n                    \"Jan\",\n                    \"Feb\",\n                    \"Mar\",\n                    \"Apr\",\n                    \"May\",\n                    \"Jun\",\n                    \"Jul\",\n                    \"Aug\",\n                    \"Sep\",\n                    \"Oct\",\n                    \"Nov\",\n                    \"Dec'\"\n                    ],\n                    today: \"Today\",\n                    clear: \"Clear\",\n                    \/\/format: \"mm\/dd\/yyyy\",\n                    titleFormat: \"MM yyyy\",\n                    weekStart: 0\n                  };\n\n                    \/\/ CHECKIN\n                    checkin_date.datepicker({\n                      format: \"dd\/mm\/yyyy\",\n                      startDate: new Date(),\n                      autoclose: true,\n                      todayHighlight: true,\n                      disableTouchKeyboard: true,\n                      \/\/language: 'en',\n                    });\n                    \/\/ CHECKIN DEFAULT DATE\n                    checkin_date.datepicker('setDate', default_checkin_date);\n\n                    \/\/ CHECKOUT\n                    checkout_date.datepicker({\n                      format: \"dd\/mm\/yyyy\",\n                      startDate: new Date(),\n                      autoclose: true,\n                      todayHighlight: false,\n                      disableTouchKeyboard: true,\n                      \/\/language: 'en',\n                    });\n\n                   \/\/ CHECKOUT DEFAULT DATE\n                   checkout_date.datepicker('setDate', default_checkout_date );\n\n                   \/\/ DISABLE DATE PICKER INPUT\n                   datepicker.attr('autocomplete', 'off');\n                   datepicker.on(\"ready\", function() {\n                     $(this).attr('autocomplete', 'off');\n                   });\n\n                   \/\/ CHANGE THE CHECKOUT BASED ON THE CHECKIN\n                   checkin_date.one('changeDate', function(e){\n\n                     var checkin_date_val_string = checkin_date.val();\n                     var new_checkout_date  = moment(checkin_date_val_string,'DD\/MM\/YYYY').add(10, 'd').format('DD\/MM\/YYYY');\n\n                     checkout_date.datepicker('setDate',  new_checkout_date);\n\n                   })\n\n                       \/\/ GUESTS\n                       $(function () {\n                           var spinner = $('.guests-picker');\n                           var spinnerplus = $('.plus')\n                           var spinnerminus = $('.minus');\n                           $(spinnerplus).on('click', function () {\n                               var btn = $(this);\n                               var input = btn.closest(spinner).find('input');\n                               if (input.attr('max') == undefined || parseInt(input.val()) < parseInt(input.attr('max'))) {\n                                   input.val(parseInt(input.val(), 10) + 1, 10);\n                               } else {\n                                   btn.next(\"disabled\", true);\n                               }\n                           });\n                           $(spinnerminus).on('click', function () {\n                               var btn = $(this);\n                               var input = btn.closest(spinner).find('input');\n                               if (input.attr('min') == undefined || parseInt(input.val()) > parseInt(input.attr('min'))) {\n                                   input.val(parseInt(input.val(), 10) - 1, 10);\n                               } else {\n                                   btn.prev(\"disabled\", true);\n                               }\n                           });\n                       });\n\n                       \/\/ CHANGE THE SENDING DATE FORMAT FOR BUILT IN BOOKING, BOOKING.COM & CUSTOM BOOKING TYPE BASED ON BOOKING TYPE\n                       datepicker.on('changeDate', function(e){\n\n                                                       $(this).next('input[type=hidden]').val( moment(e.date).format('DD-MM-YYYY') )\n\n                                                    });\n\n                        \/\/ CHANGE THE DEFAULT DATE FORMAT FOR BUILT IN BOOKING, BOOKING.COM & CUSTOM BOOKING TYPE BASED ON BOOKING TYPE\n                        jQuery(\"#search-form\").on('submit', function(e) {\n\n                            \/\/ GET DEFAULT DATES FROM DATEPICKER\n                            var startDate = checkin_date.datepicker('getDate');\n                            var endDate = checkout_date.datepicker('getDate');\n\n                                                        \/\/ CUSTOM FORMAT\n                            checkin_date.next('input[type=hidden]').val( moment(startDate).format('DD-MM-YYYY') )\n                            checkout_date.next('input[type=hidden]').val( moment(endDate).format('DD-MM-YYYY') )\n\n                            \n                          });\n\n                });\n            })(jQuery);\n          <\/script>\n      <\/div>\n    <\/form>\n  <\/div>\n<\/div>\n[\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1531848941252{padding-top: 100px !important;padding-bottom: 100px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-left  \">\r\n\t\t\t\t<h2 class=\"title\">Santa Maria Surfing Beach<\/h2>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t[vc_column_text]Santa Maria Surfing Beach Village is situated on a white sand beach with blue crystal waters, the Santa Maria beach in Paros island.<\/p>\n<p>It gives you the opportunity to live a unique holiday experience as enjoying the landscaped gardens that decorate the rooms area, the magnificent Santa Maria Beach with blue crystal waters, the unique open-air swimming pool and many kinds of activities on the beach![\/vc_column_text]\r\n        \r\n        <style>\r\n\t\t\t\t#btn-container-Qoos0 {\r\n\t\t\t\t\tfont-size: 15px;\r\n\t\t\t\t\tfont-weight: bold;\r\n\t\t\t\t}\r\n        #btn-Qoos0 {\r\n        \tbackground: #ffffff;\r\n\t\t\t\t\tborder-style: solid;\r\n        \tborder-color: #00b4dc;\r\n\t\t\t\t\tborder-width: 2px;\r\n        \tcolor: #00b4dc;\r\n\t\t\t\t\tpadding: 10px 25px;\r\n\t\t\t\t\tborder-radius: 2px;\r\n\t\t\t\t\tfont-size: 15px;\r\n\t\t\t\t\tline-height: 15px;\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tfont-weight: bold;\r\n        }\r\n\r\n\t\t\t\t#btn-Qoos0:hover {\r\n\t\t\t\t\tbackground: #00b4dc;\r\n\t\t\t\t\tborder-color: #00b4dc;\r\n\t\t\t\t\tcolor: #ffffff;\r\n\t\t\t\t\t\t\t\t\t\tbox-shadow: 0 15px 30px rgba(0, 0, 0, 0.10);\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t-ms-transform: translateY(-2px);\r\n\t\t\t\t\ttransform: translateY(-2px);\r\n\t\t\t\t\t-webkit-transform: translateY(-2px);\r\n\t\t\t\t\t\r\n\t\t\t\t}\r\n\r\n\t\t    #btn-Qoos0 i {\r\n\t\t\t\t\tright: 14px;\r\n\t\t\t\t\tmargin-top: 0;\r\n\t\t\t\t\tvertical-align: middle;\r\n\t\t\t\t\tborder-radius: 50%;\r\n\t\t\t\t\tline-height: 20px;\r\n\t\t\t\t\theight: 20px;\r\n\t\t\t\t\twidth: 20px;\r\n\t\t\t\t\tbackground: #00b4dc;\r\n\t\t\t\t\tmargin-left: 8px;\r\n\t\t\t\t\tmargin-right: 0;\r\n\t\t\t\t\tcolor: #ffffff;\r\n\t\t\t\t\tfont-size: 8px;\r\n\t\t\t\t\ttext-align: center;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t #btn-Qoos0:hover i {\r\n\t\t\t\t \tbackground: #ffffff;\r\n\t\t\t\t\tcolor: #00b4dc;\r\n\t\t\t\t }\r\n\r\n        <\/style>\r\n\r\n\t\t\t\t<!-- BUTTON -->\r\n        <div id=\"btn-container-Qoos0\" class=\"text-left\">\r\n\t\t\t\t\t\r\n\t\t\t\t\t<a href=\"https:\/\/www.surfbeach.gr\/en\/about-us\/\" id=\"btn-Qoos0\" class=\"btn \" target=\"_self\">\r\n\t\t\t\t\t\tRead more\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"fa fa-chevron-right\"><\/i>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t\t\r\n        <\/div>\r\n\r\n\r\n\r\n        [\/vc_column][vc_column width=&#8221;1\/2&#8243;]\r\n        <div class=\"image-3d-effect\">\r\n          <div class=\"side left\"><\/div>\r\n          <div class=\"side right\"><\/div>\r\n          <div class=\"images\">\r\n                        <div class=\"front-image\" style=\"background: url(https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/05\/front.jpg)\"><\/div>\r\n                                  <\/div>\r\n        <\/div>\r\n\r\n\r\n\r\n        [\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1531849737322{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;background-color: #f1f0ed !important;border-top-color: #ebeae9 !important;border-top-style: solid !important;border-bottom-color: #ebeae9 !important;border-bottom-style: solid !important;}&#8221; el_class=&#8221;gray-bg&#8221;][vc_column]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-center  \">\r\n\t\t\t\t<h2 class=\"title\">ACCOMMODATION<\/h2>\r\n\t\t\t\t\t\t\t\t\t<p class=\"main_description\">Check out now our best rooms<\/p>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\r\n\r\n            <div class=\"row\">\r\n            <!-- FIRST ITEM -->\r\n            <div class=\"col-md-6 big-item\">\r\n                            <div class=\"room-item\">\r\n                  <figure class=\"room-image gradient-overlay overlay-opacity-02 slide-right-hover\">\r\n                                            <a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/beach-front-suites-cabanas\/\">\r\n                          <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/DSC_3917-720x470.jpg\" class=\"img-responsive\" alt=\"Beach Front Suites (cabanas)\">\r\n                      <\/a>\r\n                  <\/figure>\r\n                  <div class=\"room-details\">\r\n                      <h4 class=\"room-title\"><a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/beach-front-suites-cabanas\/\">Beach Front Suites (cabanas)<\/a><\/h4>\r\n                      <!-- SERVICES -->\r\n                      <div class=\"room-services\">\r\n                                              <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Air Conditioner Included\" data-original-title=\"Air Conditioner\">\r\n                                                  <i class=\"fa fa-snowflake-o\"><\/i>\r\n                                                <\/div>\r\n                                              <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Private Balcony Included\" data-original-title=\"Private Balcony\">\r\n                                                  <i class=\"fa fa-eye-slash\"><\/i>\r\n                                                <\/div>\r\n                                              <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Wi-Fi Included\" data-original-title=\"Wi-Fi\">\r\n                                                  <i class=\"fa fa-wifi\"><\/i>\r\n                                                <\/div>\r\n                                              <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Sea view\" data-original-title=\"Sea view\">\r\n                                                  <i class=\"fa fa-eye\"><\/i>\r\n                                                <\/div>\r\n                                                                  <\/div>\r\n                  <\/div>\r\n              <\/div>\r\n                                        <\/div>\r\n\r\n            <div class=\"col-md-6\">\r\n              <div class=\"row\">\r\n                <!-- SECOND ITEM -->\r\n                <div class=\"col-md-6 small-item\">\r\n                                    <div class=\"room-item\">\r\n                      <figure class=\"room-image gradient-overlay overlay-opacity-02 slide-right-hover\">\r\n                                                <a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/beach-huts\/\">\r\n                            <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2018\/05\/huts1-720x470.jpg\" class=\"img-responsive\" alt=\"Beach huts\">\r\n                        <\/a>\r\n                      <\/figure>\r\n                      <div class=\"room-details\">\r\n                          <h4 class=\"room-title\"><a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/beach-huts\/\">Beach huts<\/a><\/h4>\r\n                          <!-- SERVICES -->\r\n                          <div class=\"room-services\">\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"\" data-original-title=\"Hot Showers\">\r\n                                                          <i class=\"fa fa-shower\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"\" data-original-title=\"Parking\">\r\n                                                          <i class=\"fa fa-car\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Wi-Fi Included\" data-original-title=\"Wi-Fi\">\r\n                                                          <i class=\"fa fa-wifi\"><\/i>\r\n                                                        <\/div>\r\n                                                                              <\/div>\r\n                      <\/div>\r\n                  <\/div>\r\n                                                      <\/div>\r\n                <!-- THIRD ITEM -->\r\n                <div class=\"col-md-6 small-item\">\r\n                                    <div class=\"room-item\">\r\n                      <figure class=\"room-image gradient-overlay overlay-opacity-02 slide-right-hover\">\r\n                                                <a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/rooms\/\">\r\n                            <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2018\/05\/DSC_9829_01-720x470.jpg\" class=\"img-responsive\" alt=\"Rooms\">\r\n                        <\/a>\r\n                      <\/figure>\r\n                      <div class=\"room-details\">\r\n                          <h4 class=\"room-title\"><a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/rooms\/\">Rooms<\/a><\/h4>\r\n                          <!-- SERVICES -->\r\n                          <div class=\"room-services\">\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Widescreen TV Included\" data-original-title=\"Widescreen TV\">\r\n                                                          <i class=\"fa fa-television\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Air Conditioner Included\" data-original-title=\"Air Conditioner\">\r\n                                                          <i class=\"fa fa-snowflake-o\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Private Balcony Included\" data-original-title=\"Private Balcony\">\r\n                                                          <i class=\"fa fa-eye-slash\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"\" data-original-title=\"Hotbath\">\r\n                                                          <i class=\"fa fa-bath\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"\" data-original-title=\"Parking\">\r\n                                                          <i class=\"fa fa-car\"><\/i>\r\n                                                        <\/div>\r\n                                                                              <\/div>\r\n                      <\/div>\r\n                  <\/div>\r\n  \t\t\t\t\t                                      <\/div>\r\n\r\n                <!-- ITEM -->\r\n                <div class=\"col-md-12 small-item\">\r\n                                    <div class=\"room-item\">\r\n                      <figure class=\"room-image gradient-overlay overlay-opacity-02 slide-right-hover\">\r\n                                                <a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/camping\/\">\r\n                            <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2018\/07\/camp_view1-720x470.jpg\" class=\"img-responsive\" alt=\"Camping\">\r\n                        <\/a>\r\n                      <\/figure>\r\n                      <div class=\"room-details\">\r\n                          <h4 class=\"room-title\"><a href=\"https:\/\/www.surfbeach.gr\/en\/rooms\/camping\/\">Camping<\/a><\/h4>\r\n                          <!-- SERVICES -->\r\n                          <div class=\"room-services\">\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Wi-Fi Included\" data-original-title=\"Wi-Fi\">\r\n                                                          <i class=\"fa fa-wifi\"><\/i>\r\n                                                        <\/div>\r\n                                                      <div class=\"room-service-item\" data-toggle=\"popover\" data-placement=\"top\" data-trigger=\"hover\" data-content=\"Private Balcony Included\" data-original-title=\"Private Balcony\">\r\n                                                          <i class=\"fa fa-eye-slash\"><\/i>\r\n                                                        <\/div>\r\n                                                                              <\/div>\r\n                      <\/div>\r\n                  <\/div>\r\n                                                      <\/div>\r\n\r\n                \r\n\r\n              <\/div>\r\n\r\n            <\/div>\r\n          <\/div>\r\n\r\n        [\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1553690642932{margin-top: 30px !important;}&#8221;][vc_column]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-center  \">\r\n\t\t\t\t<h2 class=\"title\">HIGHLIGHTS<\/h2>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\r\n            <div class=\"row\">\r\n\t                                      <!-- places ITEM -->\r\n                      <div class=\"col-lg-4 col-sm-6\">\r\n                        <div class=\"place-item\">\r\n                        <figure class=\"gradient-overlay zoom-hover\">\r\n                          <a href=\"https:\/\/www.surfbeach.gr\/en\/places\/restaurant\/\">\r\n                            <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/wedding5_900-1-720x520.jpg\" class=\"img-responsive\">\r\n                            <div class=\"place-name\">\r\n                              <h2>RESTAURANT<\/h2>\r\n                            <\/div>\r\n                          <\/a>\r\n                        <\/figure>\r\n                      <\/div>\r\n                    <\/div>\r\n\r\n\t                                      <!-- places ITEM -->\r\n                      <div class=\"col-lg-4 col-sm-6\">\r\n                        <div class=\"place-item\">\r\n                        <figure class=\"gradient-overlay zoom-hover\">\r\n                          <a href=\"https:\/\/www.surfbeach.gr\/en\/places\/swimming-pool\/\">\r\n                            <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/receptions2-1-720x520.jpg\" class=\"img-responsive\">\r\n                            <div class=\"place-name\">\r\n                              <h2>SWIMMING POOL<\/h2>\r\n                            <\/div>\r\n                          <\/a>\r\n                        <\/figure>\r\n                      <\/div>\r\n                    <\/div>\r\n\r\n\t                                      <!-- places ITEM -->\r\n                      <div class=\"col-lg-4 col-sm-6\">\r\n                        <div class=\"place-item\">\r\n                        <figure class=\"gradient-overlay zoom-hover\">\r\n                          <a href=\"https:\/\/www.surfbeach.gr\/en\/places\/mykonos\/\">\r\n                            <img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/beach_view_from_sea3_nice2_1200_800-720x520.jpg\" class=\"img-responsive\">\r\n                            <div class=\"place-name\">\r\n                              <h2>BEACH FRONT HOTEL|SANTA MARIA BEACH<\/h2>\r\n                            <\/div>\r\n                          <\/a>\r\n                        <\/figure>\r\n                      <\/div>\r\n                    <\/div>\r\n\r\n\t                \t                            <\/div>\r\n\r\n        [\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1553690595433{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 100px !important;padding-bottom: 100px !important;background-color: #ebeae9 !important;border-top-color: #f2f2f2 !important;border-top-style: solid !important;border-bottom-color: #f2f2f2 !important;border-bottom-style: solid !important;}&#8221;][vc_column]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-center  \">\r\n\t\t\t\t<h2 class=\"title\">OUR AWESOME SERVICES<\/h2>\r\n\t\t\t\t\t\t\t\t\t<p class=\"main_description\">Check out our awesome services<\/p>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\r\n      \r\n    <script>\r\n      jQuery(document).ready(function ($) {\r\n        $('#features-slider-7Ny9D').owlCarousel({\r\n            thumbs: true,\r\n            thumbsPrerendered: true,\r\n            items: 1,\r\n                        loop: true,\r\n                        autoplay: true,\r\n                        dots: false,\r\n            nav: false,\r\n            touchDrag  : true,\r\n            mouseDrag  : false\r\n          });\r\n      });\r\n    <\/script>\r\n\r\n\r\n    <div class=\"features\">\r\n      <div class=\"row\">\r\n          <div class=\"col-md-7\">\r\n              <div data-slider-id=\"features-7Ny9D\" id=\"features-slider-7Ny9D\" class=\"main-image owl-carousel\">\r\n\r\n\r\n  <div class=\"gradient-overlay overlay-opacity-02\"><img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/exofylo.jpg\" class=\"img-responsive\" alt=\"Surf Club \u2013 Water Sports\"><\/div>\r\n\r\n  \r\n  <div class=\"gradient-overlay overlay-opacity-02\"><img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/scuba9.jpg\" class=\"img-responsive\" alt=\"Scuba Diving\"><\/div>\r\n\r\n  \r\n  <div class=\"gradient-overlay overlay-opacity-02\"><img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/otan-i-ippasia-therapeuei-ippasia-therapeuei.jpg\" class=\"img-responsive\" alt=\"Horse Riding\"><\/div>\r\n\r\n  <\/div>\r\n<\/div>\r\n<div class=\"col-md-5\">\r\n  <div class=\"owl-thumbs\" data-slider-id=\"features-7Ny9D\">\r\n\r\n    \r\n    <!-- SLIDE -->\r\n    <div class=\"owl-thumb-item\">\r\n        <span class=\"media-left\"><image src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/Santa-Maria-Small-Logo.png\" alt=\"Surf Club \u2013 Water Sports\"><\/span>\r\n        <div class=\"media-body\">\r\n            <h5>Surf Club \u2013 Water Sports<\/h5>\r\n            <p>he Surf Club is located on the magnificent beach of Santa Maria. Visitors who are interested in physical activity can enjoy one of our many water sports here.<\/p>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    \r\n    <!-- SLIDE -->\r\n    <div class=\"owl-thumb-item\">\r\n        <span class=\"media-left\"><image src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/Santa-Maria-Small-Logo.png\" alt=\"Scuba Diving\"><\/span>\r\n        <div class=\"media-body\">\r\n            <h5>Scuba Diving<\/h5>\r\n            <p>The Surfing Beach Diving Centre, in Santa Maria Beach organizes scuba diving excursions around Paros-Naxos for more than 23 years and we can promise that together we will dive safely.<\/p>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    \r\n    <!-- SLIDE -->\r\n    <div class=\"owl-thumb-item\">\r\n        <span class=\"media-left\"><image src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/Santa-Maria-Small-Logo.png\" alt=\"Horse Riding\"><\/span>\r\n        <div class=\"media-body\">\r\n            <h5>Horse Riding<\/h5>\r\n            <p>Thanassis Farm invites you to come and experience the exhilarating experience of riding in a safe environment . The top priority is the safety and welfare of both horses and riders for them.<\/p>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    \r\n  <\/div>\r\n<\/div>\r\n<\/div>\r\n<\/div>\r\n\r\n  [\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row_content&#8221; css=&#8221;.vc_custom_1553096008579{padding-top: 100px !important;padding-bottom: 100px !important;}&#8221;][vc_column]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-center  \">\r\n\t\t\t\t<h2 class=\"title\">DISCOVER PAROS<\/h2>\r\n\t\t\t\t\t\t\t\t\t<p class=\"main_description\">Seven reasons to visit the beautiful Greek island<\/p>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t[vc_single_image image=&#8221;21069&#8243; img_size=&#8221;full&#8221; onclick=&#8221;custom_link&#8221; link=&#8221;https:\/\/www.surfbeach.gr\/en\/2014\/03\/10\/paros-seven-reasons-to-visit-the-beautiful-greek-island-2\/&#8221;][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1531644590382{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 100px !important;padding-bottom: 70px !important;background-color: #f5f3f0 !important;border-top-color: #f0f0f0 !important;border-top-style: solid !important;border-bottom-color: #f0f0f0 !important;border-bottom-style: solid !important;}&#8221;][vc_column][vc_row_inner][vc_column_inner]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-center  \">\r\n\t\t\t\t<h2 class=\"title\">TESTIMONIALS<\/h2>\r\n\t\t\t\t\t\t\t\t\t<p class=\"main_description\">What our guests are saying about us<\/p>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t[\/vc_column_inner][\/vc_row_inner]\r\n        <div class=\"row\">\r\n            \t\t\t\t<!-- TESTIMONIAL GRID ITEM -->\r\n                <div class=\"col-lg-4 col-sm-6 \">\r\n\t\t\t\t\t<div class=\"testimonial-item\">\r\n\t\t                  <div class=\"review\">\r\n\t\t                        <h3>Great place<\/h3>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t                        <p>Great place to try and learn windsurfing... Nice staff<\/p>\r\n\t\t                    <\/div>\r\n\t\t                    <div class=\"author\">\r\n\t\t                        \t\t                        <div class=\"author-info\">\r\n\t\t                            <h5>Maya Coco B. Bostr\u00f6m<\/h5>\r\n\t\t                            <span class=\"author-loacation\">Lisbone, Portugal<\/span>\r\n\t\t                        <\/div>\r\n\t\t                    <\/div>\r\n\t\t              <\/div>\r\n                <\/div>\r\n\r\n            \t\t\t\t<!-- TESTIMONIAL GRID ITEM -->\r\n                <div class=\"col-lg-4 col-sm-6 \">\r\n\t\t\t\t\t<div class=\"testimonial-item\">\r\n\t\t                  <div class=\"review\">\r\n\t\t                        <h3>Great camping<\/h3>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t                        <p>Great camping in which we met a lot of French especially from the holiday colonies. The whole staff has made our stay pleasant, the bungalows are cleaned every day! Swimming pool with bar, restaurant, beach at 50 m it was a great week I recommend!<\/p>\r\n\t\t                    <\/div>\r\n\t\t                    <div class=\"author\">\r\n\t\t                        \t\t                        <div class=\"author-info\">\r\n\t\t                            <h5>Joachim Franfreluche<\/h5>\r\n\t\t                            <span class=\"author-loacation\">Angoul\u00eame, France<\/span>\r\n\t\t                        <\/div>\r\n\t\t                    <\/div>\r\n\t\t              <\/div>\r\n                <\/div>\r\n\r\n            \t\t\t\t<!-- TESTIMONIAL GRID ITEM -->\r\n                <div class=\"col-lg-4 col-sm-6 \">\r\n\t\t\t\t\t<div class=\"testimonial-item\">\r\n\t\t                  <div class=\"review\">\r\n\t\t                        <h3>Green and beautiful location<\/h3>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"rating\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i><i class=\"fa fa-star\" aria-hidden=\"true\"><\/i>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t                        <p>I\u2019m always staying there when I\u2019m in Paros, 2-3 times every summer. Very nice, clean and comfortable hotel rooms in a very green and beautiful location, directly on Santa Maria beach. The rooms are with free WiFi, nice beds, bathroom with bath, all with balcons and A\/C. Big swimming pool and pool bar open whole day, many people from all over world,\u2026<\/p>\r\n\t\t                    <\/div>\r\n\t\t                    <div class=\"author\">\r\n\t\t                        \t\t                        <div class=\"author-info\">\r\n\t\t                            <h5>Sakis<\/h5>\r\n\t\t                            <span class=\"author-loacation\">Athens, Greece<\/span>\r\n\t\t                        <\/div>\r\n\t\t                    <\/div>\r\n\t\t              <\/div>\r\n                <\/div>\r\n\r\n                                <\/div>\r\n\r\n        [\/vc_column][\/vc_row][vc_row css=&#8221;.vc_custom_1531733939823{padding-top: 100px !important;padding-bottom: 70px !important;}&#8221;][vc_column]\t\t\t<div\r\n\t\t\t\tclass=\"main_title  text-center  \">\r\n\t\t\t\t<h2 class=\"title\">LATEST NEWS &amp; EVENTS<\/h2>\r\n\t\t\t\t\t\t\t\t\t<p class=\"main_description\">Check out our latest news &amp; events<\/p>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\r\n        <div class=\"latest-posts-grid\">\r\n            <div class=\"row grid-row\">\r\n                                                                          <!-- ITEM -->\r\n                    <div class=\"col-md-4 col-sm-4\">\r\n                        <article class=\"news-grid-item\">\r\n                          <figure class=\"gradient-overlay slide-right-hover\">\r\n                              <a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/08\/04\/santa-maria-beach-bar-place-paros-island\/\"><img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2017\/08\/SANTA-MARIA-BEACH-BAR-PHOTO-720x520.jpg\" class=\"img-responsive\" alt=\"SANTA MARIA beach bar &#8211; THE PLACE TO BE ON PAROS ISLAND!\"><\/a>\r\n                          <\/figure>\r\n                          <div class=\"details\">\r\n                              <h3><a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/08\/04\/santa-maria-beach-bar-place-paros-island\/\">SANTA MARIA beach bar &#8211; THE PLACE TO BE ON PAROS ISLAND!<\/a><\/h3>\r\n                              <p>Simply Put - THE BEST BEACH BAR ON PAROS ISLAND... AND HAS BEEN FOR THE...<\/p>\r\n                              <!-- <a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/08\/04\/santa-maria-beach-bar-place-paros-island\/\" class=\"button btn_xs btn_blue\">Read More<\/a> -->\r\n                              <div class=\"info\">\r\n                                  <a href=\"https:\/\/www.surfbeach.gr\/en\/author\/\">\r\n                                    <img class=\"author-avatar\" src=\"https:\/\/secure.gravatar.com\/avatar\/dc74a361f43389b525edecb02f222059?s=16&#038;d=mm&#038;r=g\" alt=\"john_a\">john_a                                  <\/a>\r\n                                  <i class=\"fa fa-clock-o\"><\/i><a href=\"https:\/\/www.surfbeach.gr\/en\/2026\/05\/03\/\">04\/08\/2017<\/a>\r\n                                  <i class=\"fa fa-commenting-o\"><\/i><a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/08\/04\/santa-maria-beach-bar-place-paros-island\/\">0 Comments<\/a>\r\n                              <\/div>\r\n                          <\/div>\r\n                        <\/article>\r\n                    <\/div>\r\n                                                                                          <!-- ITEM -->\r\n                    <div class=\"col-md-4 col-sm-4\">\r\n                        <article class=\"news-grid-item\">\r\n                          <figure class=\"gradient-overlay slide-right-hover\">\r\n                              <a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/05\/25\/batala-encontro-2017-paros-grecia\/\"><img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2019\/03\/batala-paros-2017-720x520.jpg\" class=\"img-responsive\" alt=\"Batala Encontro 2017 &#8211; Paros Grecia\"><\/a>\r\n                          <\/figure>\r\n                          <div class=\"details\">\r\n                              <h3><a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/05\/25\/batala-encontro-2017-paros-grecia\/\">Batala Encontro 2017 &#8211; Paros Grecia<\/a><\/h3>\r\n                              <p>Save the Dates:\u00a027-6-2017 \u00a0to\u00a0 3-7-2017 (more&hellip;)<\/p>\r\n                              <!-- <a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/05\/25\/batala-encontro-2017-paros-grecia\/\" class=\"button btn_xs btn_blue\">Read More<\/a> -->\r\n                              <div class=\"info\">\r\n                                  <a href=\"https:\/\/www.surfbeach.gr\/en\/author\/\">\r\n                                    <img class=\"author-avatar\" src=\"https:\/\/secure.gravatar.com\/avatar\/dc74a361f43389b525edecb02f222059?s=16&#038;d=mm&#038;r=g\" alt=\"john_a\">john_a                                  <\/a>\r\n                                  <i class=\"fa fa-clock-o\"><\/i><a href=\"https:\/\/www.surfbeach.gr\/en\/2026\/05\/03\/\">25\/05\/2017<\/a>\r\n                                  <i class=\"fa fa-commenting-o\"><\/i><a href=\"https:\/\/www.surfbeach.gr\/en\/2017\/05\/25\/batala-encontro-2017-paros-grecia\/\">0 Comments<\/a>\r\n                              <\/div>\r\n                          <\/div>\r\n                        <\/article>\r\n                    <\/div>\r\n                                                                                          <!-- ITEM -->\r\n                    <div class=\"col-md-4 col-sm-4\">\r\n                        <article class=\"news-grid-item\">\r\n                          <figure class=\"gradient-overlay slide-right-hover\">\r\n                              <a href=\"https:\/\/www.surfbeach.gr\/en\/2015\/03\/23\/capoeira-2015\/\"><img src=\"https:\/\/www.surfbeach.gr\/wp-content\/uploads\/2015\/03\/capoeira-15.jpg\" class=\"img-responsive\" alt=\"3rd FESTIVAL DE CAPOEIRA P\u00c9 N&#8217;AREIA 2015\"><\/a>\r\n                          <\/figure>\r\n                          <div class=\"details\">\r\n                              <h3><a href=\"https:\/\/www.surfbeach.gr\/en\/2015\/03\/23\/capoeira-2015\/\">3rd FESTIVAL DE CAPOEIRA P\u00c9 N&#8217;AREIA 2015<\/a><\/h3>\r\n                              <p>In 2015, from 02 till 05 of July, it will happen the \"III FESTIVAL DE...<\/p>\r\n                              <!-- <a href=\"https:\/\/www.surfbeach.gr\/en\/2015\/03\/23\/capoeira-2015\/\" class=\"button btn_xs btn_blue\">Read More<\/a> -->\r\n                              <div class=\"info\">\r\n                                  <a href=\"https:\/\/www.surfbeach.gr\/en\/author\/\">\r\n                                    <img class=\"author-avatar\" src=\"https:\/\/secure.gravatar.com\/avatar\/dc74a361f43389b525edecb02f222059?s=16&#038;d=mm&#038;r=g\" alt=\"john_a\">john_a                                  <\/a>\r\n                                  <i class=\"fa fa-clock-o\"><\/i><a href=\"https:\/\/www.surfbeach.gr\/en\/2026\/05\/03\/\">23\/03\/2015<\/a>\r\n                                  <i class=\"fa fa-commenting-o\"><\/i><a href=\"https:\/\/www.surfbeach.gr\/en\/2015\/03\/23\/capoeira-2015\/\">0 Comments<\/a>\r\n                              <\/div>\r\n                          <\/div>\r\n                        <\/article>\r\n                    <\/div>\r\n                                                            <\/div>\r\n\r\n          <\/div>\r\n\r\n        [\/vc_column][\/vc_row]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][rev_slider_vc alias=&#8221;rev-slider-restaurant&#8221; el_class=&#8221;color-overlay-slider overlay-opacity-01&#8243;][\/vc_column][\/vc_row][vc_row disable_element=&#8221;yes&#8221;][vc_column][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1531848941252{padding-top: 100px !important;padding-bottom: 100px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_column_text]Santa Maria Surfing Beach Village is situated on a white sand beach with blue crystal waters, the Santa Maria beach in Paros island. It gives you the opportunity to live a unique holiday experience as enjoying the landscaped gardens that decorate the rooms [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v15.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Home - Surfing Beach Paros<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.surfbeach.gr\/en\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Home - Surfing Beach Paros\" \/>\n<meta property=\"og:description\" content=\"[vc_row full_width=&#8221;stretch_row_content_no_spaces&#8221;][vc_column][rev_slider_vc alias=&#8221;rev-slider-restaurant&#8221; el_class=&#8221;color-overlay-slider overlay-opacity-01&#8243;][\/vc_column][\/vc_row][vc_row disable_element=&#8221;yes&#8221;][vc_column][\/vc_column][\/vc_row][vc_row full_width=&#8221;stretch_row&#8221; css=&#8221;.vc_custom_1531848941252{padding-top: 100px !important;padding-bottom: 100px !important;}&#8221;][vc_column width=&#8221;1\/2&#8243;][vc_column_text]Santa Maria Surfing Beach Village is situated on a white sand beach with blue crystal waters, the Santa Maria beach in Paros island. It gives you the opportunity to live a unique holiday experience as enjoying the landscaped gardens that decorate the rooms [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.surfbeach.gr\/en\/\" \/>\n<meta property=\"og:site_name\" content=\"Surfing Beach Paros\" \/>\n<meta property=\"article:modified_time\" content=\"2019-06-06T11:37:04+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\">\n\t<meta name=\"twitter:data1\" content=\"4 minutes\">\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.surfbeach.gr\/#website\",\"url\":\"https:\/\/www.surfbeach.gr\/\",\"name\":\"Surfing Beach Paros\",\"description\":\"Paros accommodation and sport\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":\"https:\/\/www.surfbeach.gr\/?s={search_term_string}\",\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.surfbeach.gr\/en\/#webpage\",\"url\":\"https:\/\/www.surfbeach.gr\/en\/\",\"name\":\"Home - Surfing Beach Paros\",\"isPartOf\":{\"@id\":\"https:\/\/www.surfbeach.gr\/#website\"},\"datePublished\":\"2018-02-17T23:15:11+00:00\",\"dateModified\":\"2019-06-06T11:37:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.surfbeach.gr\/en\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.surfbeach.gr\/en\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.surfbeach.gr\/en\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.surfbeach.gr\/en\/\",\"url\":\"https:\/\/www.surfbeach.gr\/en\/\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"position\":2,\"item\":{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.surfbeach.gr\/en\/\",\"url\":\"https:\/\/www.surfbeach.gr\/en\/\",\"name\":\"Home\"}}]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","_links":{"self":[{"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/pages\/60"}],"collection":[{"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/comments?post=60"}],"version-history":[{"count":23,"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/pages\/60\/revisions"}],"predecessor-version":[{"id":21222,"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/pages\/60\/revisions\/21222"}],"wp:attachment":[{"href":"https:\/\/www.surfbeach.gr\/en\/wp-json\/wp\/v2\/media?parent=60"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}