<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pressed By Sassy</title>

<style>
/* --------------------------
   GLOBAL
--------------------------- */
body {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

a {
    color: #ff4fd6;
    text-decoration: none;
}

:root {
    --neon-pink: #ff4fd6;
    --light-gray: #dcdcdc;
    --dark-overlay: rgba(20, 20, 20, 0.85);
}

/* --------------------------
   HEADER / PROFILE
--------------------------- */
.profile-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 15px;
    box-shadow: 0 0 25px var(--neon-pink);
}

.profile-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    text-align: center;
    font-size: 40px;
    color: var(--neon-pink);
    font-weight: 700;
    text-shadow: 0 0 15px var(--neon-pink);
    margin: 10px 0;
}

.hero-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

/* --------------------------
   ABOUT SECTION
--------------------------- */
.about {
    max-width: 850px;
    margin: 0 auto 40px;
    padding: 25px;
    font-size: 16px;
    color: var(--light-gray);
    background: var(--dark-overlay);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 79, 214, 0.2);
}

/* --------------------------
   INFO BOXES
--------------------------- */
.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 40px auto;
    padding: 0 20px;
}

.info-box {
    flex: 1 1 260px;
    border: 1px solid #333;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    background: var(--dark-overlay);
    box-shadow: 0 0 20px rgba(255, 79, 214, 0.25);
}

.info-box h3 {
    color: var(--neon-pink);
    margin-bottom: 12px;
    font-size: 22px;
    text-shadow: 0 0 10px var(--neon-pink);
}

.info-box span, 
.info-box a {
    display: block;
    color: var(--light-gray);
    margin: 4px 0;
}

/* --------------------------
   BOOKING BUTTON
--------------------------- */
.button-book {
    display: block;
    width: fit-content;
    color: #000;
    background: var(--neon-pink);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 0 12px var(--neon-pink);
    margin: 40px auto;
    transition: 0.3s;
}

.button-book:hover {
    box-shadow: 0 0 25px var(--neon-pink);
}

/* --------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
    }
    .info-box {
        max-width: 400px;
        width: 100%;
    }
}
</style>

</head>
<body>

<!-- PROFILE IMAGE -->
<div class="profile-wrapper">
    <!-- Replace this with your actual image file -->
    <img src="YOUR-PHOTO.jpg" alt="Zipporah, Pressed By Sassy">
</div>

<!-- TITLES -->
<h1 class="hero-title">Pressed By Sassy</h1>
<p class="hero-subtitle">Stylist • Greensboro, NC</p>

<!-- ABOUT SECTION -->
<div class="about">
    <p>Hi! I’m <strong>Zipporah</strong>, the stylist behind <strong>Pressed By Sassy</strong>. 
    I’ve been doing hair professionally since 2020, but it’s been my passion long before then. 
    My goal is to make every client feel beautiful, confident, and cared for — whether you're booking a silk press,
    trim, healthy hair treatment, or a transformation service.</p>

    <p>I believe healthy hair comes first, and every appointment should feel like a moment of self-care.</p>
</div>

<!-- CONTACT / LOCATION -->
<div class="info-container">

    <div class="info-box">
        <h3>Contact</h3>
        <a href="tel:3368752339">336-875-2339</a>
        <a href="mailto:Zwestern12@gmail.com">Zwestern12@gmail.com</a>
    </div>

    <div class="info-box">
        <h3>Location</h3>
        <span>Greensboro, NC</span>
    </div>
</div>

<!-- BOOKING BUTTON -->
<a class="button-book" 
   href="https://pressedbysassy.secure.simplybook.me/v2/design#theme-tab"
   target="_blank">
   Book an Appointment
</a>

</body>
</html>