/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif; /* Using a classic serif font to match the aesthetic */
    line-height: 1.6;
    background-color: #f4f9f9;
    color: #333;
}

/* Header & Nav */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
}

.social-icons a, .search-icon i {
    color: #333;
    margin: 0 10px;
    text-decoration: none;
}

.main-menu {
    margin-top: 20px;
}

.main-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.main-menu ul li {
    margin: 0 15px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Main Content Wrapper */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Hero Art */
.hero-art {
    text-align: center;
    margin-bottom: 40px;
}

.hero-art img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Bio Section */
.bio-section {
    text-align: center;
    color: #444;
}

.bio-section p {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.artist-portrait img {
    width: 100%;
    margin: 30px 0;
}

.quote-text {
    margin-top: 30px;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: #555;
    font-size: 0.8rem;
    text-decoration: underline;
}

/* Contact Grid Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
    background: #fff;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    padding: 60px 40px;
    background-color: #f1f5f5;
}

.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    background: #fff;
}

.submit-btn {
    background: none;
    border: 1px solid #333;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #333;
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background: #f4f9f9;
    margin-top: 50px;
}

.footer-logo {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-socials a {
    color: #333;
    margin: 0 10px;
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 40px;
    font-size: 0.7rem;
    color: #888;
    display: flex;
    justify-content: space-between;
}

/* --- RESPONSIVENESS --- */

/* Tablet View */
@media (max-width: 768px) {
    .main-menu ul {
        flex-wrap: wrap;
    }
    .main-menu ul li {
        margin: 5px 10px;
    }
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns */
    }
    .contact-image {
        height: 400px;
    }
}

/* Phone View */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    .main-menu ul li a {
        font-size: 0.7rem;
    }
    .contact-form-container {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}








.sold-artwork{
    width:1200px;
    max-width:92%;
    margin:60px auto 100px;
}

.line{
    width:2px;
    height:45px;
    background:#d97b74;
    margin:0 auto 40px;
}

.intro{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
    font-size:20px;
    
    font-weight:600;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px 55px;
    justify-items:center;
}

.item{
    width:120px;
    height:120px;
    overflow:hidden;
}

.item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
    cursor:pointer;
}

.item:hover img{
    transform:scale(1.08);
}


@media(max-width:992px){

.gallery{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.gallery{
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.footer-bottom{
flex-direction:column;
gap:10px;
text-align:center;
}

}

@media(max-width:480px){

.gallery{
grid-template-columns:1fr;
}

.item{
width:180px;
height:180px;
}

}