/**
 * Services Page Specific Styling
 * Lannie's Nails and Hair Salon
 */

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/services-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Navigation */
.services-nav {
    background-color: var(--light-background);
    position: sticky;
    top: 68px;
    z-index: 900;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.services-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 2rem;
}

.services-nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.services-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.services-nav a:hover {
    color: var(--primary-color);
}

.services-nav a:hover::after {
    width: 100%;
}

/* Service Categories and Groups */
.service-category {
    padding: 5rem 0;
}

.service-category:nth-child(even) {
    background-color: var(--light-background);
}

.service-group {
    margin-bottom: 3rem;
}

.service-group:last-child {
    margin-bottom: 0;
}

.service-group h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

/* Service Items */
.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.5;
}

/* Service Note Section */
.service-note {
    padding: 4rem 0;
    background-color: rgba(188, 143, 143, 0.1);
}

.service-note h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
}

.service-note p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Call to Action */
.call-to-action {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.call-to-action p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .services-nav {
        top: 60px;
    }
    
    .services-nav ul {
        gap: 1rem;
    }
    
    .call-to-action h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 60px 0;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .service-group h3 {
        font-size: 1.4rem;
    }
    
    .service-note h3 {
        font-size: 1.5rem;
    }
} 