@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

.eb-garamond-font {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.btn {
    background-color: #B68C5A;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: white;
    border: none;
}

/* Dark3 color */
.small-text {
    color: #707070;
    font-weight: 500;
    font-size: 1rem;
}

/* navbar style */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: space-between;
}

nav ul li a {
    /* color: white; */
    text-decoration: none;
    color: #707070;
    font-weight: 500;
    font-size: 1rem;

}

/* Banner style */
.banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: cover;
    height: 550px;
    margin-top: 50px;
}

.banner-container {
    width: 692px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title-description {
    color: #E7E7E7;
    width: 80%;
    margin-top: 24px;
}

.title-text {
    font-weight: bold;
    font-size: 72px;
    color: white;
}
.banner-search{
    margin-top: 40px;
}

.banner-search input {
    padding: 15px 100px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: white;
    border: none;
}

.banner-search-btn {
    background-color: #B68C5A;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: white;
    border: none;
}



/* media query for mobile */
@media screen and (max-width: 576px) {

    .nav-bar {
        flex-direction: column;
        gap: 15px;
    }

    .banner-container {
        width: 100%;
        gap: 20px;
    }
    .title-text {
    font-weight:600;
    font-size: 42px;
    
}
}