﻿@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i");


/** Testimonials **/
.testimonials-grid {
    padding: 30px 20px;
    background: #fafafa;
}

    .testimonials-grid .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .testimonials-grid .card {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .testimonials-grid .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.10);
        }

        .testimonials-grid .card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #333;
        }

        .testimonials-grid .card p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
        }

/** for healing stories **/
.card-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

/* Make each card stretch naturally */
.story-card {
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    /* Hover effect */
    .story-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

/* Title */
.story-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #333;
}

/* Content */
.story-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    white-space: pre-line;
}

/* Mobile */
@media (max-width: 600px) {
    .card-grid {
        max-width: 100%;
        padding: 20px 16px;
    }

    .story-card {
        padding: 24px;
    }

    .story-title {
        font-size: 1.3rem;
    }

    .story-content {
        font-size: 1rem;
        line-height: 1.55;
    }
}

/** Healing Programs layout **/
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 40px 20px;
}

.program-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .program-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

.program-icon {
    margin-bottom: 14px;
}

.program-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.program-tagline {
    font-size: 1.2rem;
    color: #0ba9eb;
    margin-bottom: 16px;
}

.program-price {
    font-size: 1.5em;
    font-weight: 500;
    padding-bottom: 16px;
}

/* Container Paypal buttons */
.paypal-wrapper {
    position: relative;
    display: inline-block;
    width: 100%; /* Spans full card width. Adjust to 'max-width: 250px' if you want it narrower */
}

    /* Force your custom button to stretch to the boundaries of the wrapper */
    .paypal-wrapper .button {
        width: 100%;
        font-size: 1.05em;
        display: block;
        pointer-events: none; /* Clicks pass through to the clickable layer on top */
    }

/* Position the PayPal container directly over your custom button and make it invisible */
.paypal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* 100% invisible, but still fully functional! */
    z-index: 10; /* Ensures it sits on top of your button */
    cursor: pointer;
    overflow: hidden;
}

    /* Force the PayPal iframe elements inside to scale and fill the invisible space */
    .paypal-overlay iframe,
    .paypal-overlay div,
    .paypal-overlay ul {
        height: 100% !important;
        min-height: 100% !important;
        cursor: pointer !important;
    }

input::placeholder, textarea::placeholder, select::placeholder {
    font-style: italic;
    opacity: 0.8;
}

.info-box {
    max-width: 860px; 
    margin: 0px auto; 
    padding: 50px 50px; 
    text-align: left; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
    border-radius: 8px; 
    border: 1px solid #eee; 
    background: #fff;
}

.spacing {
    padding: 10px 4px;
}

.diagram {
    border: 1px solid silver; /* silver border */
    border-radius: 12px; /* rounded corners */
    padding: 6px; /* optional spacing inside border */
    background-color: #fff; /* optional background for contrast */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow for depth */
}

/* --- Dashboard Summary Cards --- */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
    gap: 15px;
    margin-bottom: 25px;
}

/* Desktop layout: 4 cards in 1 row */
@media (min-width: 768px) {
    .dashboard-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dashboard-card {
    text-align: center;
    padding: 15px;
}

.dashboard-card-pending {
    border-left: 4px solid #f57c00;
}

.dashboard-card-completed {
    border-left: 4px solid #2e7d32;
}

.dashboard-card h4 {
    margin: 0;
    color: #666;
}

.dashboard-card h2 {
    margin: 5px 0;
}

/* Specific text highlight colors */
.dashboard-text-success {
    color: #2e7d32;
}

.dashboard-text-warning {
    color: #f57c00;
}

/* footer disclaimer */

.footer-disclaimer {
    text-align: center;   
    max-width: 75%;
    margin: 1em auto 0;
}
    .footer-disclaimer p {
        font-size: 0.85em;
        font-style: italic;       
        line-height: 1.5;
    }