<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Under Maintenance!</title>
    <style>
        /* Original Base Styles */
        body { font-family: sans-serif; text-align: center; padding: 100px 20px; background: #f8f9fa; color: #333; }
        .container { max-width: 600px; margin: 0 auto; }
        h1 { font-size: 48px; margin-bottom: 20px; }
        p { font-size: 18px; color: #666; line-height: 1.6; }
        .icon { font-size: 64px; margin-bottom: 20px; }

        /* Drop-down Contact Form Styles */
        .maintenance-contact {
            margin-top: 40px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            text-align: left;
            transition: all 0.3s ease;
        }
        
        /* The clickable header */
        .maintenance-contact summary {
            padding: 20px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
            list-style: none; /* Removes default arrow in modern browsers */
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Removes default arrow in Safari */
        .maintenance-contact summary::-webkit-details-marker {
            display: none;
        }

        /* Custom Drop-down Arrow */
        .maintenance-contact summary::after {
            content: "▼";
            font-size: 12px;
            color: #888;
        }

        /* Arrow changes when open */
        .maintenance-contact[open] summary::after {
            content: "▲";
        }

        /* The hidden form content */
        .contact-content {
            padding: 0 25px 25px 25px;
            border-top: 1px solid #f0f0f0;
            margin-top: 5px;
            padding-top: 20px;
        }

        .contact-content p {
            font-size: 15px;
            margin-top: 0;
            margin-bottom: 20px;
            color: #777;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 14px;
            font-weight: bold;
            color: #555;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            box-sizing: border-box;
            font-family: sans-serif;
            transition: border-color 0.2s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.15);
        }

        .contact-form textarea {
            min-height: 100px;
            resize: vertical;
        }

        .contact-form button {
            width: 100%;
            padding: 14px;
            background-color: #333; 
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .contact-form button:hover {
            background-color: #555;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="icon">🚧</div>
        <h1>Site Updating</h1>
        <p>I am currently performing scheduled maintenance to improve your experience. The site will be back online shortly. Thank you for your patience!</p>
        
        <details class="maintenance-contact">
            <summary>Need to reach me urgently?</summary>
            
            <div class="contact-content">
                <p>Drop me a message and I'll get back to you as soon as possible.</p>
                
                <form action="https://formspree.io/f/maqalgjj" method="POST" class="contact-form">
                    
                    <div class="form-group">
                        <label for="email">Your Email Address</label>
                        <input type="email" id="email" name="email" required placeholder="hello@example.com">
                    </div>

                    <div class="form-group">
                        <label for="message">Message</label>
                        <textarea id="message" name="message" required placeholder="How can I help?"></textarea>
                    </div>

                    <button type="submit">Send Message</button>
                </form>
            </div>
        </details>
    </div>
</body>
</html>