

body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    color: #192F52;

    /*add gradient from top to bottom: white, to the light yellow #caae8e used, the gradient should show from 50% to 100%*/
    background: linear-gradient(to bottom, #caae8e 0%, white 30%);
}
.lang_button{
    margin-left: auto; padding: 5px 10px; background-color: #C88D4A; color: white; border: none; border-radius: 5px; cursor: pointer;
    float: right;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #192F52;
    padding: 15px 20px;
    color: white;

    border-top: solid 1px white;

    /*sticky navbar*/
    position: sticky;
    top: 0;

    z-index: 100;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-logo img {
    height: 50px;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}
.navbar a:hover {
    background-color: #C88D4A;
    border-radius: 5px;
}
.menu {
    display: flex;
    gap: 15px;
}

/*all menu 'a' get a underline of yellow*/
.menu a {

    border-right: 1px solid #C88D4A;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}
.container, .contact, .about, .faq, .testimonial-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}
h2 {
    color: #800509;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
}
.service-card {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #C88D4A;
}


.contact, .about {
    background-color: #F8F9FA;
    border-top: 5px solid #C88D4A;
}

.top-email{
    padding: 20px;
    color: white;

}

/*change the email highlighted and underlined text to the yellow color*/
.top-email a{
    color: white;
    

    /*no underline*/
    text-decoration: none;
}

/*on hover for top email a*/
.top-email a:hover{
    color: #C88D4A;
}



.business-hours{
    background-color: #F8F9FA;
    border-top: 5px solid #C88D4A;

    padding: 20px;
    margin-left: 10px;
    text-align: center;
}

.contact-business-hours{
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    max-width: 900px;
}

.contact, .bussiness-hours{
float: left;
padding: 10px;
}
.faq {
    background-color: #192F52;
    color: white;
    border-radius: 10px;

    /*max height with scroll down*/
    max-height: 400px;
    overflow-y: auto;
}
.faq h2, .faq h3, .faq p {
    color: white;
}
.testimonial-section {
    background-color: white;
    color: #192F52;
    background-color: #caae8e;
    border-radius: 10px;
}
.testimonial-section h2, .testimonial-section p {
    color: #192F52;
}
.footer {
    background-color: #C88D4A;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}


@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #800509;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 100;

        font-size: smaller;

    }
    .menu a {
        display: block;
        text-align: center;
        padding: 10px;
    }
    .menu-toggle {
        display: block;
    }

    .contact-business-hours{
        height: 600px;
        }

    .top-email{
        font-size: smaller;
    }
}


/*

*/

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}
.carousel-image {
    width: 100%;
    display: none;
}
.active {
    display: block;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 0;
    margin-right: 10px;
}
.next {
    right: 0;
    margin-left: 10px;
}

.logo-section{
    background-color: #800509;
}


.about, .carousel-container {
    display: flex;
    flex-direction: row;
    gap: 20px;

    padding: 20px;
    float: left;

    margin-top: 10px;
}

.carousel-about{
    height: 450px;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;

    margin-top: 20px;
}

.about{
    max-width: 500px;
    height: auto;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .about, .carousel-container {
        flex-direction: column;
    }
}

.custom-font {
    
    
}