/* ---
NAIL ENVY BALI - SERVICES PAGE STYLES
--- */

/* --- Page Title --- */
.page-title-section {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.page-title-section .container {
    position: relative;
    z-index: 2;
}

.page-title-section h1 {
    font-size: 3.5rem;
    color: var(--white);
}

.page-title-section p {
    font-size: 1.2rem;
    color: var(--pink-main);
}

/* --- Service Category --- */
.service-category {
    margin-bottom: 4rem;
}

.service-category__title {
    font-size: 2rem;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--pink-main);
    display: inline-block;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- Service Card --- */
.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.service-card--full {
    grid-column: 1 / -1; /* Make this card span the full width */
    text-align: center;
}

.service-card__title {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card__price {
    font-size: 1.5rem;
    font-family: var(--heading-font);
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.service-card__description {
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.service-card__duration {
    margin-top: auto;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}
