/* 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;
    }
}

/*==============================
EXHIBITION
==============================*/

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.exhibition{
    padding-bottom:100px;
}

.exhibition h2{
    font-family:'Cormorant Garamond',serif;
    text-align:center;
    font-size:44px;
    font-weight:500;
    color:#222;
}

.gold-line{
    width:80px;
    height:2px;
    background:#b78b47;
    margin:18px auto 35px;
}

.info{
    display:flex;
    justify-content:center;
    gap:30px;
    font-size:15px;
    color:#777;
    margin-bottom:50px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.item{
    overflow:hidden;
    cursor:pointer;
    background:#fff;
}

.item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.6s;
}

.item:hover img{
    transform:scale(1.08);
}