{"id":10,"date":"2026-06-14T11:42:01","date_gmt":"2026-06-14T11:42:01","guid":{"rendered":"https:\/\/diving.inkamicreativestudio.nl\/?page_id=10"},"modified":"2026-07-16T18:32:43","modified_gmt":"2026-07-16T18:32:43","slug":"diving-spots","status":"publish","type":"page","link":"https:\/\/diving.inkamicreativestudio.nl\/?page_id=10","title":{"rendered":"Diving Spots"},"content":{"rendered":"\n<script data-wp-block-html=\"js\">\n\/** \n* ClearWaterDiving - DIVING SPOTS\n*\/ \n\n\/\/Global SCOPE LAYOUT ENGINE\nlet globalTotalPageHeight = 0;\nfunction recalculateDiveDimensions() {\n    globalTotalPageHeight = document.documentElement.scrollHeight - window.innerHeight;\n}\nwindow.addEventListener('load', recalculateDiveDimensions);\nwindow.addEventListener('resize', recalculateDiveDimensions);\n\n\/\/ Scroll action Depth & Telemerty \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    const mainContentArea = document.getElementById('cwd-main-content');\n   \n\n    \/\/ Scan all textual logs and sidebar indicators to apply live blending\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 h3, .cwd-sidebar p, .cwd-sidebar li'); \n    \n    if (depthCounter && depthZone && strataWrapper) {\n        let scrollPosition = window.scrollY;\n\n        if (globalTotalPageHeight <= 0) { \n            recalculateDiveDimensions(); \n        }\n        let calculatedDepth = 0;\n\n\n        if (scrollPosition > 30 && globalTotalPageHeight > 0) {\n            calculatedDepth = Math.min(Math.floor((scrollPosition \/ globalTotalPageHeight) * 45), 45);\n        } else {\n            calculatedDepth = 0;\n        }\n\n        \/\/ Display the depth on the screen\n        depthCounter.innerText = calculatedDepth + \" METERS\";\n\n        \/\/ Adjust water background darkness based on depth\n        let dynamicWaterLightness = Math.max(50 - (calculatedDepth * 1.12), 4.5);\n        strataWrapper.style.backgroundColor = `hsla(185, 100%, ${dynamicWaterLightness}%, 1)`;\n\n        let colorClampDepth = Math.min(calculatedDepth, 35);\n\n        let dynamiclightness = Math.max(100 - (colorClampDepth * 1.44), 35);\n        let dynamicTextHue = Math.min(185 + (colorClampDepth * 0.33), 200);\n        let dynamicTargetColor = `hsla(${dynamicTextHue}, 100%, ${dynamiclightness}%, 1)`;\n\n        \/\/ dynamic glow\n        let currentGlowOpacity = colorClampDepth >= 30 ? Math.min((colorClampDepth - 30) * 0.05, 0.5) : 0;\n        let dynamicGlow = colorClampDepth >= 30 ? `0 0 8px rgba(0, 168, 181, ${currentGlowOpacity})` : 'none';\n\n        mainLogTexts.forEach(el => {\n            el.style.color = dynamicTargetColor;\n            el.style.textShadow = dynamicGlow;\n            el.style.transition = \"color 0.2s ease, text-shadow 0.2s ease\";\n        }); \n        depthZone.style.color = dynamicTargetColor;\n        depthZone.style.textShadow = dynamicGlow;\n        depthZone.style.transition = \"color 0.2s ease, text-shadow 0.2s ease\";\n\n        sidebarLabels.forEach(el => {\n            el.style.color = dynamicTargetColor;\n            el.style.textShadow = dynamicGlow;\n            el.style.transition = \"color 0.2s ease, text-shadow 0.2s ease\";\n        });\n\n        \/\/ Integrated telemetry matrix controller\n        const isMobileScreen = window.innerWidth <= 992;\n        const spotCards = document.querySelectorAll('.cwd-media-card-element');\n\n        spotCards.forEach((card, index) => {\n            let minDepth = parseInt(card.getAttribute('data-min-depth'));\n            let maxDepth = parseInt(card.getAttribute('data-max-depth'));\n            let SiteIdNumber = String(index + 1).padStart(2, '0');\n            let correspondingPing = document.getElementById(`ping-site${SiteIdNumber}`);\n            let bgImageNode = card.querySelector('.cwd-spot-bg-image');\n\n            let mobileBuffer = isMobileScreen ? 3 : 0;\n            let isCurrentlyActive = (calculatedDepth >= (minDepth - mobileBuffer) && calculatedDepth <= (maxDepth + mobileBuffer));\n\n            if (isCurrentlyActive) {\n                card.style.borderColor = \"rgba(0, 168, 181, 0.6)\";\n                card.style.boxShadow = \"0 15px 35px rgba(0, 168, 181, 0.2)\";\n                card.style.transform = isMobileScreen ? \"translateY(-3px)\" : \"translateY(-5px)\";\n                card.style.opacity = \"1\";\n\n                if (calculatedDepth >= 30 && bgImageNode) {\n                    bgImageNode.style.filter = \"none\";\n                } else if (bgImageNode) {\n                    bgImageNode.style.filter = \"none\";\n                }\n\n                \/\/ trigger ping effect\n                if (correspondingPing) {\n                    correspondingPing.style.backgroundColor = \"#00A8B5\";\n                    correspondingPing.style.boxShadow = \"0 0 12px #00A8B5, 0 0 25px #00A8B5\";\n                    correspondingPing.style.transform = \"scale(1.3)\";\n                }\n            } else {\n                \/\/ Standby layer: card and map markers dim into background\n                card.style.borderColor = \"rgba(255, 255, 255, 0.05)\";\n                card.style.boxShadow = \"none\";\n                card.style.transform = \"translateY(0)\";\n                card.style.opacity = isMobileScreen ? \"0.45\" : \"0.35\";\n\n                if (bgImageNode) {\n                    if (calculatedDepth >= 30) {\n                        let depthDiff = Math.abs(calculatedDepth - ((minDepth + maxDepth) \/ 2));\n                        let blurfactor = isMobileScreen ? Math.min(depthDiff * 0.25, 4) : Math.min((calculatedDepth - 30) * 0.13, 3);\n                        bgImageNode.style.filter = `blur(${blurfactor}px)`;\n                    } else {\n                        bgImageNode.style.filter = \"none\";\n                    }\n                }\n\n                if (correspondingPing) {\n                    correspondingPing.style.backgroundColor = \"rgba(0, 168, 181, 0.25)\";\n                    correspondingPing.style.boxShadow = \"none\";\n                    correspondingPing.style.transform = \"scale(1)\";\n                }\n            }\n            card.style.transition = \"all 0.4s ease\";\n            if (bgImageNode) bgImageNode.style.transition = \"filter 0.3s ease\";\n            if (correspondingPing) correspondingPing.style.transition = \"all 0.4s ease\";\n        });\n        \n        \/\/ 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        } else if (calculatedDepth >= 12 && calculatedDepth < 30) {\n            \/\/ ZONE B: TWILIGHT ZONE (12 to 29 meters)\n            depthZone.innerText = \"Twilight Zone (Dim Reef)\";\n            depthCounter.style.color = \"#0055A5\"; \n            depthCounter.style.textShadow = \"0 0 6px rgba(0, 168, 181, 0.4)\";\n        } else if (calculatedDepth >= 30) {\n            \/\/ ZONE C: MIDNIGHT ZONE (30 to 45 meters)\n            depthZone.innerText = \"Midnight Zone (Deep Abyss)\";\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                \n    }\n});\n\nlet activeStartTrigger = setInterval(function() {\n    window.dispatchEvent(new Event('scroll'));\n    if (document.getElementById('depth-counter')) {\n        clearInterval(activeStartTrigger);\n    }\n}, 50);\n\nwindow.addEventListener('load', function() {\n    window.dispatchEvent(new Event('scroll'));\n});\n<\/script>\n\n<!-- CWD-STRATA : ARCHITECTURAL TRANSIT WRAPPER-->\n        <div id=\"cwd-strata\" class=\"cwd-strata-wrapper\">\n            <div class=\"cwd-strata-oceanic-grid\" role=\"document\">\n\n                <main class=\"cwd-primary-log\" id=\"cwd-main-content\">\n                    <!-- CWD Section 1 - Intro-->\n                    <article class=\"cwd-log-entry\" aria-labelledby=\"page-title\">\n                        <h1 id=\"page-title\">Global Stratum: Dive site Logbook<\/h1>\n                        <p class=\"cwd-log-entry_lead\">Exploring the world&#8217;s most beautiful and unique underwater destinations.\n                            As passionate scuba divers, we look beyond standard beaches to discover environments that tell a true story, from unique volcanic geological formations to vibrant marine ecosystems and historic wrecks.<\/p>\n                        <p>Below is the active register of my favorite global dive sites, organized by depth profiles,  Watch your live instruments in the sidebar; each survey matrix will Illuminate as you decend to its operational depth.<\/p>\n                    <\/article>\n                    \n                    <!--Environmental specification layout-->\n                    <section class=\"cwd-media-card\" aria-label=\"Active Logbook Profiles: Global Sites\">\n                        <h2>Active Logbook Profiles: Global Sites<\/h2>\n                        <div class=\"cwd-media-showcase_grid\" role=\"list\">\n\n                            <!--DEPTH SECTOR 1: The Reef DECK (0M - 15M) \/\/ SUNLIGHT ZONE-->\n\n                            <!-- CWD Specification Node: Site.01 | The Salt Pier Matrix (Bonaire)-->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-1-title\" data-min-depth=\"0\" data-max-depth=\"15\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/SALT_Pier_bonaire-1-1.png\" alt=\"Scuba divers exploring the massive vertical iron pillars of Salt Pier covered in coral\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-1-title\">SITE.01 | <br>The Salt Pier Matrix <\/h3>\n                                <p><strong>Location:<\/strong> Kralendijk, Bonaire, Caribbean Netherlands<\/p>\n                                <p>A famous shore dive site where giant industrial pillars drop straight into a healthy coral reef ecosystem. Massive schools of fish, barracudas, and sea turtles gather under the structure, making it perfect for underwater photography and marine life observation.<\/p>\n                                \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 01\">\n                                    <li><strong>Dive Profile:<\/strong> Coastal Pier &amp; Coral Reef<\/li>\n                                    <li><strong>Average Depth:<\/strong> 5 &#8211; 15 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 20 &#8211; 30 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 26 &#8211; 29\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Beginner to Advanced<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- CWD Specification Node: Site.02 | Gr\u00fcner See Meadow (Austria) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-2-title\" data-min-depth=\"0\" data-max-depth=\"15\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Gruner-See-Austria.jpg\" alt=\"Submerged green mountain park with crystal clear water\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-2-title\">SITE.02 | <br>Gr\u00fcner See Meadow<\/h3>\n                                <p><strong>Location:<\/strong> Trag\u00f6\u00df, Styria, Austria<\/p>\n                                <p>A surreal seasonal phenomenon where melting snow floods a mountain park with crystal-clear gletsjerwater. Divers swim over fully intact park benches, footbridges, and green fields with more than 30 meters of visibility.<\/p>\n\n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 02\">\n                                    <li><strong>Dive Profile:<\/strong> Freshwater Lake Dive<\/li>\n                                    <li><strong>Average Depth:<\/strong> 8 &#8211; 12 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 30 &#8211; 40 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 4 &#8211; 6\u00b0C (requires drysuit)<\/li>\n                                    <li><strong>Difficulty:<\/strong> Intermediate<\/li>\n                                <\/ul>\n                            <\/article>\n\n\n                            <!-- CWD Specification Node: Site.03 | ZERO Fighter (Micronesia) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-3-title\" data-min-depth=\"0\" data-max-depth=\"15\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/ZERO_kimbe_Bay.png\" alt=\"Intact WWII Zero fighter plane wreckage on the shallow sandy bottom of a tropical lagoon\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-3-title\">SITE.03 | <br>ZERO Fighter<\/h3>\n                                <p><strong>Location:<\/strong> Kimbe Bay, New Britain, Micronesia<\/p>\n                                <p>A beautifully preserved Japanese Mitsubishi A6M Zero fighter plane wreck resting on the shallow sandbank. Discovered by a local builder, this war relic is heavily encrusted with soft corals and home to a variety of marine life.<\/p>\n\n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 03\">\n                                    <li><strong>Dive Profile:<\/strong> Shallow War Relic<\/li>\n                                    <li><strong>Average Depth:<\/strong> 0 &#8211; 15 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 25 &#8211; 30 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 28 &#8211; 30\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Beginner to Intermediate<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- CWD Specification Node: Site.04 | The Rubicon Exhibit (Canary Islands) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-4-title\" data-min-depth=\"15\" data-max-depth=\"30\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/The-Rubicon-Exhibit.png\" alt=\"Underwater museum with life-sized stone statues on the ocean floor\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-4-title\">SITE.04 | <br>The Rubicon Exhibit<\/h3>\n                                <p><strong>Location:<\/strong> Museo Atl\u00e1ntico, Lanzarote, Canary Islands, Spain<\/p>\n                                <p>A beautiful underwater museum featuring life-sized stone statues fixed on the ocean floor. This unique exhibit functions as an artificial reef, designed to protect the marine environment and stimulate local biodiversity.<\/p>\n\n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 04\">\n                                    <li><strong>Dive Profile:<\/strong>Underwater Art Reef<\/li>\n                                    <li><strong>Average Depth:<\/strong> 12 &#8211; 15 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 15 &#8211; 25 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 18 &#8211; 22\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Beginner to Intermediate<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- DEPTH SECTOR 2: The Archaeological DECK (15M - 30M) \/\/ TWILIGHT ZONE-->\n\n\n                            <!-- CWD Specification Node: Site.05 | The motorcycles of SS Thistlegorm (Egypt) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-5-title\" data-min-depth=\"15\" data-max-depth=\"30\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Shipwreck_Sharm_el_Sheikh_SS_Thistlegorm.png\" alt=\"Scuba divers navigating through the dark cargo hold of a shipwreck\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-5-title\">SITE.05 | <br>Cargo of SS Thistlegorm<\/h3>\n                                <p><strong>Location:<\/strong> Gulf of Suez, Sharm El Sheikh, Red Sea, Egypt<\/p>\n                                <p>A legendary British army freighter sunk by German bombers in 1941. Divers can penetrate the dark cargo holds to explore rows of intact BSA motorcycles, Morris trucks, and Bren Gun armored carriers.<\/p>\n                                \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 05\"> \n                                    <li><strong>Dive Profile:<\/strong> Historic Military Wreck <\/li>\n                                    <li><strong>Average Depth:<\/strong> 15 &#8211; 30 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 20 &#8211; 30 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 22 &#8211; 28\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong>Advanced<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- CWD Specification Node: Site.06 | Akitsushima Seaplane tender crane (Philippines) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-6-title\" data-min-depth=\"15\" data-max-depth=\"30\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Akitsushima_Seaplane_tender.webp\" alt=\"Tropical ocean surface with historical warships hidden below\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-6-title\">SITE.06 | <br>Akitsushima Seaplane Tender Crane<\/h3>\n                                <p><strong>Location:<\/strong> Coron Bay, Palawan, Philippines<\/p>\n                                <p>An impressive Japanese warship struck down during an intense US air raid in 1944. The Ship rests on its side, featuring a massive mechanical crane intact on the sandy seabed that once lifted large military seaplanes.<\/p>\n                                \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 06\">\n                                    <li><strong>Dive Profile:<\/strong> Technical Naval Wreck<\/li>\n                                    <li><strong>Average Depth:<\/strong> 22 &#8211; 36 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 10 &#8211; 15 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 27 &#8211; 30\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Advanced<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!--DEPTH SECTOR 3: THE Abyssal FRONTIER (30 - 45M) \/\/ MIDNIGHT ZONE-->\n\n                            <!-- CWD Specification Node: Site.07 | San Francisco Maru (Japan) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-7-title\" data-min-depth=\"30\" data-max-depth=\"45\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/San_Francisco_Maru.jpg\" alt=\"Submerged tank on the San Francisco Maru shipwreck\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-7-title\">SITE.07 | <br>San Francisco Tanks<\/h3>\n                                <p><strong>Location:<\/strong> Chuuk Lagoon, Caroline Islands, Micronesia<\/p>\n                                <p>Known as the &#8216;Million Dollar Wreck&#8217;, this ghost ship houses an extraordinary collection of intact WWII Japanese tanks, trucks, and artillery. The wreck is a favorite for technical divers seeking to explore the eerie remains of a sunken fleet.<\/p>\n                                \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 07\">\n                                    <li><strong>Dive Profile:<\/strong> Deep Armored Wreck<\/li>\n                                    <li><strong>Average Depth:<\/strong> 30 &#8211; 45 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 15 &#8211; 25 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 27 &#8211; 30\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Expert<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- CWD Specification Node: Site.08 | Silfra Fissure (Iceland) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-8-title\" data-min-depth=\"30\" data-max-depth=\"45\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Silfra_Fissure_Iceland.jpg\" alt=\"Scuba diver swimming through the crystal clear waters of a tectonic fissure\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-8-title\">SITE.08 | <br>Silfra Fissure<\/h3>\n                                <p><strong>Location:<\/strong> Thingvellir National Park, Iceland<\/p>\n                                <p>An incredible fresh-water dive directly inside a dynamic geological crack between the North American and Eurasian tectonic plates. The crystal-clear waters offer unparalleled visibility, making it a unique experience for divers of all levels.<\/p>\n                                \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 08\">\n                                    <li><strong>Dive Profile:<\/strong> Continental Rift Dive<\/li>\n                                    <li><strong>Average Depth:<\/strong> 10 &#8211; 42 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 100+ meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 2 &#8211; 4\u00b0C (requires drysuit)<\/li>\n                                    <li><strong>Difficulty:<\/strong> Intermediate to Advanced<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- CWD Specification Node: Site.09 | The Great Blue Hole (Belize) -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-9-title\" data-min-depth=\"30\" data-max-depth=\"45\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/Great_Blue_Hole_Belize_Top.jpg\" alt=\"Massive dark blue ocean sinkhole viewed from above the reef\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-9-title\">SITE.09 | <br>Blue Hole Stalactites<\/h3>\n                                <p><strong>Location:<\/strong> Lighthouse Reef, Ambergris Caye, Belize<\/p>\n                                <p>A giant marine sinkhole, the Great Blue Hole is a world-renowned dive site known for its deep blue waters and unique geological formations. Divers can explore the vertical walls and encounter a variety of marine life.<\/p>\n                                \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 09\">\n                                    <li><strong>Dive Profile:<\/strong> Deep Sinkhole Dive<\/li>\n                                    <li><strong>Average Depth:<\/strong> 30 &#8211; 45 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 15 &#8211; 25 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 24 &#8211; 26\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Advanced to Expert<\/li>\n                                <\/ul>\n                            <\/article>\n\n                            <!-- CWD Specification Node: Site.10 | HMS Stubborn Ghost Submarine -->\n                            <article class=\"cwd-media-card-element\" aria-labelledby=\"spot-10-title\" data-min-depth=\"30\" data-max-depth=\"45\">\n                                <div class=\"cwd-card-media-vault\">\n                                    <img decoding=\"async\" src=\"https:\/\/diving.inkamicreativestudio.nl\/wp-content\/uploads\/2026\/06\/HMS_Stubborn_Malta.jpg\" alt=\"Submerged armed submarine wreckage on the deep blue sand floor\" class=\"cwd-spot-bg-image\">\n                                    <div class=\"cwd-card-overlay\" aria-hidden=\"true\"><\/div>\n                                <\/div>\n                                <h3 id=\"spot-10-title\">SITE.10 | <br>HMS Stubborn Ghost Submarine<\/h3>\n                                <p><strong>Location:<\/strong> Qawra point, Valletta, Malta<\/p>\n                                <p>An authentic British S-class WW2 Submarine resting upright on the sandy seabed. Divers can float past the fully intact conning tower, open torpedo hatch tubes, and hydroplanes in the deep blue abyss.<\/p>\n                            \n                                <ul class=\"cwd-spot-card_metrics\" aria-label=\"Dive profiles specifications for Site 10\">\n                                    <li><strong>Dive Profile:<\/strong> Deep Military Submarine Wreck<\/li>\n                                    <li><strong>Average Depth:<\/strong> 30 &#8211; 45 meters<\/li>\n                                    <li><strong>Visibility:<\/strong> 30 &#8211; 40 meters<\/li>\n                                    <li><strong>Temperature:<\/strong> 18 &#8211; 22\u00b0C<\/li>\n                                    <li><strong>Difficulty:<\/strong> Expert<\/li>\n                                <\/ul>\n                            <\/article>\n                        <\/div>\n                    <\/section>\n                <\/main>\n\n                <!-- Marine instruments interface: Sidebar -->\n                <aside class=\"cwd-sidebar\" aria-label=\"Live Dive Instruments Dashboard\">\n\n                    <!-- CWD Widget 1: Dynamic Depth Gauge-->\n                    <div class=\"cwd-widget cwd-widget-depth-gauge\">\n                        <h3>Current Depth<\/h3>\n                        <div id=\"depth-counter\" class=\"cwd-depth-indicator\">0 METERS<\/div>\n                        <p id=\"depth-zone\" class=\"cwd-depth-zone-label\" aria-live=\"polite\">Sunlight Zone<\/p>\n                    <\/div>\n\n                    <!-- CWD Widget 2: Hydrographic Sonar map HUD-->\n                    <section class=\"cwd-widget cwd-widget-sonar-chart\" aria-label=\"Tactical Hydrographic Map Grid\">\n                        <div class=\"cwd-sonar-canvas\">\n                            <div class=\"cwd-sonar-grid-overlay\" aria-hidden=\"true\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site01\" title=\"SITE 01: Salt pier\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site02\" title=\"SITE 02: Gr\u00fcner See\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site03\" title=\"SITE 03: Zero Fighter\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site04\" title=\"SITE 04: Rubicon Exhibit\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site05\" title=\"SITE 05: SS Thistlegorm\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site06\" title=\"SITE 06: Akitsushima Crane\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site07\" title=\"SITE 07: San Francisco Tanks\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site08\" title=\"SITE 08: Silfra Fissure\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site09\" title=\"SITE 09: Great Blue Hole\"><\/div>\n                            <div class=\"cwd-sonar-ping\" id=\"ping-site10\" title=\"SITE 10: HMS Stubborn Submarine\"><\/div>\n                        <\/div>\n                        <p class=\"cwd-depth-zone-label\">Global Telemetry Grid<\/p>\n                    <\/section>\n\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                    \n\n                <\/aside>\n            <\/div>\n        <\/div>\n","protected":false},"excerpt":{"rendered":"<p>Global Stratum: Dive site Logbook Exploring the world&#8217;s most beautiful and unique underwater destinations. As passionate scuba divers, we look beyond standard beaches to discover environments that tell a true story, from unique volcanic geological formations to vibrant marine ecosystems and historic wrecks. Below is the active register of my favorite global dive sites, organized [&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":"default","ocean_post_title":"","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-10","page","type-page","status-publish","hentry","entry"],"_links":{"self":[{"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages\/10","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=10"}],"version-history":[{"count":38,"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages\/10\/revisions"}],"predecessor-version":[{"id":615,"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=\/wp\/v2\/pages\/10\/revisions\/615"}],"wp:attachment":[{"href":"https:\/\/diving.inkamicreativestudio.nl\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}