/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #767779;
    /* Remove original background-color and transition if you want the image to dominate */
    /* background-color: #2f4f7f; */
    /* transition: background-color 0.3s ease; */

    /* --- Full Page Background Image Styles --- */
    background-image: url('https://jahcapturedphotos.com/wp-content/uploads/2025/05/photo1-1.jpg'); /* Replace with your image URL/path */
    background-size: cover; /* This makes the image cover the entire element */
    background-position: center center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the image fixed when scrolling */
    /* --- End Full Page Background Image Styles --- */
}

.chat-header {
    display: flex;
    align-items: center;
    background-color: #2c2b2b;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #0077cc;
}

h2 {
color: white;
font-size: 18px;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #ccc;
}

/* Header Styles */

header {
    background-color: #1a1d23;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav {
    margin-right: 2rem;
}

header .logo {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

/* Form Styles */

form {
    max-width: 500px;
    padding: 1.5rem;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    color: white;
    background-color: #1a1d23;
    transition: background-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    background-color: #2f4f7f;
}

textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background-color: #1a1d23;
    transition: background-color 0.3s ease;
}

textarea:focus {
    outline: none;
    background-color: #2f4f7f;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #3498db;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #2980b9;
}

/* Container Styles */

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #2d2d2d;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */

footer {
    background-color: #222;
    padding: 1rem;
    color: #fff;
    text-align: center;
    clear: both;
}

