/* General Styles */
body {
    background-color: #161616;
    color: #06b6d4;
    font-family: 'Lora', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Navigation */
.header-container {
    display: flex;
    justify-content: center;
    background-color: #161616;
    padding: 15px 20px;
    border-bottom: 2px solid #06b6d4;
}

.nav-bar {
    display: flex;
    gap: 20px;
}

.nav-bar a {
    text-decoration: none;
    color: white !important;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.nav-bar a:hover,
.nav-bar a.active {
    background-color: #06b6d4;
    color: #161616;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 60px 20px;
}

.contact-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 1.2em;
    color: #e3e3e3;
    margin-bottom: 40px;
}

/* Form Styling */
.form-container {
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 400px;
    background: #161616;
    padding: 30px;
    box-shadow: 0 0 20px #06b6d4;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    font-size: 14px;
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #06b6d4;
    outline: none;
}

#submit-button {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: #06b6d4;
    font-weight: bold;
    border: 2px solid #06b6d4;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

#submit-button:hover {
    background-color: #06b6d4;
    color: #161616;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #161616;
    color: black;
    border-top: 2px solid #06b6d4;
    position: relative;
    width: 100%;
}

footer a {
    color: #06b6d4;
    text-decoration: none;
}

footer a:hover {
    color: black;
}
