/* --- Global Styles & Fonts --- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

/* --- Header & Navigation --- */
.site-header {
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #000;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    margin-left: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #000;
}

.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}


/* --- Hero Quote Section --- */
.hero-quote {
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 2rem;
}

.hero-quote h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: #000;
    line-height: 1.5;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.hero-quote h2::before,
.hero-quote h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 1px;
    background-color: #ccc;
    top: 50%;
    transform: translateY(-50%);
}

.hero-quote h2::before {
    left: -120px;
}
.hero-quote h2::after {
    right: -120px;
}

/* --- Content Grid Layout --- */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: flex-start;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.content-grid.reverse .image-content {
    order: 2;
}

.content-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- NEW Full Width Photo Section --- */
#full-width-photo {
    padding: 2rem 0;
    text-align: center;
}
#full-width-photo img {
    max-width: 100%;
    height: auto;
    max-height: 80vh; /* Prevents the image from being too tall */
    display: inline-block;
}


/* --- "Come Closer" Details --- */
#details {
    border-bottom: none; /* remove second border */
}

#details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: #000;
    margin-bottom: 2rem;
}

#details ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 2;
}

#details ul strong {
    font-weight: 700;
    min-width: 140px;
    display: inline-block;
    color: #000;
}

/* --- Subscribe Section --- */
#subscribe {
    background-color: #FAEBEA;
    text-align: center;
    padding: 3rem 1rem;
}

#subscribe .container {
    max-width: 500px;
    padding: 1rem;
}

#subscribe h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2rem;
    font-weight: 400;
    color: #000;
}

#subscribe p {
    font-size: 14px;
}

#subscribe form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#subscribe input[type="email"] {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0.8rem 1rem;
    width: 70%;
    font-family: 'Montserrat', sans-serif;
}

#subscribe button {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#subscribe button:hover {
    background-color: #000;
    color: #fff;
}

/* --- Footer --- */
.site-footer {
    position: relative;
    text-align: center;
    padding: 5rem 1rem;
    color: white;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/5870702123463854887.jpg'); /* Your existing footer background */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* NEW Styling for the footer headshot */
.footer-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Makes it a circle */
    object-fit: cover; /* Prevents stretching */
    border: 4px solid white;
    margin-bottom: 1.5rem;
}

.footer-content .signature {
    color: #fff;
    font-size: 2.5rem;
}

.footer-content a {
    color: white;
    text-decoration: none;
}


/* 
==============================================
    MOBILE RESPONSIVE STYLES
==============================================
*/
@media (max-width: 768px) {

    .container {
        padding: 1.5rem;
    }

    /* --- Header for Mobile --- */
    .header-content {
        padding: 0 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav a {
        margin: 0 0.75rem;
        font-size: 14px;
    }

    .signature {
        font-size: 2rem;
    }

    /* --- Quote Section for Mobile --- */
    .hero-quote h2 {
        font-size: 2rem;
    }
    
    .hero-quote h2::before,
    .hero-quote h2::after {
        display: none;
    }

    /* --- Content Grids for Mobile --- */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .content-grid .image-content {
        order: -1;
    }
}