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

body {
    min-height: 100vh;
    background-image: url("./IMAGES/image 1.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white;
}


nav {
    padding: 16px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

#praroz {
    text-decoration: none;
    color: orange;
    font-size: 32px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.home {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.search_wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.search_input {
    border: 1px solid orange;
    background: transparent;
    color: white;
    padding: 10px 12px;
    min-width: 220px;
    outline: none;
}

.search_input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

#search {
    padding: 10px 14px;
    background: orange;
    color: white;
    border: 1px solid orange;
    cursor: pointer;
}


.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 18px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}


.web h1 {
    font-size: clamp(26px, 4vw, 48px);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
}

#developement {
    color: orange;
}

.design {
    max-width: 650px;
    margin-top: 12px;
    line-height: 1.6;
    font-size: 16px;
}

.us {
    margin-top: 14px;
    padding: 10px 18px;
    border: none;
    background: orange;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
}


#navbar {
    justify-self: end;
    width: 100%;
    max-width: 380px;
    background: rgba(0, 0, 0, 0.80);
    padding: 18px;
    border-radius: 12px;
}

#login {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    background: white;
    color: orange;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.form {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form input {
    width: 100%;
    border: none;
    border-bottom: 2px solid orange;
    background: transparent;
    color: white;
    padding: 10px 6px;
    outline: none;
    text-align: center;
}

.logi {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    background: orange;
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

#dont,
#log {
    text-align: center;
    text-transform: capitalize;
}

#flex {
    display: flex;
    justify-content: center;
    gap: 6px;
}

#up {
    color: orange;
}

#sign {
    color: white;
}

.social_row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social {
    font-size: 22px;
}

/*  TABLET */
@media (max-width: 992px) {
    .nav-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .search_wrap {
        justify-content: flex-start;
    }
}

/*  MOBILE */
@media (max-width: 600px) {
    #praroz {
        font-size: 26px;
    }

    .search_input {
        min-width: 100%;
    }

    #search {
        width: 100%;
    }

    #navbar {
        max-width: 100%;
    }
}

/*  LARGE SCREENS */
@media (min-width: 1400px) {

    .nav-inner,
    .main {
        max-width: 1400px;
    }
}

@media (max-width: 992px) {
    .main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #navbar {
        justify-self: center;
    }
}