/* body */
#main{
    background-color: rgb(198, 246, 247);
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0px;
    padding: 0px;
}

/* header */
#main-header{
    background-color: lightgreen;
    padding: 15px;
    font-size: large;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    color: black;
}

/* details */
#details{
    font-size: medium;
    font-family: Georgia, 'Times New Roman', Times, serif;

}

/* swahili */
.swahili{
    font-style: italic;
}

/* acticity */
#activities{
    font-size: larger;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/* activity */
.activities{
    text-align: center;
    flex: auto;
    
}

/* visiting sites */
#visiting-sites{
    font-size: larger;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* visiting-sites */
.visiting-sites{
    text-align: center;
    width: 30%;
}

/* food type */
#food-type{
    font-size: larger;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* food-type */
.food-type{
    text-align: center;
        width: 30%;
}

/* Contact Form */
.contact-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.contact-section h2 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-section p {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 0.9rem;
    color: #d4af37;
    text-transform: uppercase;
}

input,
textarea {
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn {
    background: #d4af37;
    color: #000;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background: #fff;
}