* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
    list-style: none;
}


/* header */
.header {
    /* background-image: url(./images/mainback.jpg); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../../images/mainback.jpg);
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-box {
    position: absolute;
    bottom: 80px;
    padding: 0 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-title {
    color: white;
    font-size: 45px;
}

@media(max-width:900px) {
    .header-title {
        font-size: 30px;
    }
}

@media(max-width:550px) {
    .header-box {
        flex-direction: column;
        align-items: start;
    }
}

/* navbar */
.navbar-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    padding: 25px 0px;
    box-shadow: rgb(188, 187, 187) 0px 1px 5px 0px;
    border: none;
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar-link {
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.navbar-link:hover {
    color: grey;
}

.navbar-link::after {
    color: grey;
}

.btn-bar {
    display: none;
    border: none;
    background-color: white;
}

.fa-bars {
    font-size: 20px;
}

@media(max-width:900px) {
    .navbar-list {
        display: none;
    }

    .btn-bar {
        display: flex;
    }
}

/* modal res */
.modal-res {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 300px;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: white;
    z-index: 100;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-res-link {
    color: black;
    font-size: 18px;
}

.modal-res-item {
    margin-bottom: 10px;
}

.res-close-btn {
    border: none;
    background-color: white;
    font-size: 20px;
    cursor: pointer;
}

/* main */
.main {
    padding-left: 0;
    padding-right: 0;
    padding-top: 100px;
    padding-bottom: 30px;
}

.main-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.main-text {
    font-size: 14px;
    color: grey;
    font-weight: 600;
    margin-bottom: 10px;

}

.main-title {
    font-size: 35px;
    color: rgb(18, 18, 18);
    font-weight: 500;
    margin-bottom: 35px;
}

.main-subtext {
    color: grey;
    font-size: 25px;
}

label {
    color: black;
    font-weight: 600;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 40px;
}

#searchInput {
    width: 150px;
    height: 40px;
    outline: none;
    padding-left: 5px;
}

.main-btn {
    width: 80px;
    height: 40px;
    color: white;
    background-color: black;
    border: 1px solid black;
    font-weight: 600;
    cursor: pointer;
}

.main-btn:hover {
    opacity: 0.8;
}

.main-subtitle {
    font-size: 30px;
    color: grey;
    margin-bottom: 50px;
}

@media(max-width:900px) {
    .main-container {
        flex-direction: column;
    }

    .main-left {
        margin-bottom: 30px;
    }

    .main {
        padding: 50px 0px;
    }
}

@media(max-width:550px) {
    .main-title {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .main-subtext {
        font-size: 20px;
    }

    .search-box {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .main-subtitle {
        font-size: 25px;
        margin-bottom: 25px;
    }
    .main {
        padding-top: 50px;
        padding-bottom: 20px;
    }
}


/* about */
.about{
    font-family: sans-serif;
    padding-bottom: 30px;
    padding-top: 50px;
    background-color: rgb(249, 245, 239);
}
.about-container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.about-img{
    max-width: 600px;
    width: 100%;
    display: flex;
}
.about-title{
    color: rgb(113, 77, 9);
    font-size: 30px;
    margin-bottom: 25px;
}
.about-text{
    margin-bottom: 15px;

}
@media(max-width:1000px) {
    .about-img{
        max-width: 400px;
    }
}
@media(max-width:900px) {
    .about-img{
        max-width: 100%;
       
    }
    .about-container{
        flex-direction: column;
    }
    .about-title{
        font-size: 25px;
    }
}
@media(max-width:600px) {
    .about-container{
        gap: 30px;
    }
}


/* important */
.important{
    padding: 100px 0px;
}
.important-container{
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.important-wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.important-text{
    font-size: 24px;
}
.important-img{
    max-width: 500px;
    width: 100%;
}
.important-title{
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}
@media(max-width:1000px){
    .important-img{
        max-width: 300px;
    }
}
@media(max-width:900px) {
    .important{
        padding: 50px 0px;
    }
    .important-title{
        font-size: 25px;
    }
    .important-text{
        font-size: 16px;
    }
}
@media(max-width:600px) {
    .important-title{
        font-size: 20px;
    }
    .important-wrap{
        flex-direction: column-reverse;
        gap: 15px;
    }
}

/* footer */
.footer{
    background-color: rgb(34, 58, 58);
    padding: 80px 0px;
}
.footer-container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}
.footer-social{
    display: flex;
    flex-direction: column;
}
.footer-text{
    color: white;
    font-size: 18px;
}
.footer-link{
    color: white;
    opacity: 0.8;
    margin-bottom: 10px;
}
.footer-link:hover{
    opacity: 1;
}
.footer-item{
    margin-bottom: 10px;
}
@media(max-width:600px) {
    .footer{
        padding: 30px 0px;
    }
}
