/* Somatic Healing Page Styles */

.somatic-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.page-container {
    position: relative;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 400;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 3rem;
    letter-spacing: 0.12em;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 400;
    text-align: center;
    color: var(--burgundy-main);
    margin: 4rem 0 3rem;
    letter-spacing: 0.12em;
}

/* Text Blocks */
.text-block {
    background: rgba(250, 248, 245, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-bottom: 3rem;
}

.text-block p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--burgundy-main);
    margin-bottom: 1.2rem;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.text-block em {
    color: var(--plum);
    font-style: italic;
}

.centered-quotes-block {
    text-align: center;
    margin: 1.5rem 0;
}

.centered-quotes-block p {
    margin: 0;
    line-height: 1.6;
}

.centered-quotes-block em {
    color: var(--plum);
    font-style: italic;
}

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

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

/* Wide Images */
.wide-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(90, 124, 90, 0.15);
}

.wide-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

/* Wisdom Quote */
.wisdom-quote {
    background: rgba(156, 175, 136, 0.08);
    border-left: 3px solid var(--forest-green);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    margin: 3rem 0 4rem;
}

.wisdom-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    line-height: 1.9;
    color: var(--forest-green);
    font-weight: 500;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Expect Items */
.expect-item-new {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: start;
    background: rgba(250, 248, 245, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.expect-item-new.reverse-layout {
    grid-template-columns: 1.5fr 1fr;
}

.expect-item-new.reverse-layout .expect-image {
    order: 2;
}

.expect-item-new.reverse-layout .expect-text-new {
    order: 1;
}

.expect-image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(90, 124, 90, 0.15);
}

.expect-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.expect-text-new {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--burgundy-main);
}

.expect-text-new p {
    margin-bottom: 1.2rem;
}

.expect-text-new p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem 0 2rem;
}

/* Resources Section */
.resources-section {
    margin: 4rem 0 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(156, 175, 136, 0.2);
}

.resources-category {
    margin-bottom: 3rem;
}

.resources-category-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 1.7rem);
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.resource-item {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 124, 90, 0.08);
}

.resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 124, 90, 0.15);
    background: rgba(250, 248, 245, 0.8);
}

.resource-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
}

.resource-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: var(--burgundy-main);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.resource-link:hover .resource-title {
    color: var(--forest-green);
}

.resource-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--burgundy-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .expect-item-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expect-item-new.reverse-layout {
        grid-template-columns: 1fr;
    }
    
    .expect-item-new.reverse-layout .expect-image {
        order: 0;
    }
    
    .expect-item-new.reverse-layout .expect-text-new {
        order: 0;
    }
    
    .expect-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .somatic-page {
        padding: 1.5rem 1rem;
    }
    
    .text-block {
        padding: 2rem 1.5rem;
    }
    
    .wisdom-quote {
        padding: 2rem 1.5rem;
    }
    
    .expect-item-new {
        padding: 1.5rem;
    }
    
    .wide-image img {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .text-block {
        padding: 1.5rem 1rem;
    }
    
    .wisdom-quote {
        padding: 1.5rem 1rem;
    }
    
    .expect-item-new {
        padding: 1rem;
    }
    
    .text-block p,
    .expect-text-new {
        font-size: 1rem;
    }
    
    .wide-image img {
        max-height: 200px;
    }
}
