/* 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;
    }
}

/* PAGE */

.contact-page{
    width:1200px;
    max-width:92%;
    margin:40px auto 90px;
}

.title{
    text-align:center;
    margin-bottom:70px;
}

.title h1{
    font-family:'Cormorant Garamond',serif;
    font-size:110px;
    font-weight:700;
}

.line{
    width:2px;
    height:50px;
    background:#e78b7d;
    margin:20px auto;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.left-side{
    padding-right:35px;
}

.left-side h2{
    font-family:'Cormorant Garamond',serif;
    font-size:64px;
    margin-bottom:25px;
}

.left-side p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.left-side hr{
    border:none;
    border-top:1px solid #e3e3e3;
    margin:30px 0;
}

.left-side h3{
    font-family:'Cormorant Garamond',serif;
    font-size:44px;
    margin-bottom:20px;
}

.address{
    display:flex;
    align-items:center;
    gap:12px;
    color:#666;
}

.address i{
    color:#ff5533;
}

/* RIGHT */

.right-side{
    padding-left:45px;
    border-left:2px solid #81dcff;
}

.right-side h2{
    font-family:'Cormorant Garamond',serif;
    font-size:55px;
    margin-bottom:35px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:500;
}

.form-group span{
    color:red;
}

input,
textarea{
    width:100%;
    border:1px solid #ddd;
    padding:13px;
    background:#fff;
    font-size:15px;
    outline:none;
}

textarea{
    resize:none;
}

button{
    border:none;
    background:none;
    font-weight:600;
    letter-spacing:2px;
    cursor:pointer;
    margin-top:15px;
    border-bottom:2px solid #ddd;
    padding-bottom:6px;
}