Contact Us – Northeast Ohio

G1QAaBwHdmPXTnH55GITSVjKoRxQhd9smbot9XcRL25YgpZwm ciaIm8tSICWZSVHJ2Ecgy7fXtIFgoqQVLZ0CUOQKq1l1XHnXNci5AcjOY8 DreamDecks designs and builds architectural-grade outdoor living spaces across Northeast Ohio. From modern decks to full backyard sanctuaries, each project reflects craftsmanship, precision, and timeless luxury. Call 330-907-3040 or visit buildyourDreamDeck.com DreamDecks | Premier Deck Builder & Outdoor Architecture

============================================================ */ document.addEventListener("DOMContentLoaded", () => { initScrollReveal(); initSmoothScroll(); }); /* ============================ SCROLL REVEAL Adds .is-visible to any element with .dd-reveal when it enters the viewport. ============================ */ function initScrollReveal() { const items = document.querySelectorAll(".dd-reveal"); if (!items.length) return; const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (!entry.isIntersecting) return; const delay = parseInt(entry.target.dataset.delay || "0", 10); setTimeout(() => entry.target.classList.add("is-visible"), delay); observer.unobserve(entry.target); }); }, { threshold: 0.1, rootMargin: "0px 0px -40px 0px" } ); items.forEach((item) => observer.observe(item)); } /* ============================ SMOOTH SCROLL Handles all anchor links on the page. ============================ */ function initSmoothScroll() { document.querySelectorAll('a[href^="#"]').forEach((link) => { link.addEventListener("click", (e) => { const id = link.getAttribute("href"); if (!id || id === "#") return; const target = document.querySelector(id); if (!target) return; e.preventDefault(); target.scrollIntoView({ behavior: "smooth", block: "start" }); }); }); }