/* About Page Styles */
.about-page {
    padding: 8rem 0 4rem 0;
    background: white;
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.about-image-section {
    position: sticky;
    top: 8rem;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.about-text-section {
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.about-name {
    font-size: 2.5rem;
    font-weight: 300;
    color: #000;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
}

.about-title {
    font-size: 1.2rem;
    color: var(--primary-black);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-location {
    font-size: 1rem;
    color: #666;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.about-text {
    line-height: 1.8;
}

.about-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-black);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page {
        padding: 6rem 0 2rem 0;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-section {
        position: static;
        order: 1;
    }
    
    .about-image {
        height: 250px;
    }
    
    .about-text-section {
        order: 2;
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .about-name {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-title {
        text-align: center;
        font-size: 1rem;
    }
    
    .about-location {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
