<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>The Third Act Band</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

       

        body {

            font-family: 'Georgia', serif;

            line-height: 1.6;

            color: #333;

            background-color: #fff;

        }

       

        .hero {

            height: 60vh;

            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),

                        url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1600&q=80') center/cover;

            display: flex;

            align-items: center;

            justify-content: center;

            text-align: center;

            color: white;

        }

       

        .hero h1 {

            font-size: 4rem;

            font-weight: 300;

            letter-spacing: 3px;

            margin-bottom: 1rem;

        }

       

        .hero p {

            font-size: 1.3rem;

            font-weight: 300;

            font-style: italic;

        }

       

        .container {

            max-width: 900px;

            margin: 0 auto;

            padding: 4rem 2rem;

        }

       

        section {

            margin-bottom: 4rem;

        }

       

        h2 {

            font-size: 2rem;

            font-weight: 400;

            margin-bottom: 1.5rem;

            text-align: center;

            letter-spacing: 2px;

            text-transform: uppercase;

            border-bottom: 1px solid #333;

            padding-bottom: 1rem;

        }

       

        .about p {

            font-size: 1.1rem;

            text-align: center;

            color: #555;

        }

       

        .gig-card {

            background: #f8f8f8;

            padding: 2rem;

            border-left: 4px solid #333;

            margin-bottom: 1rem;

        }

       

        .gig-card h3 {

            font-size: 1.5rem;

            margin-bottom: 0.5rem;

            font-weight: 400;

        }

       

        .gig-card .date {

            font-size: 1.2rem;

            color: #666;

            margin-bottom: 1rem;

        }

       

        .gig-card .details {

            color: #888;

            font-style: italic;

        }

       

        .setlist {

            background: #fafafa;

            padding: 2rem;

            border-radius: 4px;

        }

       

        .setlist ul {

            list-style: none;

            text-align: center;

        }

       

        .setlist li {

            padding: 0.5rem;

            font-size: 1.1rem;

            color: #555;

        }

       

        .contact {

            text-align: center;

        }

       

        .contact a {

            color: #333;

            text-decoration: none;

            font-size: 1.2rem;

            border: 2px solid #333;

            padding: 1rem 2rem;

            display: inline-block;

            transition: all 0.3s ease;

        }

       

        .contact a:hover {

            background: #333;

            color: white;

        }

       

        footer {

            text-align: center;

            padding: 2rem;

            background: #f5f5f5;

            color: #666;

            font-size: 0.9rem;

        }

       

        @media (max-width: 768px) {

            .hero h1 {

                font-size: 2.5rem;

            }

           

            .hero p {

                font-size: 1rem;

            }

           

            .container {

                padding: 2rem 1rem;

            }

        }

    </style>

</head>

<body>

    <div class="hero">

        <div>

            <h1>THE THIRD ACT</h1>

            <p>The best is yet to come</p>

        </div>

    </div>

   

    <div class="container">

        <section class="about">

            <h2>About</h2>

            <p>Five seasoned musicians playing rock and indie classics from the '70s to today</p>

        </section>

       

        <section class="shows">

            <h2>Upcoming Shows</h2>

            <div class="gig-card">

                <h3>December 2, 2025</h3>

                <div class="date">Tuesday Evening</div>

                <div class="details">Venue details coming soon</div>

            </div>

        </section>

       

        <section class="setlist">

            <h2>What We're Playing</h2>

            <ul>

                <li>"A Thousand Miles from Nowhere" – Dwight Yoakam</li>

                <li>"Hackensack" – Fountains of Wayne</li>

                <li>"Mother Mother" – Tracy Bonham</li>

                <li>...and more</li>

            </ul>

        </section>

       

        <section class="contact">

            <h2>Get In Touch</h2>

            <a href="mailto:fcrand2009@gmail.com">Contact Us for Bookings</a>

        </section>

    </div>

   

    <footer>

        <p>&copy; 2025 The Third Act Band. All rights reserved.</p>

    </footer>

</body>

</html>