<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Thank You – Ben Lindell</title>
    <link rel="apple-touch-icon" sizes="180x180" href="/assets/bl-icon.png" />
    <link rel="icon" type="image/svg+xml" href="assets/bl-icon2.svg" />

    <meta name="description" content="Thank you for reaching out. I'll be in touch soon.">
    
    <!-- Google Analytics 4 -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-K0NVVH6075"></script>
    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
        gtag('js', new Date());
        gtag('config', 'G-K0NVVH6075');
        
        // Track form submission conversion
        gtag('event', 'conversion', {
            'event_category': 'Form',
            'event_label': 'Contact Form Success'
        });
    </script>
    
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --warm-black: #1a1512;
            --warm-dark: #2d2520;
            --warm-medium: #4a3f37;
            --warm-light: #f5f1ed;
            --cream: #faf7f2;
            --accent: #a67c52;
            --text-dark: #2d2520;
            --text-medium: #6b5d52;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .serif {
            font-family: 'Cormorant Garamond', Georgia, serif;
        }

        .thanks-section {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .thanks-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thanks-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(26, 21, 18, 0.2) 0%, rgba(26, 21, 18, 0.75) 100%);
        }

        .thanks-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--cream);
            max-width: 1400px;
            padding: 0 2rem;
        }

        .thanks-headline {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 500;
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
        }

        .thanks-subtext {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            font-weight: 300;
            letter-spacing: 0.02em;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .thanks-cta {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 1.5px solid var(--cream);
            color: var(--cream);
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.9s forwards;
            font-weight: 500;
        }

        .thanks-cta:hover {
            background: var(--cream);
            color: var(--warm-black);
            transform: translateY(-2px);
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .thanks-headline {
                font-size: clamp(2.5rem, 10vw, 4rem);
            }
        }
    </style>
</head>
<body>
    <!-- THANKS SECTION -->
    <section class="thanks-section">
        <img src="assets/benlindell-hero-image.webp" alt="Ben Lindell DAW Session" class="thanks-bg">
        <div class="thanks-overlay"></div>
        <div class="thanks-content">
            <h1 class="thanks-headline serif">Message received.</h1>
            <p class="thanks-subtext">I'll get back to you within 24 hours.<br>Looking forward to hearing your work.</p>
            <a href="/" class="thanks-cta">Back to Home</a>
        </div>
    </section>

    <script>
        // Parallax effect for background
        const thanksBg = document.querySelector('.thanks-bg');
        
        let ticking = false;
        
        window.addEventListener('scroll', () => {
            if (!ticking) {
                window.requestAnimationFrame(() => {
                    const scrolled = window.pageYOffset;
                    
                    if (thanksBg && scrolled < window.innerHeight) {
                        thanksBg.style.transform = `translateY(${scrolled * 0.5}px)`;
                    }
                    
                    ticking = false;
                });
                
                ticking = true;
            }
        });
    </script>
</body>
</html>