@import url('https://fonts.googleapis.com/css2?family=Arima:wght@200;400;500;600&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,500&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(./img/home-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* -------- utility classes here------ */

.flex {
    display: flex;
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

.gap-20 {
    gap: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    color: #ffffff;
    background-color: rgb(227, 43, 43);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #000;
}

/* -------- utility classes end here------ */

/* ---- header section here ---- */

header {
    position: relative;
    font-family: 'Roboto', sans-serif;
    max-width: 1250px;
    width: 100%;
    margin: auto;
    padding: 15px 1rem;
    z-index: 11;
}

.navbar .logo img {
    width: 90px;
    cursor: pointer;
    filter: invert(1);
}

.menu-items li a {
    color: rgb(248, 170, 24);
    font-size: 20px;
    transition: all 0.3s ease;
}

.menu-items li a:hover {
    color: rgb(227, 43, 43);
}

/* ----- header section end here--- */

/* ------- home-content here------ */

.home-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0px 1rem;
}

.home-content h1 {
    margin-bottom: 30px;
    color: rgb(248, 170, 24);
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Red Rose', cursive;
}

.scrool-btn {
    position: absolute;
    right: 5%;
    bottom: 3%;
}

.scrool-btn img {
    width: 110px;
    cursor: pointer;
}

#bar{
    display: none;
    font-size: 3rem !important;
    color: #fff;
    cursor: pointer;
    margin-right: 8px;

}

/* --- @media query here ---- */

@media screen and (max-width:658px) {

    #bar{
        display: block;
    }

    header {
        background: #1d3244;
    }

    .menu-items {
        width: 100%;
        flex-flow: column;
        align-items: flex-start;
        background: #1d3244;
        position: absolute;
        padding: 1rem;
        top: 100%;
        left: 0;
        transition: all 0.3s ease;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .menu-items.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .menu-items li a {
        color: #fff;
    }

    .home-content h1 {
        font-size: 3.5rem;
    }

    .scrool-btn img {
        width: 80px;
    }
}

@media screen and (max-width:458px) {
    .home-content h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width:360px) {
    .home-content h1 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width:300px) {
    .home-content h1 {
        font-size: 2.4rem;
    }
}