/*
 * About Section Styles
 * KCShofarYah Theme
 */

.about-section {
    background: transparent;
    padding: 4rem 2rem;
    min-height: 60vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-header h2 {
    color: var(--platinum);
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
}

.menorah-icon {
    width: 80px;
    height: auto;
    opacity: 0.9;
}

.about-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-image-wrapper {
    position: relative;
    max-width: 300px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid rgba(255,255,255,0.1);
}

.about-text {
    color: var(--platinum);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.2rem !important;
    font-weight: 500;
}

.about-text strong {
    color: var(--turquoise-surf);
    font-weight: 700;
}

@media (max-width: 900px) {
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .about-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .menorah-icon {
        width: 60px;
        height: auto;
    }
    
    .menorah-left {
        display: none;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
    }
    
    .about-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}
