
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --bg-light: #F6F2EC;
    --text-dark: #0D0D0D;
    --accent: #2c2c2c;
    --card-bg: #fff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    padding: 20px;
    text-align: left;
}

header h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

.back {
    color: black;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    width: 90%;
    margin: 50px auto;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px var(--shadow);
    position: relative;
    background: #f1f0f0;
    top: -8vh;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color : rgb(0, 0, 0);
}

.contact-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 8px 20px var(--shadow);
}

.contact-info {
    text-align: center;
    margin-top: 15px;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 1rem;
    margin: 5px 0;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    color : rgb(0, 0, 0);
}

.contact-info a:hover {
    text-decoration: underline;
}

form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    color : rgb(0, 0, 0);
    top:10px;
}

label {
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background-color: var(--accent);
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #383838;
}

#statusMessage {
    text-align: center;
    color: green;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .contact-image img {
        width: 180px;
        height: 180px;
    }
}
