/* About Page Specific Styles */

.about-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.about-container {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    position: relative;
}

.about-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    z-index: -1;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.15);
    object-fit: cover;
    aspect-ratio: 3/4;
}

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

.intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    line-height: 1.9;
    color: var(--burgundy-main);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.story-section {
    margin-bottom: 2.5rem;
}

.story-section p {
    margin-bottom: 1.5rem;
}

.story-section em {
    color: var(--plum);
    font-style: italic;
}

.turning-point {
    /* Removed special formatting - now matches other paragraphs */
}

.emphasis {
    color: var(--forest-green);
    font-weight: 500;
}

.intention {
    background: rgba(156, 175, 136, 0.08);
    padding: 1.5rem;
    border-left: 3px solid var(--forest-green);
    border-radius: 4px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--burgundy-main);
    margin-top: 2rem;
}

.credentials-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.credentials-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 1.2rem;
    letter-spacing: 0.08em;
}

.credentials-list,
.training-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(242, 213, 217, 0.2);
    border-radius: 4px;
}

.credentials-list strong {
    color: var(--burgundy-main);
    font-size: 1.15rem;
}

.credential-detail {
    color: var(--burgundy-light);
    font-size: 0.95rem;
    font-style: italic;
}

.training-list {
    margin-top: 1.5rem;
}

.training-list li {
    padding: 0.8rem 0 0.8rem 1.5rem;
    position: relative;
    color: var(--burgundy-main);
}

.training-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 2rem 1.5rem;
    }
    
    .about-container::before {
        display: none;
    }
    
    .credentials-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 1rem;
    }
    
    .about-container {
        padding: 1.5rem 1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .credentials-section {
        padding: 1rem;
    }
}
