{"id":10434,"date":"2025-01-27T15:15:39","date_gmt":"2025-01-27T15:15:39","guid":{"rendered":"https:\/\/thetraveldiscovery.com\/public-trips\/?page_id=10434"},"modified":"2025-01-27T16:03:28","modified_gmt":"2025-01-27T16:03:28","slug":"1025-2","status":"publish","type":"page","link":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/","title":{"rendered":"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi &amp; Capri"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Trip Planner<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.0.0\/css\/all.min.css\" integrity=\"sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\" \/>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n\n        body {\n            background-color: #f0f2f5; \/* Light gray background *\/\n            padding: 20px;\n        }\n\n        .container {\n            max-width: 800px;\n            margin: 0 auto;\n            background: #fff; \/* White container *\/\n            border-radius: 12px;\n            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);\n            overflow: hidden;\n            transition: box-shadow 0.3s ease;\n        }\n\n         .container:hover {\n            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);\n        }\n\n        .header {\n            background: #007bff; \/* Modern blue *\/\n            color: white;\n            padding: 25px;\n            text-align: center;\n            display: flex;\n            flex-direction: column;\n            align-items: center;\n            gap: 10px;\n        }\n        .header h1{\n             font-size: 2.2em;\n             margin-bottom: 5px;\n        }\n\n        .action-buttons {\n            display: flex;\n            justify-content: center;\n            gap: 15px;\n            margin-top: 15px;\n        }\n\n        .btn {\n            padding: 10px 20px;\n            border: none;\n            border-radius: 6px;\n            cursor: pointer;\n            font-weight: 500;\n            transition: background-color 0.3s, transform 0.2s;\n            color: white;\n            display: inline-flex;\n            align-items: center;\n            gap: 8px;\n            font-size: 0.95rem;\n        }\n\n          .btn:hover {\n            transform: scale(1.05);\n        }\n\n        .btn-share {\n            background-color: #28a745; \/* Green share *\/\n        }\n\n        .btn-share:hover {\n            background-color: #218838; \/* Darker green *\/\n        }\n\n        .btn-download {\n            background-color: #17a2b8; \/* Teal download *\/\n        }\n\n        .btn-download:hover {\n            background-color: #138496; \/* Darker teal *\/\n        }\n\n        .day-header {\n            background: #e9ecef; \/* Light gray day header *\/\n            color: #343a40;\n            padding: 18px 25px;\n            font-size: 1.4em;\n            font-weight: 600;\n            border-bottom: 2px solid #ddd;\n           \n        }\n\n        .itinerary {\n            padding: 25px;\n        }\n\n        .time-section {\n            margin-bottom: 35px;\n        }\n\n        .time-header {\n            color: #343a40;\n            font-size: 1.3em;\n            font-weight: 500;\n            margin-bottom: 15px;\n            padding-bottom: 8px;\n            border-bottom: 1px solid #ddd;\n        }\n\n        .activity {\n            margin-bottom: 20px;\n            padding: 20px;\n            background: #f8f9fa; \/* Light background for activity *\/\n            border-radius: 8px;\n            transition: transform 0.2s, box-shadow 0.2s;\n            border: 1px solid #eee;\n        }\n\n         .activity:hover {\n           transform: translateY(-3px);\n            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);\n        }\n\n        .activity-title {\n            font-weight: 600;\n            color: #2c3e50;\n            margin-bottom: 10px;\n        }\n\n        .activity-description {\n            color: #555;\n            line-height: 1.6;\n             font-size: 0.97em;\n        }\n\n         .travel-tip {\n            background: #f0f9f7;\n            padding: 20px;\n            margin-top: 25px;\n            border-left: 4px solid #28a745;\n            border-radius: 5px;\n        }\n\n        .travel-tip-header {\n            font-weight: 600;\n            color: #218838;\n            margin-bottom: 8px;\n             font-size: 1.1em;\n        }\n\n        .day-container {\n            margin-bottom: 35px;\n        }\n\n        .day-container:last-child {\n            margin-bottom: 0;\n        }\n\n        .toast {\n            position: fixed;\n            bottom: 30px;\n            left: 50%;\n            transform: translateX(-50%);\n            background: #343a40;\n            color: white;\n            padding: 12px 25px;\n            border-radius: 8px;\n            display: none;\n            animation: fadeIn 0.3s;\n            z-index: 1000;\n        }\n\n        @keyframes fadeIn {\n            from { opacity: 0; transform: translate(-50%, 20px); }\n            to { opacity: 1; transform: translate(-50%, 0); }\n        }\n\n       .image-container {\n          width: 100%;\n          overflow: hidden;\n          border-bottom: 1px solid #ddd;\n         }\n         \n        .image-container img{\n          width: 100%;\n          height: 250px;\n          object-fit: cover;\n          display: block;\n        }\n\n        @media (max-width: 600px) {\n            .container {\n                margin: 0;\n                border-radius: 0;\n            }\n            \n            .activity {\n                padding: 15px;\n            }\n            \n            .day-header {\n                padding: 15px 20px;\n                font-size: 1.3em;\n            }\n\n            .action-buttons {\n                flex-direction: column;\n                padding: 0 20px;\n            }\n\n             .header{\n                padding: 20px;\n             }\n              .header h1{\n             font-size: 1.8em;\n           }\n\n            .btn {\n                width: 100%;\n                justify-content: center;\n                font-size: 0.9em;\n            }\n\n            .itinerary {\n               padding: 15px;\n           }\n\n             .time-header {\n                font-size: 1.2em;\n                padding-bottom: 5px;\n           }\n            .activity-description {\n                 font-size: 0.9em;\n            }\n            .travel-tip{\n                 padding: 15px;\n            }\n            .travel-tip-header{\n                font-size: 1em;\n            }\n\n            .image-container img{\n               height: 200px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\">\n        <div class=\"header\">\n            <h1>Amalfi Coast Trip <\/h1>\n            <div class=\"action-buttons\">\n                <button class=\"btn btn-share\" onclick=\"shareItinerary()\">\n                  <i class=\"fas fa-share-alt\"><\/i>\n                    Share Itinerary\n                <\/button>\n                <button class=\"btn btn-download\" onclick=\"downloadItinerary()\">\n                     <i class=\"fas fa-download\"><\/i>\n                    Download PDF\n                <\/button>\n            <\/div>\n        <\/div>\n        \n        <div class=\"image-container\">\n           <img decoding=\"async\" src=\"https:\/\/thetraveldiscovery.com\/public-trips\/wp-content\/uploads\/2025\/01\/pexels-frans-van-heerden-201846-632522.jpg\" alt=\"Amalfi Coast Landscape\">\n        <\/div>\n        \n        <!-- Day 1 -->\n        <div class=\"day-container\">\n            <div class=\"day-header\">Day 1 &#8211; Sorrento<\/div>\n            <div class=\"itinerary\">\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Morning<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Check in to Hotel Villa Oriana<\/div>\n                        <div class=\"activity-description\">A quaint and budget-friendly hotel with panoramic views<\/div>\n                    <\/div>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Stroll through the narrow streets<\/div>\n                        <div class=\"activity-description\">Explore the vibrant heart of Sorrento and soak in its charm<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Afternoon<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Relax at a local beach club<\/div>\n                        <div class=\"activity-description\">Enjoy sunbathing, swimming, and a refreshing lunch at a beach club<\/div>\n                    <\/div>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Visit the Baths of Queen Giovanna<\/div>\n                        <div class=\"activity-description\">Discover the idyllic natural pools and indulge in a rejuvenating swim<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Evening<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Dine at Ristorante Zi&#8217;Ntonio<\/div>\n                        <div class=\"activity-description\">Savor authentic Italian cuisine in a cozy atmosphere<\/div>\n                    <\/div>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Stroll along the Marina Grande<\/div>\n                        <div class=\"activity-description\">Enjoy a romantic walk along the harbor and watch the sunset<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"travel-tip\">\n                    <div class=\"travel-tip-header\">Travel Tip:<\/div>\n                    <div class=\"activity-description\">Purchase a Campania Artecard for discounted access to attractions and transportation.<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n\n        <!-- Day 2 -->\n        <div class=\"day-container\">\n            <div class=\"day-header\">Day 2 &#8211; Amalfi<\/div>\n            <div class=\"itinerary\">\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Morning<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Take a scenic ferry ride<\/div>\n                        <div class=\"activity-description\">Embark on a breathtaking boat trip along the picturesque coastline<\/div>\n                    <\/div>\n                      <div class=\"activity\">\n                        <div class=\"activity-title\">Visit the Amalfi Cathedral<\/div>\n                         <div class=\"activity-description\">Admire the stunning architecture and explore the historic town center<\/div>\n                     <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Afternoon<\/h2>\n                    <div class=\"activity\">\n                         <div class=\"activity-title\">Hike along the Path of the Gods<\/div>\n                         <div class=\"activity-description\">Experience breathtaking views on a guided hike through lush trails<\/div>\n                     <\/div>\n                      <div class=\"activity\">\n                         <div class=\"activity-title\">Visit the Ravello Gardens<\/div>\n                         <div class=\"activity-description\">Stroll through the enchanting gardens, offering panoramic views and tranquility<\/div>\n                     <\/div>\n                <\/div>\n\n                   <div class=\"time-section\">\n                    <h2 class=\"time-header\">Evening<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Indulge in a limoncello tasting<\/div>\n                        <div class=\"activity-description\">Sample the local specialty at a traditional limoncello factory<\/div>\n                    <\/div>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Dine at Trattoria Da Gemma<\/div>\n                        <div class=\"activity-description\">Enjoy fresh seafood and homemade pasta in a charming setting<\/div>\n                    <\/div>\n                <\/div>\n\n\n                <div class=\"travel-tip\">\n                    <div class=\"travel-tip-header\">Travel Tip:<\/div>\n                    <div class=\"activity-description\">Book the ferry in advance to secure seats, especially during peak season.<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n           <!-- Day 3 -->\n        <div class=\"day-container\">\n            <div class=\"day-header\">Day 3 &#8211; Positano<\/div>\n            <div class=\"itinerary\">\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Morning<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Visit the Church of Santa Maria Assunta<\/div>\n                        <div class=\"activity-description\">Admire the iconic dome and intricate majolica tiles<\/div>\n                    <\/div>\n                     <div class=\"activity\">\n                        <div class=\"activity-title\">Shop for local ceramics<\/div>\n                        <div class=\"activity-description\">Browse the colorful boutiques and take home unique souvenirs<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Afternoon<\/h2>\n                      <div class=\"activity\">\n                         <div class=\"activity-title\">Enjoy the beaches<\/div>\n                         <div class=\"activity-description\">Relax and sunbathe on the beautiful Spiaggia Grande or Fornillo beach<\/div>\n                     <\/div>\n                      <div class=\"activity\">\n                         <div class=\"activity-title\">Take a sunset cruise<\/div>\n                        <div class=\"activity-description\">Enjoy a romantic sunset sail with stunning views of the coastline<\/div>\n                     <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Evening<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Dine at Ristorante Max<\/div>\n                        <div class=\"activity-description\">Indulge in a splurge-worthy dining experience with panoramic views<\/div>\n                    <\/div>\n                    <div class=\"activity\">\n                         <div class=\"activity-title\">Stroll through the lively streets<\/div>\n                         <div class=\"activity-description\">Experience the vibrant nightlife and enjoy live music<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"travel-tip\">\n                    <div class=\"travel-tip-header\">Travel Tip:<\/div>\n                    <div class=\"activity-description\">Consider using the local SITA bus service for transportation within the Amalfi Coast.<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n           <!-- Day 4 -->\n        <div class=\"day-container\">\n            <div class=\"day-header\">Day 4 &#8211; Capri<\/div>\n            <div class=\"itinerary\">\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Morning<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Take a ferry to Capri<\/div>\n                        <div class=\"activity-description\">Embark on a scenic boat ride to the glamorous island<\/div>\n                    <\/div>\n                     <div class=\"activity\">\n                        <div class=\"activity-title\">Visit the Blue Grotto<\/div>\n                       <div class=\"activity-description\">Marvel at the mesmerizing blue waters in this enchanting cave<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Afternoon<\/h2>\n                      <div class=\"activity\">\n                        <div class=\"activity-title\">Explore Capri Town<\/div>\n                         <div class=\"activity-description\">Wander through the chic streets, admire the luxury boutiques, and visit the Piazzetta<\/div>\n                     <\/div>\n                     <div class=\"activity\">\n                        <div class=\"activity-title\">Take the chairlift to Monte Solaro<\/div>\n                       <div class=\"activity-description\">Ascend to the highest point on the island for breathtaking panoramic views<\/div>\n                     <\/div>\n                <\/div>\n\n                 <div class=\"time-section\">\n                    <h2 class=\"time-header\">Evening<\/h2>\n                   <div class=\"activity\">\n                        <div class=\"activity-title\">Dine at Da Gemma<\/div>\n                        <div class=\"activity-description\">Enjoy a traditional Capri dinner in a cozy and romantic setting<\/div>\n                    <\/div>\n                   <div class=\"activity\">\n                        <div class=\"activity-title\">Stroll along the waterfront<\/div>\n                       <div class=\"activity-description\">Admire the twinkling lights and soak in the island&#8217;s charm<\/div>\n                     <\/div>\n                <\/div>\n\n                <div class=\"travel-tip\">\n                    <div class=\"travel-tip-header\">Travel Tip:<\/div>\n                    <div class=\"activity-description\">Book the Blue Grotto tour in advance to avoid long lines, especially in summer.<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n          <!-- Day 5 -->\n         <div class=\"day-container\">\n            <div class=\"day-header\">Day 5 &#8211; Departure from Naples<\/div>\n            <div class=\"itinerary\">\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Morning<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Visit the Capodimonte Museum<\/div>\n                         <div class=\"activity-description\">Explore the extensive art collection and admire masterpieces by Caravaggio and Titian<\/div>\n                     <\/div>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Shop for souvenirs<\/div>\n                       <div class=\"activity-description\">Browse the bustling streets of Spaccanapoli and find unique keepsakes<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"time-section\">\n                    <h2 class=\"time-header\">Afternoon<\/h2>\n                     <div class=\"activity\">\n                        <div class=\"activity-title\">Indulge in a pizza lunch<\/div>\n                       <div class=\"activity-description\">Savor the iconic Neapolitan pizza at a traditional pizzeria<\/div>\n                    <\/div>\n                    <div class=\"activity\">\n                         <div class=\"activity-title\">Visit the Castel dell&#8217;Ovo<\/div>\n                         <div class=\"activity-description\">Explore the historic castle and enjoy panoramic views of the city<\/div>\n                     <\/div>\n                <\/div>\n\n                 <div class=\"time-section\">\n                    <h2 class=\"time-header\">Evening<\/h2>\n                    <div class=\"activity\">\n                        <div class=\"activity-title\">Departure from Naples Capodichino Airport<\/div>\n                        <div class=\"activity-description\">End the relaxing Amalfi Coast journey with fond memories<\/div>\n                    <\/div>\n                <\/div>\n\n                <div class=\"travel-tip\">\n                    <div class=\"travel-tip-header\">Travel Tip:<\/div>\n                    <div class=\"activity-description\">Consider hiring a private driver for transfers from Positano to Naples for a comfortable and efficient journey<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <div class=\"toast\" id=\"toast\"><\/div>\n     <script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jspdf\/2.5.1\/jspdf.umd.min.js\"><\/script>\n    <script>\n        function showToast(message) {\n            const toast = document.getElementById('toast');\n            toast.textContent = message;\n            toast.style.display = 'block';\n            setTimeout(() => {\n                toast.style.display = 'none';\n            }, 3000);\n        }\n\n        function shareItinerary() {\n            if (navigator.share) {\n                navigator.share({\n                    title: 'Amalfi Coast Trip Planner',\n                    text: 'Check out this amazing 5-day itinerary for the Amalfi Coast!',\n                    url: window.location.href\n                })\n                .then(() => showToast('Itinerary shared successfully!'))\n                .catch(() => showToast('Error sharing itinerary'));\n            } else {\n                const dummy = document.createElement('textarea');\n                dummy.value = window.location.href;\n                document.body.appendChild(dummy);\n                dummy.select();\n                document.execCommand('copy');\n                document.body.removeChild(dummy);\n                showToast('Link copied to clipboard!');\n            }\n        }\n\n       function downloadItinerary() {\n        showToast('Generating PDF...');\n\n        setTimeout(() => {\n            const { jsPDF } = window.jspdf;\n\n            const doc = new jsPDF();\n            doc.setFontSize(18);\n             doc.text(\"Amalfi Coast Trip Planner\", 20, 20);\n\n            let yPos = 35;\n             document.querySelectorAll('.day-container').forEach((dayContainer) => {\n                const dayHeader = dayContainer.querySelector('.day-header').textContent;\n                 doc.setFontSize(16);\n                doc.text(dayHeader, 20, yPos);\n                yPos += 10;\n\n            dayContainer.querySelectorAll('.time-section').forEach(timeSection => {\n                const timeHeader = timeSection.querySelector('.time-header').textContent;\n                   doc.setFontSize(14);\n                doc.text(timeHeader, 20, yPos);\n                yPos += 8;\n\n                timeSection.querySelectorAll('.activity').forEach(activity =>{\n                     const activityTitle = activity.querySelector('.activity-title').textContent;\n                     const activityDescription = activity.querySelector('.activity-description').textContent;\n                     doc.setFontSize(12);\n                    doc.text(activityTitle, 20, yPos);\n                    yPos += 6;\n                    const textLines = doc.splitTextToSize(activityDescription, 160);\n                     doc.setFontSize(10);\n                     textLines.forEach(line =>{\n                          doc.text(line, 25, yPos);\n                          yPos += 5;\n                     });\n\n                     yPos += 6;\n                })\n                  \n            });\n            const travelTip = dayContainer.querySelector('.travel-tip');\n            if(travelTip) {\n                const travelTipHeader = travelTip.querySelector('.travel-tip-header').textContent;\n                const travelTipDescription = travelTip.querySelector('.activity-description').textContent;\n                   doc.setFontSize(14);\n                 doc.text(travelTipHeader, 20, yPos);\n                 yPos += 6;\n                const tipLines = doc.splitTextToSize(travelTipDescription, 160);\n                doc.setFontSize(10);\n                     tipLines.forEach(line =>{\n                          doc.text(line, 25, yPos);\n                          yPos += 5;\n                     });\n                yPos += 6;\n\n            }\n\n            yPos += 10;\n        });\n\n            doc.save('Amalfi-Coast-Trip-Planner.pdf');\n        }, 1000);\n\n    }\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Trip Planner Amalfi Coast Trip Share Itinerary Download PDF Day 1 &#8211; Sorrento Morning Check in to Hotel Villa Oriana [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-10434","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>5-Day Amalfi Coast Itinerary: Sorrento, Amalfi &amp; Capri<\/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:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi &amp; Capri\" \/>\n<meta property=\"og:description\" content=\"Trip Planner Amalfi Coast Trip Share Itinerary Download PDF Day 1 &#8211; Sorrento Morning Check in to Hotel Villa Oriana [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/\" \/>\n<meta property=\"og:site_name\" content=\"public-trips\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-27T16:03:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thetraveldiscovery.com\/public-trips\/wp-content\/uploads\/2025\/01\/pexels-frans-van-heerden-201846-632522.jpg\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/\",\"url\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/\",\"name\":\"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi & Capri\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/pexels-frans-van-heerden-201846-632522.jpg\",\"datePublished\":\"2025-01-27T15:15:39+00:00\",\"dateModified\":\"2025-01-27T16:03:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/#primaryimage\",\"url\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/pexels-frans-van-heerden-201846-632522.jpg\",\"contentUrl\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/wp-content\\\/uploads\\\/2025\\\/01\\\/pexels-frans-van-heerden-201846-632522.jpg\",\"width\":1280,\"height\":795,\"caption\":\"amalfi coast\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/1025-2\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi &amp; Capri\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/#website\",\"url\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/\",\"name\":\"public-trips\",\"description\":\"public-trips\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/thetraveldiscovery.com\\\/public-trips\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi & Capri","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:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/","og_locale":"en_US","og_type":"article","og_title":"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi & Capri","og_description":"Trip Planner Amalfi Coast Trip Share Itinerary Download PDF Day 1 &#8211; Sorrento Morning Check in to Hotel Villa Oriana [&hellip;]","og_url":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/","og_site_name":"public-trips","article_modified_time":"2025-01-27T16:03:28+00:00","og_image":[{"url":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-content\/uploads\/2025\/01\/pexels-frans-van-heerden-201846-632522.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/","url":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/","name":"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi & Capri","isPartOf":{"@id":"https:\/\/thetraveldiscovery.com\/public-trips\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/#primaryimage"},"image":{"@id":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/#primaryimage"},"thumbnailUrl":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-content\/uploads\/2025\/01\/pexels-frans-van-heerden-201846-632522.jpg","datePublished":"2025-01-27T15:15:39+00:00","dateModified":"2025-01-27T16:03:28+00:00","breadcrumb":{"@id":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/#primaryimage","url":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-content\/uploads\/2025\/01\/pexels-frans-van-heerden-201846-632522.jpg","contentUrl":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-content\/uploads\/2025\/01\/pexels-frans-van-heerden-201846-632522.jpg","width":1280,"height":795,"caption":"amalfi coast"},{"@type":"BreadcrumbList","@id":"https:\/\/thetraveldiscovery.com\/public-trips\/1025-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thetraveldiscovery.com\/public-trips\/"},{"@type":"ListItem","position":2,"name":"5-Day Amalfi Coast Itinerary: Sorrento, Amalfi &amp; Capri"}]},{"@type":"WebSite","@id":"https:\/\/thetraveldiscovery.com\/public-trips\/#website","url":"https:\/\/thetraveldiscovery.com\/public-trips\/","name":"public-trips","description":"public-trips","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thetraveldiscovery.com\/public-trips\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/pages\/10434","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/comments?post=10434"}],"version-history":[{"count":9,"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/pages\/10434\/revisions"}],"predecessor-version":[{"id":10445,"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/pages\/10434\/revisions\/10445"}],"wp:attachment":[{"href":"https:\/\/thetraveldiscovery.com\/public-trips\/wp-json\/wp\/v2\/media?parent=10434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}