/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: white;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    height: 70px;

    padding: 0 30px;

    background: white;

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

    position: relative;
    z-index: 10;
}


/* =========================================================
   FIVE BEL_W IMAGE
   LEFT SIDE OF HEADER
========================================================= */

.header-logo {
    display: block;

    width: 150px;
    height: 50px;

    object-fit: contain;
    object-position: left center;
}


/* =========================================================
   NAVIGATION
   RIGHT SIDE OF HEADER
========================================================= */

nav {
    display: flex;
    align-items: center;

    gap: 30px;
}

nav a {
    color: #111;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;
}

nav a:hover {
    color: #3155ff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;

    min-height: 500px;

    background: #3155ff;

    color: white;

    padding: 60px;
}


.hero-content {
    max-width: 650px;
}


/* YOU'VE ARRIVED */
 
.hero h1 {
    font-size: 16px;

    margin-bottom: 20px;
}


/* MAIN TITLE */

.hero h1 {
    font-size: 72px;

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -4px;

    margin-bottom: 30px;
}


/* SUBTITLE */

.hero-subtitle {
    font-size: 18px;

    margin-bottom: 30px;
}


/* =========================================================
   SHOP NOW BUTTON
========================================================= */

.button {
    display: inline-block;

    padding: 14px 30px;

    background: white;

    color: #3155ff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;
}

.button:hover {
    background: #eeeeee;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 70px 40px;
}


.small-title {
    color: #3155ff;

    font-size: 14px;

    font-weight: bold;

    margin-bottom: 10px;
}


h2 {
    font-size: 42px;

    margin-bottom: 40px;
}


/* =========================================================
   CATEGORIES
========================================================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.category {
    text-align: center;
}


.placeholder {
    height: 220px;

    background: #f2f2f2;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;

    font-weight: bold;
}


.category h3 {
    margin-top: 15px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    background: #f5f5f5;
}


.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.product {
    background: white;

    padding: 20px;

    border-radius: 20px;
}


.product-image {
    height: 250px;

    background: #eeeeee;

    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;

    margin-bottom: 20px;
}


.product h3 {
    margin-bottom: 10px;
}


.product p {
    color: #666;

    margin-bottom: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 80px 40px;

    text-align: center;
}


.about h2 {
    color: #3155ff;
}


.about p:last-child {
    max-width: 600px;

    margin: 0 auto;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 30px 40px;

    background: #111;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 64px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header {
        height: 65px;

        padding: 0 15px;
    }


    .header-logo {
        width: 120px;
        height: 45px;
    }


    nav {
        gap: 12px;
    }


    nav a {
        font-size: 11px;
    }


    .hero {
        min-height: 450px;

        padding: 50px 30px;
    }


    .hero h1 {
        font-size: 50px;

        letter-spacing: -3px;
    }


    .section {
        padding: 60px 25px;
    }


    h2 {
        font-size: 34px;
    }


    .category-grid {
        grid-template-columns: 1fr;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    footer {
        padding: 30px 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .header {
        padding: 0 10px;
    }


    .header-logo {
        width: 105px;
        height: 40px;
    }


    nav {
        gap: 8px;
    }


    nav a {
        font-size: 9px;
    }


    .hero h1 {
        font-size: 43px;
    }
}