/* About Page Styles - Signature Works Typography Applied */
.about-section {
    padding: 0px 40px;
    max-width: 1600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(181, 232, 255, 0.05) 0%, rgba(52, 229, 249, 0.05) 100%);
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.page-heading {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
}

.page-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #34e5f9 100%);
    border-radius: 2px;
}

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

.about-text {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(181, 232, 255, 0.1);
    border: 1px solid rgba(181, 232, 255, 0.2);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    line-height: 1.3;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #34e5f9 100%);
    border-radius: 3px;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2c3e50;
    margin: 35px 0 20px 0;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #34e5f9 100%);
    border-radius: 1px;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 1.15rem;
    text-align: justify;
    font-weight: 400;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    background: rgba(181, 232, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(181, 232, 255, 0.2);
}

.services-list li {
    font-family: 'Poppins', sans-serif;
    padding: 18px 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6c757d;
    box-shadow: 0 4px 15px rgba(181, 232, 255, 0.08);
    border-left: 4px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, rgb(181, 232, 255) 0%, #34e5f9 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 400;
}

.services-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(181, 232, 255, 0.15);
    border-left-color: rgb(181, 232, 255);
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list strong {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.about-image {
    text-align: center;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.artist-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(181, 232, 255, 0.3);
    transition: all 0.4s ease;
    border: 4px solid white;
    position: relative;
    overflow: hidden;
}

.artist-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(181, 232, 255, 0.2) 0%, rgba(52, 229, 249, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.artist-photo:hover::before {
    opacity: 1;
}

.artist-photo:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 80px rgba(181, 232, 255, 0.4);
}

/* Commission Page Styles */
.contact-cta {
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(181, 232, 255, 0.1) 0%, rgba(52, 229, 249, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(181, 232, 255, 0.2);
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgb(181, 232, 255) 0%, #34e5f9 100%);
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(181, 232, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(181, 232, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        position: static;
        order: -1;
    }
    
    .artist-photo {
        max-width: 350px;
    }
    
    .page-heading {
        font-size: 3rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 0px 30px;
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    .page-heading {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .about-text {
        padding: 30px 20px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        padding-left: 15px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p,
    .services-list li {
        font-size: 1.1rem;
    }
    
    .artist-photo {
        max-width: 300px;
    }
    
    .services-list {
        padding: 15px;
    }
    
    .services-list li {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 10px;
        border-radius: 15px;
    }
    
    .page-heading {
        font-size: 2rem;
    }
    
    .about-text {
        padding: 25px 15px;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .services-list li {
        font-size: 0.95rem;
    }
    
    .artist-photo {
        max-width: 250px;
        border-radius: 15px;
    }
    
    .contact-cta {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}
