/*=============== GOOGLE FONT =============== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, sans-serif;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    padding: 30px;
    width: 100%;
}

.grid {
    display: grid;
}

/*=============== HEADER =============== */
header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 -1px 4px rgb(0 0 0 / 15%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo {
    font-size: 30px;
    font-weight: 700;
    color: black;
}

.nav_list {
    grid-template-columns: repeat(3, 1fr);
}

.nav_link {
    color: black;
    font-weight: 600;
    font-size: 20px;
}

.nav_link:hover {
    color: rgb(184, 184, 184);
    transition: 0.3s;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

/*=============== HOME =============== */
.home_container {
    background-color: black;
    grid-template-columns: 1fr 1fr;
    height: max-content;
}

.home_left {
    width: 50%;
    place-self: center;
}

.home_right {
    width: 50%;
    place-self: center;
}

.home_title,
.home_subtitle {
    color: white;
}

.home_title {
    font-size: 35px;
}

.home_subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.shopping_button {
    color: black;
    padding: 20px;
    background-color: white;
    border-radius: 100px;
}

.shopping_button:hover {
    background-color: grey;
    color: white;
    transition: 0.3s;
}

.shoes_picture {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/*=============== PORTFOLIO =============== */
.portfolio_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.portfolio_item {
    text-align: center;
}

/*=============== ABOUT =============== */
.about_container {
    background-color: black;
    padding: 30px 80px;
}

.about_title,
.about_article {
    color: white;
    text-align: center;
}

.about_title {
    font-size: 35px;
    margin-bottom: 20px;
}

/*=============== CONTACT =============== */
.contact_title,
.contact_data,
.contact_subtitle {
    text-align: center;
}

.contact_title {
    margin-bottom: 20px;
    font-size: 35px;
}

.contact_subtitle {
    font-weight: 600;
    margin-top: 20px;
    font-size: 18px;
}

/*=============== FOOTER =============== */
.footer_container {
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.footer_list {
    grid-template-columns: repeat(3, 1fr);
}

.footer_item {
    margin: auto 20px;
}

.footer_link {
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.footer_link:hover {
    color: rgb(184, 184, 184);
    transition: 0.3s;
}

/*=============== RESPONSIVE =============== */
@media (max-width: 710px) {
    .nav_list {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav_list.active {
        left: 0;
    }

    .nav_item {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }

    .home_container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "home_right"
            "home_left";
    }

    .home_left {
        text-align: center;
    }

    .home_right {
        margin-top: 40px;
    }
}