/* 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;
}


/* 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;
    }
}

.about-section{
    padding:90px 10px;
}

.about-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:520px 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    overflow:hidden;
}

.about-image img{
    width:100%;
    object-fit:cover;
}

.about-content span{
    color:#b68442;
    letter-spacing:4px;
    font-size:13px;
}

.about-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:55px;
    margin-top:12px;
    color:#222;
    font-weight:500;
}

.line{
    width:450px;
    height:2px;
    background:#b68442;
    margin:22px 0 35px;
}

.about-content p{
    font-size:16px;
    line-height:1.95;
    color:#666;
    margin-bottom:22px;
}

/*==========================
BUTTON
===========================*/



/*==========================
QUOTE STRIP
===========================*/

.quote-strip{
    background:#32557a;
    color:#fff;
    padding:65px 20px;
    text-align:center;
}

.quote-strip h3{
    font-family:'Cormorant Garamond',serif;
    font-size:40px;
    font-weight:400;
    line-height:1.6;
    max-width:900px;
    margin:auto;
}