/* General Styles */
.topnav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 10px;
}
.contact-button {
    display: inline-block;
    background-color: #311706; /* Choose a color you like */
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: sans-serif; /* or any font you prefer */
    font-size: 14px;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #9E7C59; /* Darken the button on hover */
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../images/Coffee-Beans_02.gif') repeat, #281206; /* #281206 is the fallback color */
    background-size: auto;
    color: #2F1C15;
}


/* Header */
.header {
    text-align: center;
    padding: 20px;
    background-color: rgba(200,180,150,0.80);
}

/* Form Container */

.form-container {
    width: 90%;
    max-width: 8
		800px;
    margin: 20
		20px auto;
    padding: 20px;
    background-color: rgba(211,187,157,0.80);
    border-radius: 12px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}
.message-box {
    width: 100%; /* Adjust for responsiveness */
    max-width: 700px; /* Adjust this size as needed */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical; /* Allows resizing only vertically */
}

/* Styling for input fields, like email and full name */
input[type="text"], input[type="email"] {
    width: 100%; /* Make inputs responsive */
    max-width: 400px; /* Match the max-width of .message-box */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Form Group */
.form-group {
    margin-bottom: 15px;
}
.form-container {
    width: 95%; /* Adjust for responsiveness */
    max-width: 700px; /* Increase this value for a wider form */
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(200,180,150,0.80Derek and I gave a dallas );
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* Form Actions */
.form-actions {
    text-align: center;
}

button {
    padding: 10px 20px;
    background-color: #311706;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #662E00;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1px;
    background-color: rgba(200,180,150,0.80);
}

