/* Contact Section */
#contact {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0px 0px 15px rgba(139, 0, 0, 0.5);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

/* Form Inputs */
input, textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    background: #0d0d0d;
    color: #c5c5c5;
    border: 2px solid #7b0202;
    border-radius: 5px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #a30000;
    box-shadow: 0px 0px 8px rgba(139, 0, 0, 0.7);
}

/* Contact Button */
.button {
    display: inline-block;
    padding: 12px 20px;
    background: #7b0202;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid #a30000;
    font-family: 'Cinzel Decorative', serif;
}

.button:hover {
    background: #a30000;
    box-shadow: 0px 0px 12px rgba(139, 0, 0, 0.9);
}
