/* --- Basic Setup & Google Font --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #312927;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    font-weight: 500;
}

.page-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-rows: auto 1fr auto; /* Header, Main, Footer */
    gap: 2rem;
}

a {
    text-decoration: none;
}

/* --- Main Content Layout (2 Columns) --- */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}


/* --- Left Column: Text --- */
.text-content h1 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #FFFFFF
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
}

.contact-btn {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 0.8rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #5e4e42;
    color: #FFFFFF;
    border: 2px solid #5e4e42;

}


/* --- Right Column: Image & Shape --- */
.image-wrapper {
    position: relative; /* Needed to position the shape */
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%; /* Makes the image circular */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    z-index: 2; /* Puts the image in front of the shape */
    position: relative;
}


/* --- Responsive Design for Smaller Screens --- */
@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr; /* Stack columns on top of each other */
        text-align: center;
    }

    .text-content {
        order: 2; /* Put text below image on mobile */
    }
    
    .image-wrapper {
        order: 1;
        margin-bottom: 2rem;
    }

    .text-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .site-header, .site-footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}