/* Page content: hero, service cards, about, treatment steps and contact.
   Load order: 3rd of 5 — base, header, content, footer, responsive.

   Order matters inside this file: .step-text p must stay AFTER
   .about-content p — equal specificity, and the steps sit inside
   .about-content on prp.html.
*/

/* Hero */
.hero {
    background: linear-gradient(rgba(8, 18, 16, 0.72), rgba(8, 18, 16, 0.72)), url('../images/background1.JPEG') no-repeat center center / cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
}

/* Shorter, image-free hero for interior pages */
.hero--compact {
    height: 50vh;
    background: linear-gradient(135deg, #2C5F58 0%, #1a3e3a 100%);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: var(--radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card--coming-soon {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--accent);
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin 0.3s ease;
}

.service-link:hover::after {
    margin-left: 10px;
}

/* About */
.about-section {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.practitioner-photo {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.practitioner-name {
    font-size: 1.6rem;
}

.practitioner-role {
    color: var(--primary);
    font-weight: 600;
    margin-top: 6px;
}

/* Treatment steps — shared by prp.html and microneedling.html.
   .step-text p must follow .about-content p: equal specificity, and the
   steps sit inside .about-content on prp.html. */
.treatment-steps {
    margin: 20px 0;
}

.treatment-steps li {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 2px;
}

.step-text p {
    margin: 0;
    color: var(--text-muted);
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    /* Narrower than its grid column so the photos don't tower over the
       step list beside them. Centred in the space that remains. */
    max-width: 400px;
    margin: 0 auto;
}

.tile-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}

/* First tile spans the full width; the other two sit side by side beneath it */
.tile-grid img:first-child {
    grid-column: 1 / -1;
}

.cta-section p {
    margin-bottom: 30px;
}

/* Contact */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-block {
    margin-bottom: 25px;
}

.contact-action {
    margin-top: 15px;
}

.map-embed {
    height: 400px;
}

.map-embed iframe {
    border: 0;
}
