
body {
    font-family: Georgia, 'Times New Roman', Times, serif ;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

header {
    background-color:#a40e0e;
    color: white;
    padding: 10px;
    text-align: center;
}
/* Header banner */
.banner {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.button-container {
    position: absolute;
    top: 20px; 
    right: 20px; 
    z-index: 2; 
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 10px;
    border-radius: 8px;
    display: contents;
    gap: 10px;
}


.nav-btn {
    padding: 10px 20px;
    background-color: #d6c9c0;
    color: rgb(0, 0, 0);
    border: 2px solid rgb(65, 36, 36);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, border-color cubic-bezier(0.075, 0.82, 0.165, 1) ease;
}

.nav-btn:hover {
    background-color: #A0522D;
    border-color: #A0522D;
}
.dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
}

.dropbtn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 30px; 
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    right: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show dropdown content when hover on the button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Navigation bar */
nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.nav-btn {
    padding: 30px 30px;
    background-color: #a40e0e;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 33px;
}

.nav-btn:hover {
    background-color: #a40e0e;
}

.contact-location {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    background-color: white;
}

.contact-us, .location {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

h2 {
    color: #a40e0e;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #a40e0e;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

form button:hover {
    background-color: #a40e0e;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
}

footer {
    background-color: #a40e0e;
    color: white;
    padding: 10px;
    text-align: center;
}

.contact-us form {
    display: flex;
    flex-direction: column;
}

.contact-us label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-us input, .contact-us textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-us button {
    background-color: #a40e0e;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-us button:hover {
    background-color: #a40e0e;
}