/* About Page Specific Styles */

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: justify;
}

.specialization {
    margin-bottom: 40px;
}

.specialization h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 600;
}

.specialization ul {
    list-style: none;
    padding: 0;
}

.specialization li {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialization li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.specialization strong {
    color: #8B4513;
    font-weight: 600;
}

.experience h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 600;
}

.experience p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-placeholder {
    text-align: center;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #8B4513;
}

.designer-photo {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-caption {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.why-choose-me {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.why-choose-me h3 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        margin: 30px auto;
        padding: 0 30px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-container {
        margin: 20px auto;
        padding: 0 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .intro {
        font-size: 1.1rem;
    }
    
    .specialization h3,
    .experience h3 {
        font-size: 1.5rem;
    }
    
    .why-choose-me {
        padding: 30px 20px;
    }
    
    .why-choose-me h3 {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .designer-photo {
        max-width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .intro {
        font-size: 1rem;
    }
    
    .specialization li {
        padding: 12px 15px;
    }
    
    .image-placeholder {
        padding: 20px;
    }
    
    .designer-photo {
        max-width: 200px;
        height: 200px;
    }
}
