{"id":1356,"date":"2025-08-29T17:16:17","date_gmt":"2025-08-29T17:16:17","guid":{"rendered":"https:\/\/creativespark.app\/?p=1356"},"modified":"2025-08-30T22:36:49","modified_gmt":"2025-08-30T22:36:49","slug":"1356","status":"publish","type":"post","link":"https:\/\/creativespark.app\/?p=1356","title":{"rendered":""},"content":{"rendered":"\n<!-- ATL Travel Mode Page -->\n<div style=\"color: white; text-align: center; background-color: black; padding: 50px 20px; font-family: Arial, sans-serif;\">\n  <h1 style=\"font-size: 2.5em;\">\ud83d\udcf8 Grab your camera gear!<\/h1>\n  <p style=\"font-size: 1.25em;\">You\u2019re about to explore some of ATL\u2019s most iconic photo locations.<\/p>\n  <p><em>Choose your travel style and let\u2019s set your route.<\/em><\/p>\n\n  <div id=\"travelModeSection\">\n    <h2 style=\"margin-top: 40px;\">\ud83c\udf92 Choose Your Travel Style<\/h2>\n    <div id=\"travelButtons\">\n      <button class=\"travel-btn\" data-mode=\"walking\">\ud83d\udeb6 Walking<\/button>\n      <button class=\"travel-btn\" data-mode=\"scooter\">\u26a1 Electric Scooter<\/button>\n      <button class=\"travel-btn\" data-mode=\"marta\">\ud83d\ude87 MARTA<\/button>\n      <button class=\"travel-btn\" data-mode=\"rideshare\">\ud83d\ude97 Rideshare<\/button>\n      <button class=\"travel-btn\" data-mode=\"bike\">\ud83d\udeb4 Bike<\/button>\n    <\/div>\n    <p id=\"selectionMessage\" style=\"margin-top: 25px;\"><\/p>\n\n    <!-- NEXT BUTTON (hidden initially) -->\n    <a id=\"nextLink\" href=\"#\" target=\"_blank\" style=\"display:none;\">\n      <button id=\"nextBtn\">Next<\/button>\n    <\/a>\n  <\/div>\n<\/div>\n\n<!-- Audio -->\n<audio id=\"walking\" src=\"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/08\/Roblox-walking-sound-effect-15-sec-roblox-soundeffects-soundeffect.mp3\"><\/audio>\n<audio id=\"scooter\" src=\"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/08\/electric-scooter-sound-effect.mp3\"><\/audio>\n<audio id=\"marta\" src=\"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/08\/train-sound-effect.mp3\"><\/audio>\n<audio id=\"rideshare\" src=\"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/08\/car-sound-effect.mp3\"><\/audio>\n<audio id=\"bike\" src=\"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/08\/bicycle-bell-sound-effect.mp3\"><\/audio>\n<audio id=\"shutter\" src=\"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/08\/camera-shutter.mp3\"><\/audio>\n\n<!-- Flash Overlay -->\n<div id=\"flashOverlay\"><\/div>\n\n<!-- JavaScript -->\n<script>\n  document.addEventListener(\"DOMContentLoaded\", function () {\n    const buttons = document.querySelectorAll(\".travel-btn\");\n    const message = document.getElementById(\"selectionMessage\");\n    const nextBtn = document.getElementById(\"nextLink\");\n    const shutter = document.getElementById(\"shutter\");\n    let selectedMode = null;\n\n    const sounds = {\n      walking: document.getElementById(\"walking\"),\n      scooter: document.getElementById(\"scooter\"),\n      marta: document.getElementById(\"marta\"),\n      rideshare: document.getElementById(\"rideshare\"),\n      bike: document.getElementById(\"bike\")\n    };\n\n    const bonuses = {\n      walking: \"\ud83d\udc5f Stamina Up! You\u2019ll gain energy and experience along the way.\",\n      scooter: \"\ud83d\udef4 Quick and breezy! Speed bonus activated.\",\n      marta: \"\ud83d\ude87 Smart move! You\u2019re riding with the locals \u2014 eco mode engaged.\",\n      rideshare: \"\ud83d\ude98 Smooth ride ahead. Skip the parking struggle.\",\n      bike: \"\ud83d\udeb4 Pedal power! Great for your legs and the planet \ud83c\udf0d.\"\n    };\n\n    buttons.forEach((btn) => {\n      btn.addEventListener(\"click\", function (e) {\n        e.preventDefault();\n\n        \/\/ Stop all sounds\n        for (let key in sounds) {\n          sounds[key].pause();\n          sounds[key].currentTime = 0;\n        }\n\n        selectedMode = this.getAttribute(\"data-mode\");\n        if (sounds[selectedMode]) sounds[selectedMode].play();\n\n        \/\/ Message\n        const label = this.textContent.trim();\n        message.innerHTML = `\u2705 You selected <strong>${label}<\/strong><br>${bonuses[selectedMode]}`;\n\n        \/\/ Style buttons\n        buttons.forEach(b => b.classList.remove(\"active-mode\"));\n        this.classList.add(\"active-mode\");\n\n        \/\/ Show next button\n        document.getElementById(\"nextLink\").style.display = \"inline-block\";\n        document.getElementById(\"nextLink\").href = \"https:\/\/takepicshere.com\/self_guided_tours\/east-atlanta-photo-tour\/\";\n      });\n    });\n\n    \/\/ Shutter effect on next\n    document.getElementById(\"nextBtn\").addEventListener(\"click\", function (e) {\n      e.preventDefault();\n      if (!selectedMode) return;\n\n      \/\/ Flash effect\n      const flash = document.getElementById(\"flashOverlay\");\n      flash.style.opacity = 1;\n      shutter.play();\n\n      setTimeout(() => {\n        flash.style.opacity = 0;\n        window.open(document.getElementById(\"nextLink\").href, \"_blank\");\n      }, 500);\n    });\n  });\n<\/script>\n\n<!-- Styles -->\n<style>\n  .travel-btn {\n    background-color: #4CD30C;\n    color: black;\n    font-weight: bold;\n    padding: 12px 24px;\n    margin: 10px;\n    border: 2px solid #4CD30C;\n    border-radius: 10px;\n    box-shadow: 0 0 20px #4CD30C;\n    cursor: pointer;\n    transition: all 0.3s ease-in-out;\n    font-size: 16px;\n  }\n\n  .travel-btn:hover {\n    background-color: #ffffff;\n    color: #4CD30C;\n    box-shadow: 0 0 30px #4CD30C;\n    border-color: #4CD30C;\n  }\n\n  .active-mode {\n    outline: 3px solid white;\n    box-shadow: 0 0 35px #ffffff;\n  }\n\n  #nextBtn {\n    margin-top: 40px;\n    background-color: #4CD30C;\n    color: black;\n    font-weight: bold;\n    font-size: 18px;\n    padding: 15px 30px;\n    border: 2px solid #4CD30C;\n    border-radius: 10px;\n    box-shadow: 0 0 20px #4CD30C;\n    cursor: pointer;\n    transition: all 0.3s ease-in-out;\n  }\n\n  #nextBtn:hover {\n    background-color: #fff;\n    color: #4CD30C;\n    box-shadow: 0 0 30px #4CD30C;\n    border-color: #4CD30C;\n  }\n\n  #selectionMessage {\n    font-size: 16px;\n    font-weight: 500;\n    line-height: 1.5em;\n  }\n\n  \/* Flash overlay effect *\/\n  #flashOverlay {\n    position: fixed;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    background: white;\n    opacity: 0;\n    pointer-events: none;\n    z-index: 9999;\n    transition: opacity 0.3s ease;\n  }\n\/* Make buttons stack uniformly on smaller screens *\/\n@media (max-width: 600px) {\n  .travel-btn {\n    display: block;\n    width: 100%;\n    max-width: 320px;\n    margin: 10px auto;\n    text-align: center;\n    font-size: 18px;\n  }\n}\n\n<\/style>\n","protected":false},"excerpt":{"rendered":"<p>\ud83d\udcf8 Grab your camera gear! You\u2019re about to explore some of ATL\u2019s most iconic photo locations. Choose your travel style and let\u2019s set your route. \ud83c\udf92 Choose Your Travel Style \ud83d\udeb6 Walking \u26a1 Electric Scooter \ud83d\ude87 MARTA \ud83d\ude97 Rideshare \ud83d\udeb4 Bike Next<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1356","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>- Creative Spark Media<\/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:\/\/creativespark.media\/?p=1356\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"- Creative Spark Media\" \/>\n<meta property=\"og:description\" content=\"\ud83d\udcf8 Grab your camera gear! You\u2019re about to explore some of ATL\u2019s most iconic photo locations. Choose your travel style and let\u2019s set your route. \ud83c\udf92 Choose Your Travel Style \ud83d\udeb6 Walking \u26a1 Electric Scooter \ud83d\ude87 MARTA \ud83d\ude97 Rideshare \ud83d\udeb4 Bike Next\" \/>\n<meta property=\"og:url\" content=\"https:\/\/creativespark.media\/?p=1356\" \/>\n<meta property=\"og:site_name\" content=\"Creative Spark Media\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-29T17:16:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-30T22:36:49+00:00\" \/>\n<meta name=\"author\" content=\"jojobeats\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"jojobeats\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/creativespark.media\\\/?p=1356#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/creativespark.media\\\/?p=1356\"},\"author\":{\"name\":\"jojobeats\",\"@id\":\"http:\\\/\\\/creativespark.media\\\/#\\\/schema\\\/person\\\/f91a2dd3349aa564391b2d5c64c6cbe2\"},\"headline\":\"No title\",\"datePublished\":\"2025-08-29T17:16:17+00:00\",\"dateModified\":\"2025-08-30T22:36:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/creativespark.media\\\/?p=1356\"},\"wordCount\":38,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\\\/\\\/creativespark.media\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/creativespark.media\\\/?p=1356#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/creativespark.media\\\/?p=1356\",\"url\":\"https:\\\/\\\/creativespark.media\\\/?p=1356\",\"name\":\"- Creative Spark Media\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/creativespark.media\\\/#website\"},\"datePublished\":\"2025-08-29T17:16:17+00:00\",\"dateModified\":\"2025-08-30T22:36:49+00:00\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/creativespark.media\\\/?p=1356\"]}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/creativespark.media\\\/#website\",\"url\":\"http:\\\/\\\/creativespark.media\\\/\",\"name\":\"Creative Spark Media\",\"description\":\"\",\"publisher\":{\"@id\":\"http:\\\/\\\/creativespark.media\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/creativespark.media\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\\\/\\\/creativespark.media\\\/#organization\",\"name\":\"Creative Spark Media\",\"url\":\"http:\\\/\\\/creativespark.media\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/creativespark.media\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/creativespark.app\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/CREATIVE-SPARK-MEDIA-1.png\",\"contentUrl\":\"https:\\\/\\\/creativespark.app\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/CREATIVE-SPARK-MEDIA-1.png\",\"width\":841,\"height\":283,\"caption\":\"Creative Spark Media\"},\"image\":{\"@id\":\"http:\\\/\\\/creativespark.media\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/creativespark.media\\\/#\\\/schema\\\/person\\\/f91a2dd3349aa564391b2d5c64c6cbe2\",\"name\":\"jojobeats\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/505dd84b42b8e79b6e443c07b4236e9858c6adda24c7396d214ac5fed4c6cf59?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/505dd84b42b8e79b6e443c07b4236e9858c6adda24c7396d214ac5fed4c6cf59?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/505dd84b42b8e79b6e443c07b4236e9858c6adda24c7396d214ac5fed4c6cf59?s=96&d=mm&r=g\",\"caption\":\"jojobeats\"},\"sameAs\":[\"https:\\\/\\\/creativespark.app\"],\"url\":\"https:\\\/\\\/creativespark.app\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"- Creative Spark Media","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/creativespark.media\/?p=1356","og_locale":"en_US","og_type":"article","og_title":"- Creative Spark Media","og_description":"\ud83d\udcf8 Grab your camera gear! You\u2019re about to explore some of ATL\u2019s most iconic photo locations. Choose your travel style and let\u2019s set your route. \ud83c\udf92 Choose Your Travel Style \ud83d\udeb6 Walking \u26a1 Electric Scooter \ud83d\ude87 MARTA \ud83d\ude97 Rideshare \ud83d\udeb4 Bike Next","og_url":"https:\/\/creativespark.media\/?p=1356","og_site_name":"Creative Spark Media","article_published_time":"2025-08-29T17:16:17+00:00","article_modified_time":"2025-08-30T22:36:49+00:00","author":"jojobeats","twitter_card":"summary_large_image","twitter_misc":{"Written by":"jojobeats","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/creativespark.media\/?p=1356#article","isPartOf":{"@id":"https:\/\/creativespark.media\/?p=1356"},"author":{"name":"jojobeats","@id":"http:\/\/creativespark.media\/#\/schema\/person\/f91a2dd3349aa564391b2d5c64c6cbe2"},"headline":"No title","datePublished":"2025-08-29T17:16:17+00:00","dateModified":"2025-08-30T22:36:49+00:00","mainEntityOfPage":{"@id":"https:\/\/creativespark.media\/?p=1356"},"wordCount":38,"commentCount":0,"publisher":{"@id":"http:\/\/creativespark.media\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/creativespark.media\/?p=1356#respond"]}]},{"@type":"WebPage","@id":"https:\/\/creativespark.media\/?p=1356","url":"https:\/\/creativespark.media\/?p=1356","name":"- Creative Spark Media","isPartOf":{"@id":"http:\/\/creativespark.media\/#website"},"datePublished":"2025-08-29T17:16:17+00:00","dateModified":"2025-08-30T22:36:49+00:00","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/creativespark.media\/?p=1356"]}]},{"@type":"WebSite","@id":"http:\/\/creativespark.media\/#website","url":"http:\/\/creativespark.media\/","name":"Creative Spark Media","description":"","publisher":{"@id":"http:\/\/creativespark.media\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/creativespark.media\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/creativespark.media\/#organization","name":"Creative Spark Media","url":"http:\/\/creativespark.media\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/creativespark.media\/#\/schema\/logo\/image\/","url":"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/03\/CREATIVE-SPARK-MEDIA-1.png","contentUrl":"https:\/\/creativespark.app\/wp-content\/uploads\/2025\/03\/CREATIVE-SPARK-MEDIA-1.png","width":841,"height":283,"caption":"Creative Spark Media"},"image":{"@id":"http:\/\/creativespark.media\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/creativespark.media\/#\/schema\/person\/f91a2dd3349aa564391b2d5c64c6cbe2","name":"jojobeats","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/505dd84b42b8e79b6e443c07b4236e9858c6adda24c7396d214ac5fed4c6cf59?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/505dd84b42b8e79b6e443c07b4236e9858c6adda24c7396d214ac5fed4c6cf59?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/505dd84b42b8e79b6e443c07b4236e9858c6adda24c7396d214ac5fed4c6cf59?s=96&d=mm&r=g","caption":"jojobeats"},"sameAs":["https:\/\/creativespark.app"],"url":"https:\/\/creativespark.app\/?author=1"}]}},"brizy_media":[],"_links":{"self":[{"href":"https:\/\/creativespark.app\/index.php?rest_route=\/wp\/v2\/posts\/1356","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/creativespark.app\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/creativespark.app\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/creativespark.app\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/creativespark.app\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1356"}],"version-history":[{"count":4,"href":"https:\/\/creativespark.app\/index.php?rest_route=\/wp\/v2\/posts\/1356\/revisions"}],"predecessor-version":[{"id":1363,"href":"https:\/\/creativespark.app\/index.php?rest_route=\/wp\/v2\/posts\/1356\/revisions\/1363"}],"wp:attachment":[{"href":"https:\/\/creativespark.app\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1356"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/creativespark.app\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1356"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/creativespark.app\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1356"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}