/* 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: 1rem;
}

.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;
    }
}



.hero-art{
    width:45rem;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 0;
}

.slider{
    position:relative;
    width:100%;
    max-width:700px;
    border-radius:18px;
    overflow:hidden;


}

.slides{
    position:relative;
    width:100%;
    height:800px;
}

.slide{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:contain;
    object-position:center center;

    opacity:0;
    transition:.6s ease;

}

.slide.active{
    opacity:1;
}
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.7);
    cursor:pointer;
    font-size:24px;
    z-index:10;
    transition:.3s;
}

.slider-btn:hover{
    background:#fff;
}

.prev{
    left:15px;
}

.next{
    right:15px;
}

@media(max-width:768px){

.slides{
    height:350px;
}

.slider-btn{
    width:42px;
    height:42px;
    font-size:20px;
}

}