/* === BASE SETUP === */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
}

/* === LAYOUT === */
.contact-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Column 1: Image Panel */
.image-panel {
    flex-basis: 38%; 
    
    /* =====================================================================
      THIS IS THE FIX: 
      I have added a direct URL to an image with red colours and shadows.
      Now the image will appear automatically.
      =====================================================================
    */
    background-image: url('Assets/con.jpg');
    
    background-size: cover;
    background-position: center;
}

/* Column 2: Text Panel */
.text-panel {
    flex-basis: 62%;
    background-color: #000000;
    color: #ffffff;
    padding: 5vw 7vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* === TYPOGRAPHY === */

/* Main Title "GET IN TOUCH" */
.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin: 0 0 5rem 0;
    line-height: 1.0; 
}

/* Line 1: "GET" */
.main-title .line-one {
    display: block;
    font-size: 8rem;
}

/* Line 2: "IN TOUCH" */
.main-title .line-two {
    display: flex;
    align-items: baseline; 
}

.main-title .in {
    font-style: italic;
    font-size: 3.5rem; 
    margin-right: 0.8rem;
}

.main-title .touch {
    font-style: italic;
    font-size: 8.5rem; 
    letter-spacing: -0.02em; 
}

/* Contact Details Section */
.contact-details {
    font-size: 1rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .label {
    margin: 0 0 0.4rem 0;
    font-weight: 500;
}

.contact-item .value {
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Bottom Link */
.collabs-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3rem;
}


/* === RESPONSIVE FOR MOBILE === */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .image-panel {
        flex-basis: auto;
        height: 50vh;
    }
}