{"id":7,"date":"2026-06-14T11:40:46","date_gmt":"2026-06-14T11:40:46","guid":{"rendered":"https:\/\/diving.inkamicreativestudio.nl\/?page_id=7"},"modified":"2026-07-16T18:47:05","modified_gmt":"2026-07-16T18:47:05","slug":"home","status":"publish","type":"page","link":"https:\/\/diving.inkamicreativestudio.nl\/","title":{"rendered":"Welcome to ClearWaterDiving"},"content":{"rendered":"\n<script data-wp-block-html=\"js\">\n\/** \n * CLEARWATERDIVING - WEBSITE INTERACTION SCRIPT\n *\/ \nlet homeAudioStarted = false;\n\n\/\/ Dynamically injects the audio infrastructure straight into the browser memory to bypass security overrides\nconst homeAmbientAudio = new Audio(\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/07\/ES_Water-Underwater-Ocean-Respirator-Bubbles-Underwater-Breathing-Diving-Argentina-Epidemic-Sound.mp3\");\nhomeAmbientAudio.loop = true;\n\nfunction triggerGlobalHomeAudio() {\n    if (!homeAudioStarted) {\n        homeAmbientAudio.play().then(() => {\n            homeAudioStarted = true;\n        }).catch(() => {});\n    }\n}\n\n\/\/ === 1. BUTTON: SMOOTH SCROLLING AT THE TOP ==\nconst descentBtn = document.getElementById('cwd-descent-initiator');\nconst strataContainer = document.getElementById('cwd-strata');\n\nif (descentBtn && strataContainer) {\n    descentBtn.addEventListener('click', function(event) {\n        event.preventDefault();\n        \n        \/\/ Direct execution of the memory audio engine upon physical button click\n        triggerGlobalHomeAudio();\n\n        \/\/ Triggers the water transit effect\n        document.body.classList.add('cwd-immersion-active');\n\n        \/\/ Scrolls the window down to the text content\n        strataContainer.scrollIntoView({\n            behavior: 'smooth',\n            block: 'start'\n        });\n\n        \/\/ Removes the transit effect after 1 second\n        setTimeout(() => {\n            document.body.classList.remove('cwd-immersion-active');\n        }, 1000); \n    });\n}\n\n\/\/ === 2. SCROLL ACTION: DEPTH & COLOR CALCULATOR ===\nwindow.addEventListener('scroll', function() {\n    const depthCounter = document.getElementById('depth-counter');\n    const depthZone = document.getElementById('depth-zone');\n    const strataWrapper = document.getElementById('cwd-strata');\n\n    \/\/ audio Engine: Back-up stream controller triggering on active viewport movement\n    triggerGlobalHomeAudio();\n\n    \/\/ Target lists: Main text boxes (left) and Sidebar boxes (right)\n    const mainLogTexts = document.querySelectorAll('.cwd-primary-log h1, .cwd-primary-log h2, .cwd-primary-log h3, .cwd-primary-log h4, .cwd-primary-log p, .cwd-primary-log li, .cwd-primary-log figcaption, .cwd-primary-log a');\n    const sidebarLabels = document.querySelectorAll('.cwd-sidebar h4, .cwd-sidebar p, .cwd-sidebar li');\n\n    if (depthCounter && depthZone && strataWrapper) {\n        let scrollPosition = window.scrollY;\n        let totalPageHeight = document.documentElement.scrollHeight - window.innerHeight;\n        \n        let calculatedDepth = 0;\n\n        \/\/ === 3. DEPTH SPEED CONTROLLER ===\n        let scrollDivisor =  (this.window. innerWidth < 992) ? 50 : 35; \n\n        if (scrollPosition > 50) {\n            calculatedDepth = -5 + Math.min(Math.floor(scrollPosition \/ scrollDivisor), 50); \n            \n            \/\/ Keeps the meter strictly locked between 0 and 45 meters\n            if (calculatedDepth < 0) calculatedDepth = 0;\n            if (calculatedDepth > 45) calculatedDepth = 45;\n        } else {\n            calculatedDepth = 0;\n        }\n\n        \/\/ Displays the meters on your screen\n        depthCounter.innerText = calculatedDepth + \" METERS\";\n\n        \/\/ === 4. WATER BACKGROUND DARKNESS ===\n        let Dynamiclightness = Math.max(55 - (calculatedDepth * 1.12), 4.5);\n        strataWrapper.style.backgroundColor = `hsla(185, 100%, ${Dynamiclightness}%, 1)`;\n\n        \/\/ === 5. SIDEBAR WIDGET COLORS ===\n        let dynamicTextLightness = Math.max(100 - (calculatedDepth * 1.44), 35);\n        let dynamicTextHue = Math.min(185 + (calculatedDepth * 0.33), 200);\n        let dynamicTargetColor = `hsla(${dynamicTextHue}, 100%, ${dynamicTextLightness}%, 1)`;\n        \n        mainLogTexts.forEach(el => {\n            el.style.color = dynamicTargetColor;\n            el.style.transition = \"color 0.2s ease\";\n        });\n\n        depthZone.style.color = dynamicTargetColor;\n        depthZone.style.transition = \"color 0.2s ease\";\n\n        sidebarLabels.forEach(el => {\n            el.style.color = dynamicTargetColor;\n            el.style.transition = \"color 0.2s ease\";\n        });\n\n        \/\/ === 6. THE THREE UNDERWATER ZONES ===\n        if (calculatedDepth < 12) {\n            \/\/ --- ZONE A: SUNLIGHT ZONE (0 to 11 meters) ---\n            depthZone.innerText = \"Sunlight Zone (Bright Reef)\";\n            depthCounter.style.color = \"#00A8B5\"; \n            depthCounter.style.textShadow = \"none\";\n\n        } else if (calculatedDepth >= 12 && calculatedDepth < 30) {\n            \/\/ --- ZONE B: TWILIGHT ZONE (12 to 29 meters) ---\n            depthZone.innerText = \"Twilight Zone (Deep Blue)\";\n            depthCounter.style.color = \"#00A8B5\";\n            depthCounter.style.textShadow = \"none\";  \n            \n         } else {\n            \/\/ --- ZONE C: MIDNIGHT ZONE \/ ABYSS (30 to 45 meters) ---\n            depthZone.innerText = \"Midnight Zone (The Deep Abyss)\";\n            \n            \/\/ SPECIAL EFFECT: Numbers  Darkblue with a neon-turquoise glow behind them!\n            depthCounter.style.color = \"#001122\"; \n            depthCounter.style.textShadow = \"0 0 8px #00A8B5, 0 0 20px #00A8B5, 0 0 30px rgba(0, 168, 181, 0.6)\"; \n           \n            \/\/ All articles and paragraphs turn neon-turquoise with a soft aura glow\n            mainLogTexts.forEach(el => {\n                el.style.color = \"#00A8B5\"; \n                el.style.textShadow = \"0 0 8px rgba(0, 168, 181, 0.5)\"; \n                el.style.transition = \"all 0.6s ease\";\n            }); \n        }\n    }\n});\n<\/script>\n\n<!-- CWD-Gateway : Primary Visual entry  -->\n<section class=\"cwd-gateway\">\n    <div class=\"cwd-gateway_fluid-shield\">\n        <div class=\"cwd-gateway_content-core\">\n            <h1>Welcome to ClearWaterDiving<\/h1>\n            <p class=\"cwd-gateway_lead-phrase\">Breathe in, breathe out. The world above the surface fades away, making room for a serene, weightless realm full of vibrant colors and mystery.<\/p>\n            <a href=\"#cwd-strata\" class=\"cwd-action-trigger\" id=\"cwd-descent-initiator\">Explore Now<\/a>\n        <\/div>\n    <\/div>\n<\/section>\n\n<!-- CWD-strata: dynamic environment -->\n <div id=\"cwd-strata\" class=\"cwd-strata-wrapper\">\n    <div class=\"cwd-strata-oceanic-grid\">\n\n        <!--CWD-primary-log: Main content container (diving log book)-->\n        <main class=\"cwd-primary-log\">\n            <!-- CWD Section 1 - Intro-->\n            <article class=\"cwd-log-entry\">\n                <h2>My passion for the Ocean<\/h2>\n                <p class=\"cwd-log-entry_lead\">Welcome to ClearWaterDiving, a personal platform dedicated to my favorite hobby: scuba diving. Whether you are considering getting your PADI Open Water certificate or have already logged hundreds of dives, You will find inspiration, practical tips, and independent advice here.<\/p>\n                <p>Diving is more than just a hobby; it&#8217;s a unique way of traveling and discovering a completely different ecosystem. Dive in with me and unlock the secrets of the underwater world!<\/p>\n            <\/article>\n\n            <!-- CWD Section 2 - Media Showcase-->\n             <section class=\"cwd-media-card\">\n                <h3>Visual log: captured Underwater<\/h3>\n                <div class=\"cwd-media-showcase_grid\">\n\n                    <!-- CWD Image frame -->\n                      <figure class=\"cwd-media-card-element\">\n                        <a href=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Jason_deCaires_Taylor_sculpture-02634-1024x548-1.jpg\" class=\"cwd-lightbox-trigger\" title=\"The Rubicon Exhibit - Full resolution \">\n                            <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Jason_deCaires_Taylor_sculpture-02634-1024x548-1.jpg\" alt=\"Submerged stone human statues on the ocean floor at an underwater museum with a scuba diver swimming in the background\">\n                        <\/a>\n                        <figcaption class=\"cwd-media-card_caption\">The Rubicon Exhibit &#8211; Submerged Architectural Art Matrix<\/figcaption>\n                    <\/figure>\n\n                    <!-- CWD Video frame -->\n                    <figure class=\"cwd-media-card-element\">\n                        <div class=\"cwd-video-player-container\">\n                            <iframe loading=\"lazy\" width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/czUmbwr3KDw?si=-dhXqYWAm5ZT_f-8\" title=\"YouTube video player\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen=\"\"><\/iframe>\n                        <\/div>\n                        <figcaption class=\"cwd-media-card_caption\">Video Survey: Caribbean Marine Infrastructure &amp; Biodiversity &#8211; Bonaire<\/figcaption>\n                    <\/figure>\n\n                <\/div>\n             <\/section>\n\n             <!-- CWD Section 3 - Hobby pillars -->\n            <section class=\"cwd-pillars\" aria-label=\"Core exploration Pillars\">\n                <h3>Core exploration Pillars<\/h3>\n                <div class=\"cwd-pillars_grid\">\n                    \n                    <!-- Pillar Card 1: Gear Infrastructure  -->\n                    <article class=\"cwd-pillar-card\">\n                        <a href=\"\/scuba-gear-contact\/\" class=\"cwd-pillar-block-link\" aria-label=\"View Gear Infrastructure: Analyses of life support systems, from thermal drysuits to breathing regulators.\">\n \n                            <h4>Gear Infrastructure<\/h4>\n                            <p>Analyses of life support systems, from thermal drysuits to breathing regulators.<\/p>\n                            <span class=\"cwd-pillar-text-anchor\" aria-hidden=\"true\">View Gear<\/span>\n                        <\/a>\n                    <\/article>\n\n                    <!-- Pillar Card 2: Global Stratum  -->\n                    <article class=\"cwd-pillar-card\">\n                        <a href=\"https:\/\/diving.inkamicreativestudio.nl\/?page_id=10\" class=\"cwd-pillar-block-link\" aria-label=\"Explore Global Stratum: Mapping unique special dive locations, shifting tectonic cracks, and historical shipwrecks.\">\n                            <h4>Global Stratum<\/h4>\n                            <p>Mapping unique dive locations, shifting tectonic cracks, and historical shipwrecks.<\/p>\n                            <span class=\"cwd-pillar-text-anchor\" aria-hidden=\"true\">Explore Spots<\/span>\n                        <\/a>\n                    <\/article>\n                <\/div>  \n             <\/section>\n        <\/main>\n        <!-- CWD-SIDEBAR: Widgets Enhance information-->\n        <aside class=\"cwd-sidebar\">\n\n            <!-- CWD Widget 1: Dynamic Depth Gauge-->\n            <div class=\"cwd-widget cwd-widget-depth-gauge\">\n                <h4>Current Depth<\/h4>\n                <div id=\"depth-counter\" class=\"cwd-depth-indicator\">0 METERS<\/div>\n                <p id=\"depth-zone\" class=\"cwd-depth-zone-label\">Sunlight Zone<\/p>\n            <\/div>\n  <!-- NATIVE WIDGET ZONE 2: Diver Log Metrics (Compact Stats Frame) -->\n    <div id='2' class='widgets_on_page wop_tiny1  wop_small1  wop_medium1  wop_large1  wop_wide1'>\n\t\t\t<ul><li id=\"block-23\" class=\"widget widget_block\"><h3>Diver Log Metrics<\/h3>\n<ul class=\"cwd-stats-list\">\n    <li><strong>Total Dives:<\/strong> 34<\/li>\n    <li><strong>Max Depth:<\/strong> 45m<\/li>\n    <li><strong>Average Dive Time:<\/strong> 53 min<\/li>\n<\/ul><\/li><\/ul><\/div><!-- widgets_on_page -->\n\n <!-- NATIVE WIDGET ZONE 1: Smart Slider 3 (Roterende Foto) -->\n    <div id='1' class='widgets_on_page wop_tiny1  wop_small1  wop_medium1  wop_large1  wop_wide1'>\n\t\t\t<ul><li id=\"block-22\" class=\"widget widget_block\"><div class=\"n2-section-smartslider fitvidsignore  n2_clear\" data-ssid=\"2\"><div id=\"n2-ss-2-align\" class=\"n2-ss-align\"><div class=\"n2-padding\"><div id=\"n2-ss-2\" data-creator=\"Smart Slider 3\" data-responsive=\"auto\" class=\"n2-ss-slider n2-ow n2-has-hover n2notransition  \">\n        <div class=\"n2-ss-slider-1 n2_ss__touch_element n2-ow\">\n            <div class=\"n2-ss-slider-2 n2-ow\">\n                                                <div class=\"n2-ss-slider-3 n2-ow\">\n\n                    <div class=\"n2-ss-slide-backgrounds n2-ow-all\"><div class=\"n2-ss-slide-background\" data-public-id=\"1\" data-mode=\"fill\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/HMS_Stubborn_Malta.jpg\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"2\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Great_Blue_Hole_Belize_Top.jpg\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"3\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/San_Francisco_Maru.jpg\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"4\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Silfra_Fissure_Iceland.jpg\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"5\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Shipwreck_Sharm_el_Sheikh_SS_Thistlegorm.png\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"6\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/ZERO_kimbe_Bay.png\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"7\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Gruner-See-Austria.jpg\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"8\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/SALT_Pier_bonaire-1-1.png\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><div class=\"n2-ss-slide-background\" data-public-id=\"9\" data-mode=\"fill\" aria-hidden=\"true\"><div class=\"n2-ss-slide-background-image\" data-blur=\"0\" data-opacity=\"100\" data-x=\"50\" data-y=\"50\" data-alt=\"\" data-title=\"\"><picture class=\"skip-lazy\" data-skip-lazy=\"1\"><img decoding=\"async\" src=\"\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Akitsushima_Seaplane_tender.webp\" alt=\"\" title=\"\" loading=\"lazy\" class=\"skip-lazy\" data-skip-lazy=\"1\"><\/picture><\/div><div data-color=\"RGBA(255,255,255,0)\" style=\"background-color: RGBA(255,255,255,0);\" class=\"n2-ss-slide-background-color\"><\/div><\/div><\/div>                    <div class=\"n2-ss-slider-4 n2-ow\">\n                        <svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 250 180\" data-related-device=\"desktopPortrait\" class=\"n2-ow n2-ss-preserve-size n2-ss-preserve-size--slider n2-ss-slide-limiter\"><\/svg><div data-first=\"1\" data-slide-duration=\"0\" data-id=\"3\" data-slide-public-id=\"1\" data-title=\"HMS_Stubborn_Malta\" class=\"n2-ss-slide n2-ow  n2-ss-slide-3\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">HMS_Stubborn_Malta<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-M6qi9GyLJ6vR\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"4\" data-slide-public-id=\"2\" aria-hidden=\"true\" data-title=\"Great_Blue_Hole_Belize_Top\" class=\"n2-ss-slide n2-ow  n2-ss-slide-4\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">Great_Blue_Hole_Belize_Top<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-ui3t0GHe2QlS\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"5\" data-slide-public-id=\"3\" aria-hidden=\"true\" data-title=\"San_Francisco_Maru\" class=\"n2-ss-slide n2-ow  n2-ss-slide-5\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">San_Francisco_Maru<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-tvK5BBPTh6S6\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"6\" data-slide-public-id=\"4\" aria-hidden=\"true\" data-title=\"Silfra_Fissure_Iceland\" class=\"n2-ss-slide n2-ow  n2-ss-slide-6\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">Silfra_Fissure_Iceland<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-RslHDPUkJT02\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"7\" data-slide-public-id=\"5\" aria-hidden=\"true\" data-title=\"Shipwreck_Sharm_el_Sheikh_SS_Thistlegorm\" class=\"n2-ss-slide n2-ow  n2-ss-slide-7\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">Shipwreck_Sharm_el_Sheikh_SS_Thistlegorm<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-B1GAQutJzfUC\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"8\" data-slide-public-id=\"6\" aria-hidden=\"true\" data-title=\"ZERO_kimbe_Bay\" class=\"n2-ss-slide n2-ow  n2-ss-slide-8\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">ZERO_kimbe_Bay<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-Q5xfGZfV6S64\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"9\" data-slide-public-id=\"7\" aria-hidden=\"true\" data-title=\"Gru\u0308ner-See-Austria\" class=\"n2-ss-slide n2-ow  n2-ss-slide-9\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">Gru\u0308ner-See-Austria<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-yLpJ9MlIy8gq\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"10\" data-slide-public-id=\"8\" aria-hidden=\"true\" data-title=\"SALT_Pier_bonaire\" class=\"n2-ss-slide n2-ow  n2-ss-slide-10\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">SALT_Pier_bonaire<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-S386GomEoVy0\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div><div data-slide-duration=\"0\" data-id=\"11\" data-slide-public-id=\"9\" aria-hidden=\"true\" data-title=\"Akitsushima_Seaplane_tender\" class=\"n2-ss-slide n2-ow  n2-ss-slide-11\"><div role=\"note\" class=\"n2-ss-slide--focus\" tabindex=\"-1\">Akitsushima_Seaplane_tender<\/div><div class=\"n2-ss-layers-container n2-ss-slide-limiter n2-ow\"><div class=\"n2-ss-layer n2-ow n-uc-2rncAwwYLMsN\" data-sstype=\"slide\" data-pm=\"default\"><\/div><\/div><\/div>                    <\/div>\n\n                                    <\/div>\n            <\/div>\n        <\/div>\n        <\/div><ss3-loader><\/ss3-loader><\/div><\/div><div class=\"n2_clear\"><\/div><\/div><\/li><\/ul><\/div><!-- widgets_on_page -->\n\n  \n        <\/aside>\n    <\/div>\n <\/div>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Welcome to ClearWaterDiving Breathe in, breathe out. The world above the surface fades away, making room for a serene, weightless realm full of vibrant colors and mystery. Explore Now My passion for the Ocean Welcome to ClearWaterDiving, a personal platform dedicated to my favorite hobby: scuba diving. Whether you are considering getting your PADI Open [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"ocean_front_end_style_editor":"no","ocean_post_layout":"full-screen","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"off","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"on","ocean_disable_heading":"on","ocean_post_title":"love ","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","footnotes":""},"class_list":["post-7","page","type-page","status-publish","hentry","entry"],"_links":{"self":[{"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages\/7","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7"}],"version-history":[{"count":64,"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages\/7\/revisions"}],"predecessor-version":[{"id":618,"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages\/7\/revisions\/618"}],"wp:attachment":[{"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}