/* Inner Pages Styles */

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.mirror-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, var(--cream) 50%, #ecfdf5 100%);
}

.breathwork-hero {
    background: linear-gradient(135deg, #eff6ff 0%, var(--cream) 50%, #f0f9ff 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(5, 150, 105, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.magic-text-green {
    background: linear-gradient(135deg, var(--forest-green), var(--emerald), #34d399);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.page-hero .hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-medium);
}

/* Page Content */
.page-content {
    padding: 80px 20px;
    background: var(--white);
}

.content-block {
    max-width: 700px;
    margin: 0 auto 80px;
}

.content-block.centered {
    text-align: center;
}

.content-block h2 {
    color: var(--forest-green);
    margin-bottom: 25px;
    font-size: 2rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 1.2em;
}

.content-block .lead {
    font-size: 1.3rem;
    color: var(--forest-green);
    font-weight: 500;
}

/* Floating Mirror Image */
.floating-mirror {
    width: 250px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 20px 40px rgba(5, 150, 105, 0.25));
    animation: gentleFloat 5s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Affirmation Cards */
.affirmation-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-left: 4px solid var(--emerald);
    padding: 30px 35px;
    border-radius: 0 20px 20px 0;
    margin: 30px 0;
}

.affirmation-card.small {
    padding: 20px 25px;
    margin: 15px 0;
}

.affirmation {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--forest-green);
    margin: 0;
    line-height: 1.5;
}

.affirmation-card.small .affirmation {
    font-size: 1.1rem;
}

.affirmation-examples {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

/* Highlight Box */
.highlight-green {
    font-style: italic;
    color: var(--emerald);
    font-size: 1.2rem;
    padding: 30px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 20px;
    margin-top: 30px;
    text-align: center;
}

/* Page CTA */
.page-cta {
    padding: 100px 20px;
    text-align: center;
    background: url('images/bg-main.png') center/cover no-repeat;
}

.page-cta h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 100px 20px 40px;
    }

    .content-block {
        margin-bottom: 60px;
    }

    .floating-mirror {
        width: 180px;
    }

    .affirmation {
        font-size: 1.2rem;
    }
}
