body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
overflow-x: hidden;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Logo Section */
.logo-section {
text-align: center;
padding: 40px 0;
background: #ffffff;
border-radius: 20px;
margin-bottom: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
}
.logo {
max-width: 300px;
height: auto;
transition: transform 0.3s ease;
filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.logo:hover {
transform: scale(1.05);
}
/* Services Tables */
.services-container {
display: grid;
gap: 30px;
margin-bottom: 40px;
}
.content-table {
width: 100%;
border-collapse: collapse;
background: #ffffff;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
border: 1px solid #e2e8f0;
margin-bottom: 20px;
transition: all 0.3s ease;
}
.content-table:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.content-table th {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
color: #333;
padding: 20px;
font-weight: 700;
text-align: left;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 0.5px;
border-bottom: 2px solid #dee2e6;
}
.content-table th:last-child,
.content-table th:nth-last-child(2) {
text-align: right;
}
.content-table td {
padding: 15px 20px;
border-bottom: 1px solid #f1f5f9;
transition: all 0.2s ease;
}
.content-table tr:hover td {
background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.content-table tr:last-child td {
border-bottom: none;
}
.content-table td[align="right"] {
text-align: right;
font-weight: 600;
color: #000000;
}
/* Main Content */
.main-content {
background: #ffffff;
padding: 40px;
border-radius: 20px;
margin-bottom: 40px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
border: 1px solid #e2e8f0;
}
.main-content h1 {
font-size: 2.2rem;
font-weight: 700;
color: #2d3748;
margin-bottom: 30px;
text-align: left;
line-height: 1.3;
}
.main-content h1 a {
color: #FF0000;
text-decoration: none;
transition: color 0.3s ease;
}
.main-content h1 a:hover {
color: #cc0000;
text-decoration: underline;
}
/* Key Points Section */
.key-points {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
color: #333;
padding: 40px;
border-radius: 20px;
margin-bottom: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
border: 1px solid #dee2e6;
}
.key-points::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FF0000 0%, #B90C3A 100%);
}
.key-points-content {
position: relative;
z-index: 2;
}
.key-points p {
text-align: center;
margin-bottom: 15px;
font-size: 1.1rem;
line-height: 1.7;
}
.key-points p:first-child {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
color: #FF0000;
}
.key-points strong {
font-weight: 700;
color: #FF0000;
}
/* Service Notice */
.service-notice {
background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
border: 2px solid #f59e0b;
border-radius: 20px;
padding: 40px;
margin-bottom: 40px;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.service-notice::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FF0000 0%, #B90C3A 100%);
}
.service-notice::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: url('data:image/svg+xml,');
animation: rotate 20s linear infinite;
}
@keyframes rotate {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.service-notice-content {
position: relative;
z-index: 2;
}
.service-notice h2 {
color: #FF0000;
font-size: 1.8rem;
font-weight: 800;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}
.service-notice h6 {
color: #000000;
margin-bottom: 15px;
font-size: 1rem;
line-height: 1.6;
}
.service-notice h6 strong {
color: #FF0000;
}
.service-notice h6:last-of-type {
margin-bottom: 0;
}
/* Appointments Section */
.appointments-section {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
color: #333;
padding: 50px 40px;
border-radius: 20px;
text-align: center;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
border: 1px solid #dee2e6;
}
.appointments-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #FF0000 0%, #B90C3A 100%);
}
.appointments-content {
position: relative;
z-index: 2;
}
.appointments-section h3 {
font-size: 2rem;
font-weight: 800;
margin-bottom: 25px;
text-transform: uppercase;
letter-spacing: 1px;
color: #000000;
}
.appointments-section p {
font-size: 1.2rem;
margin-bottom: 15px;
line-height: 1.7;
}
.phone-link {
display: inline-block;
background: linear-gradient(135deg, #FF0000 0%, #B90C3A 100%);
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.2rem;
margin-top: 20px;
transition: all 0.3s ease;
border: 2px solid #FF0000;
box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}
.phone-link:hover {
background: linear-gradient(135deg, #cc0000 0%, #8a0a2e 100%);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
color: white;
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 15px;
}
.main-content,
.key-points,
.service-notice,
.appointments-section {
padding: 25px 20px;
}
.main-content h1 {
font-size: 1.8rem;
}
.content-table th,
.content-table td {
padding: 12px 15px;
font-size: 0.9rem;
}
.key-points p {
font-size: 1rem;
}
.service-notice h2 {
font-size: 1.5rem;
}
.appointments-section h3 {
font-size: 1.7rem;
}
}
@media (max-width: 480px) {
.content-table th,
.content-table td {
padding: 10px 12px;
font-size: 0.85rem;
}
.main-content h1 {
font-size: 1.6rem;
}
}
| SERVICE | Fundamental | Advanced |
|---|---|---|
| Cut & Style | start at $25.00 | long hair start at $35.00 |
| Wash & BlowDry | starts at $18.00 | long starts at $22.00 |
| *Add on Flat Iron | start at $10.00 | start at $10.00 |
| Up Do | start at $45.00 | start at $45.00 |
| Cut Only | $15.00 | $15.00 |
| SERVICE | Fundamental | Advanced |
|---|---|---|
| Basic full Color start | $45.00 | $85.00 |
| Partial Highlights | $60.00 | long hair $75.00 |
| Half Head Highlights | short hair $85.00 | long hair $100.00 |
| Full Head Highlights | short hair $100.00 | long hair $150.00 |
| Toner | $30.00 | $30.00 |
| Balayage-Ombre | $145.00 | long hair $160.00 |
| Full Head Lightener | retouch $100.00 | upon consultation $100up |
| Brazilian Keratin/Blow Out | $120.00 | long hair $200.00 |
| Top Coat | $40.00 | $40.00 |
| SERVICE | Fundamental | Advanced |
|---|---|---|
| Permanent wave | $125.00 | $150.00 |
| Perm-Long Hair/Full Relaxer | $100.00 | $100.00 |
| Chemical Relaxer | $100.00 | $100.00 |
| Additional Chemical Applications (color, lightener, perm, and relaxer) | $8.00 | $8.00 |
| SERVICE | Fundamental | Advanced |
|---|---|---|
| Men’s/Kids Haircut | $15.00 | $25.00 |
| gray blend | $35.00 | $35.00 |
| Beard Grooming | $6.00 | $6.00 |
| Mustache Trim/Color | $10.00 | $10.00 |
| Eye Brows w/ Straight Razor | $5.00 | $5.00 |
| Mini Facial | $30.00 | $30.00 |
| Head Design (per panel) | $15.00 | $15.00 |
| Shape Up | $10.00 | $10.00 |
| Head Shave/Hot Shave/Beard Grooming | $20.00 | $20.00 |
| Hot Lather Shave | $10.00 | $12.00 |
| Haircut with Chemical Service | $12.00 | $12.00 |
| Men’s Hair Color | starting at $35.00 | start at $55.00 |
| Menu Highlight | starts at $65.00 | start at $65.00 |
| SERVICE | Fundamental | Advanced |
|---|---|---|
| Keratin Triplex Treatment | $40.00 | $40.00 |
| Deep Conditioner | $15.00 | $15.00 |
| Hair Extensions for volume/upon consultation | $ | $ |
| SERVICE | Fundamental | Advanced |
|---|---|---|
| Makeup Application | 30.00 | 45.00 |
| Eyebrows | 10.00 | 10.00 |
| Manicure | 15.00 | 15.00 |
| Pedicure | basic 25.00 | basic 25.00 |
| Nail Polish | 12.00 | 12.00 |


Comments are closed.