body{
    background-color: #B0413E;
    background-image: url(images/main-hero.jpeg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    font-family:"Roboto", sans-serif;
    color: #fdfbd4;
    /* height: 100vh; */
}
/*  logo */
.logo {
        font-family: 'Roboto', sans-serif;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
    }

    .arrow-up,
    .arrow-down {
        font-size: 40px;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

    .text-line {
        font-size: 32px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .text-line span {
        font-size: 32px;
    }


/* end of logo */

.nav_links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #473335;
    padding: 1rem 2rem;
    position: sticky;
    top:0;
    width: 100%;
    z-index: 10;
}
.nav_links button {
    background-color: #473335;
    color:#FDFBD4;
    border: none;
    cursor: pointer;
}
.nav_links a {
    color: #FDFBD4;
    text-decoration: none;
    color:#FDFBD4;
    text-shadow: #000000;
}
.home_brush-icon {
    height: 15vh;
    width: 10vh;
    width: auto;
    cursor: pointer;
}
.global-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.link_content {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.link_content li a {
    text-decoration: none;
    color: #FDFBD4;
    font-size: 2.2rem;
    font-weight: 600;
}
.link_content li a:hover {
    opacity: 0.7;
}
.nav_links .link_content {
    display: none;
    background-color:#473335 ;
    box-shadow: 3px 3px 6px #473335 (0, 0%, 0%, 0.8);
} 
.nav_links:hover .link_content {
    display: inline-flex;
    z-index: 2;
}
*.link_content li {
    float:left;
    width:200px;
    opacity: .7;
    text-align: center;
}
 *.link_content li a {
    text-decoration: none;
    color: #FDFBD4;
    display: block;
}
 *.link_content li a:hover {
    background-color: #583e4165; 
}


.hero-banner_title{
    color: #FDFBD4;       
    border-style: groove;
    border-color: #444;
}

h1 {
    display: flex;
    border: 2rem solid #473335;
    background-color: #548687ed;
    font-family:"Roboto", sans-serif;
    font-size: 4rem;
    justify-content: center;
    margin-bottom: 7rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap:5rem;
    padding: 2rem;
}
.product-card:hover{
    border: #fdf890 ;
}

.product-card {
    background: #FDFBD4;
    border: 2rem solid #548687;
    border-radius: 12px;
    padding: 1rem;
    color: #473335;
    text-align: center;
    font-family:"Roboto", sans-serif;

}
/* Beginning of targettting the inner description of contact card */
.product_name {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    color:#FDFBD4;
    border: .5rem solid #548687;
    background-color: #B0413E;
}
.product_price {
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
}
.product_description {
    /* font-size: 4rem; */
}

/* end of targeting the inner description */

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}
/*  footer */
.socials{
    display: flex;
    justify-content: start;
    margin-top: 20vh;
    background-color:#B0413E;
    height: 12vh;
}
.footer_logos {
    background-color: #548687;
    justify-items: end;
    width: 100%;
}
.foot-icon {
    height: 7vh;
    margin-left: 1rem;
    margin-right: 1rem;
    justify-items: end;
}
/* responsive */



/* mobile */
@media screen and (min-width: 300px) and (max-width: 800px) {
  body {background-image: url(images/main-hero.jpeg);
    background-repeat: repeat(100% 100%);
    background-size: 5000px 4000px ;
    background-position: center; 
    background-position: absolute; 
    /* background-position: sticky; */
  }
 .nav_links {
     contain: content;
     height: fit-content;
     width: fit-content;
    position: relative;
        z-index: 2000;
        
    }
.global-nav {
    width: 900px;
}
h1 {
  margin-left: 400px;
  padding: 15% 60%;
    }
.product-grid {
    display: grid;
    /* justify-content: end; */
    /* align-items: center; */
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap:5rem; 
    padding: 2rem;
}
.product-card {
    width: fit-content;
    height: fit-content;
    gap:5rem;
    padding: 2rem;
    margin-left: auto;
}
.product_description {
    font-size: 1rem;
    letter-spacing: .5px;
}
.socials{
    display: flex;
    margin-top: 20vh;
    margin-bottom: 10rem;
    height: 12vh;
    width: 100vh;
}
.footer_logos {
    justify-items: end;
    height: 10rem;
    /* width: 100%; */
}
.foot-icon {
     margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 10%;
    justify-items: end;
}

}

 /* tablet  */
@media screen and (min-width: 641px) and (max-width:1024px) {
    .nav_links {
     contain: content;
     height: fit-content;
     width: fit-content;
    }
.global-nav {
    width: 1080px;
}
.product-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap:5rem;
    padding: 2rem;
}
.product_description {
    /* font-size: 2rem; */
    letter-spacing: .5px;
}

    }

/*  desktop */
@media screen and (min-width: 1025px) {

}