/* Reset styles for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

/* Style for header element */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.header a img {
    max-height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:hover {
    color: #843d14c6;
    transition: all 0.3s ease;
    transform: scale(1.1);
}

nav ul li:last-child {
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    font-weight: 300;
}

nav ul li a:hover {
    color: #b0663bc6;
    transition: all 0.3s ease;
    transform: scale(1.2);
}

nav ul li a.current {
    color: rgba(190, 123, 75, 0.91);
    font-weight: 600;
}

body {
    max-height: 100vh;
    max-width: 100vw;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}
.contact-info h2 {
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 20px;
}

/* Style for contact form container */
.contact-form-container {
    max-width: 600px;
    margin: 20px auto 100px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: rgba(190, 123, 75, 0.91);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

#form-status {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
}

#form-status .success {
    color: #28a745;
}

#form-status .error {
    color: #dc3545;
}

/* Style for footer element */
footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: white;
    padding: 10px;
    text-align: center;
}

footer p {
    color: #6e6e6e;
}