<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>[Your Name] | LA Barber</title>

  <style>

    /* ----------- BASIC RESET ----------- */

    * {margin: 0; padding: 0; box-sizing: border-box;}

    body {

      font-family: 'Montserrat', sans-serif;

      background-color: #0f0f0f;

      color: #fff;

      line-height: 1.6;

    }


    a {text-decoration: none; color: inherit;}

    h1, h2, h3 {text-transform: uppercase; letter-spacing: 1px;}


    /* ----------- LAYOUT ----------- */

    header {

      height: 100vh;

      background: url('https://images.unsplash.com/photo-1603791452906-e3b6e8a91b04?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;

      display: flex;

      flex-direction: column;

      align-items: center;

      justify-content: center;

      text-align: center;

    }


    header h1 {font-size: 3rem; margin-bottom: 0.5em;}

    header p {font-size: 1.2rem; margin-bottom: 1.5em;}

    .btn {

      background-color: #c5a572;

      color: #0f0f0f;

      padding: 0.8em 2em;

      font-weight: 600;

      border-radius: 4px;

      transition: 0.3s;

    }

    .btn:hover {background-color: #b89358;}


    section {

      padding: 4em 1.5em;

      max-width: 900px;

      margin: auto;

    }

    .services, .gallery, .reviews {text-align: center;}

    .services h2, .gallery h2, .reviews h2, .about h2 {margin-bottom: 1em; color: #c5a572;}

    .service-list {list-style: none;}

    .service-list li {margin: 1em 0; font-size: 1.1rem;}


    /* ----------- GALLERY ----------- */

    .gallery img {

      width: 100%;

      max-width: 280px;

      margin: 0.5em;

      border-radius: 6px;

      border: 2px solid #c5a572;

    }


    /* ----------- REVIEWS ----------- */

    .review {

      margin: 1em 0;

      font-style: italic;

    }


    /* ----------- FOOTER ----------- */

    footer {

      text-align: center;

      padding: 2em;

      background-color: #111;

      color: #aaa;

      font-size: 0.9rem;

    }

    footer a {color: #c5a572;}

  </style>

</head>


<body>


  <!-- HERO -->

  <header>

    <h1>[Your Name]</h1>

    <p>Los Angeles Barber | Fades • Lineups • Beard Work</p>

    <a href="[YOUR_BOOKING_LINK]" class="btn">Book Now</a>

  </header>


  <!-- ABOUT -->

  <section class="about">

    <h2>About</h2>

    <p>

      Precision. Style. Confidence.  

      Based in Los Angeles, I specialize in detailed fades, beard work, and transformations that elevate your look.

      Every cut is tailored to fit your lifestyle and energy.

    </p>

  </section>


  <!-- SERVICES -->

  <section class="services">

    <h2>Services</h2>

    <ul class="service-list">

      <li>Fade + Lineup — $XX</li>

      <li>Beard Trim + Hot Towel — $XX</li>

      <li>Full Transformation — $XX</li>

      <li>Black Mask Add-On — +$10</li>

    </ul>

    <a href="[YOUR_BOOKING_LINK]" class="btn">Book Your Cut</a>

  </section>


  <!-- GALLERY -->

  <section class="gallery">

    <h2>Gallery</h2>

    <img src="https://images.unsplash.com/photo-1599351430143-f56f5d7b66c6?auto=format&fit=crop&w=600&q=80" alt="Fade 1">

    <img src="https://images.unsplash.com/photo-1621605811381-7c64eecfa867?auto=format&fit=crop&w=600&q=80" alt="Fade 2">

    <img src="https://images.unsplash.com/photo-1630975694383-5ee0e73cb6a7?auto=format&fit=crop&w=600&q=80" alt="Beard trim">

    <p><a href="[YOUR_INSTAGRAM]" target="_blank" class="btn">View More on Instagram</a></p>

  </section>


  <!-- REVIEWS -->

  <section class="reviews">

    <h2>Client Reviews</h2>

    <p class="review">“Best fade I’ve had in LA. Bro pays attention to every detail.” — @clientname</p>

    <p class="review">“Tight lineup every time. Professional and chill vibes.” — @anotherclient</p>

  </section>


  <!-- BOOKING -->

  <section class="booking" style="text-align:center;">

    <h2>Book Your Cut</h2>

    <p>Click below to lock in your next appointment.</p>

    <a href="[YOUR_BOOKING_LINK]" class="btn">Book Now</a>

  </section>


  <!-- FOOTER -->

  <footer>

    <p>📍 Los Angeles, CA</p>

    <p>Follow me on 

      <a href="[YOUR_INSTAGRAM]" target="_blank">Instagram</a> | 

      <a href="[YOUR_TIKTOK]" target="_blank">TikTok</a> | 

      <a href="[YOUR_YOUTUBE]" target="_blank">YouTube</a>

    </p>

    <p>© [Your Name] Barber Studio</p>

  </footer>


</body>

</html>


<style>

  /* Floating book button */

  .floating-book {

    position: fixed;

    right: 20px;

    bottom: 30px;

    z-index: 999;

  }

  .floating-book a {

    background-color: #c5a572;

    color: #0f0f0f;

    padding: 0.9em 1.8em;

    font-weight: 600;

    border-radius: 50px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    transition: background-color 0.3s, transform 0.2s;

    text-transform: uppercase;

  }

  .floating-book a:hover {

    background-color: #b89358;

    transform: scale(1.05);

  }

</style>


<!-- Floating Book Now Button -->

<div class="floating-book">

  <a href="[YOUR_BOOKING_LINK]">Book Now</a>

</div>