<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Closed</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #d6d6d6 url('https://www.transparenttextures.com/patterns/concrete-wall.png');
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
            padding: 20px;
            animation: fadeIn 1.2s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .container {
            max-width: 750px;
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .header-img {
    width: 600px;          /* Desktop size */
    max-width: 100%;       /* Prevent overflow */
    height: auto;
    margin-bottom: 25px;
}

/* Full-width logo on mobile */
@media (max-width: 600px) {
    .header-img {
        width: 100%;
        max-width: 100%;
    }
}


        h1 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        p {
            line-height: 1.6;
            font-size: 1.05rem;
            margin-bottom: 20px;
        }

        .quote {
            font-style: italic;
            margin: 15px 0;
            color: #555;
        }

        .btn {
            display: inline-block;
            margin: 12px 0;
            padding: 14px 28px;
            background: #0077cc;
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            border-radius: 6px;
            transition: background 0.25s ease;
            width: 100%;
            max-width: 350px;
        }

        .btn:hover {
            background: #005fa3;
        }

        .btn.secondary {
            background: #444;
        }

        .btn.secondary:hover {
            background: #222;
        }

        footer {
            margin-top: 30px;
            font-size: 0.9rem;
            color: #666;
        }

        @media (min-width: 600px) {
            .btn {
                width: auto;
            }
        }
    </style>
</head>
<body>
    <div class="container">

        <img src="https://extremely-fit.com/extremelyfit-logo.png" alt="Extremely Fit Logo" class="header-img">

        <h1>CLOSED</h1>

        <p>After nearly 18 years, I’ve decided to step away from being a Beachbody coach. This journey has been incredibly rewarding, allowing me to connect with so many wonderful people and help them achieve their fitness goals.</p>

        <p>As I move forward, I want to remind everyone that fitness is a lifelong journey, not a destination.</p>

        <p class="quote">“Do your best and forget the rest!” — Tony Horton</p>

        <p>Invest in your health, and don’t give up! While I may not be coaching, I’ll still be pushing play. The following resources will still be in my daily routine.</p>

        <a class="btn" href="http://www.powernationfitness.org/?via=p4w-th" target="_blank">
            Visit PowerNation Fitness
        </a>

        <a class="btn secondary" href="https://click-myl.ink/2p97d79w" target="_blank">
            Additional Resources
        </a>

        <footer>
            © <span id="year"></span> Extremely-Fit. All rights reserved.
        </footer>
    </div>

    <script>
        document.getElementById("year").textContent = new Date().getFullYear();
    </script>
</body>
</html>
