<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Mindi Acosta</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <style>
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: #111;
    }

    /* COVER SECTION */
    .cover {
      background-image: url("https://www.mindiacosta.com/wp-content/uploads/2025/04/Mindi-Acosta-Headshots-scaled.jpg");
      background-size: cover;
      background-position: center;
      min-height: 70vh;
      display: flex;
      align-items: center;
    }

   .cover-text {
  padding: 60px;
  max-width: 600px;
  margin-left: 5%;
  color: #ffffff;
}

    }

    .cover-text h1 {
      font-size: 60px;
      margin: 0 0 10px 0;
      font-weight: normal;
    }

    .cover-text p {
      font-size: 10px;
      letter-spacing: 1px;
      margin: 0;
      text-transform: uppercase;
    }

    /* THREE COLUMN SECTION */
    .sections {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 5%;
      gap: 40px;
    }

    .section {
      flex: 1;
      min-width: 250px;
    }

    .section h2 {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: normal;
    }

    .section p {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .button {
      display: inline-block;
      padding: 10px 20px;
      border: 1px solid #111;
      text-decoration: none;
      color: #111;
      font-size: 13px;
      transition: all 0.2s ease;
    }

    .button:hover {
      background-color: #111;
      color: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .cover-text {
        margin-left: 0;
        margin: 20px;
      }

      .cover-text h1 {
        font-size: 42px;
      }

      .sections {
        padding: 40px 20px;
      }
    }
  </style>
</head>

<body>

  <!-- COVER -->
  <section class="cover">
    <div class="cover-text">
      <h1>Mindi Acosta</h1>
      <p>Flutist | Educator | Chamber Musician | Media Specialist</p>
    </div>
  </section>

  <!-- THREE COLUMNS -->
  <section class="sections">

    <div class="section">
      <h2>Tucson Flute Lessons</h2>
      <p>
        I offer engaging, supportive flute lessons in Tucson, AZ, for students of all ages and experience levels. Lessons are available in person or online.
      </p>
      <a class="button" href="https://studio.fluteloop.com/" target="_blank">Lessons</a>
    </div>

    <div class="section">
      <h2>Live Performance</h2>
      <p>
        I am a professional flutist and piccolo player based in Southern Arizona, performing with ensembles ranging from orchestral, chamber, and theatrical performances.
      </p>
      <a class="button" href="https://www.mindiacosta.com/" target="_blank">Performance</a>
    </div>

    <div class="section">
      <h2>Media Services</h2>
      <p>
        I provide media services for artists and arts organizations, with a focus on concert and portrait photography.
      </p>
      <a class="button" href="https://fluteloop.myportfolio.com/" target="_blank">Media</a>
    </div>

  </section>

</body>
</html>
