*{
    margin: 0;
    /* font-family: sans-serif; */
}
/* @font-face {
    font-family: ;
    src: url();
} */

body{
    background: url(./image/home2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

section{
    height: 70vh;
    width: 100%;
}

section>header{
    height: 26vh;
    background-color: white;
}
section>header>.secondary-nav{
    height: 25%;
    width: 100%;
    background-color: black;
    display: grid;
    place-items: center;
    /* justify-content: center; */
    p{
        color: white;
        font-size: 1.1rem;
        text-transform: uppercase;
        font-family: "ztnature-Medium",sans-serif;
    }
}


.basic-flex{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}
h1{
    font-size: large;
    text-align: center;
    font-size: 3rem;
    font-weight: 100;
    text-transform: capitalize;
    transform: scale(1.2);
}

header>.nav-logo{
    width: 20%;
    flex-direction: column;
    line-height: 40px;
}

header h2{
    text-align: center;
    font-family: "negan-demo";
    font-weight: 100;
    font-size: 3rem;
    transform: (.8);
}

header .nav-item{
    height: 100%;
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.nav-item>a{
    text-decoration: none;
    font-size: 1.2rem;
    color: black;
}

/* header>.primary-nav{
    height: 100%;
    width: 100%;
    justify-content: space-between;
} */

.container{
    min-height: 76vh;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter:blur(2px) ;
}

.home>.left,.right{
    width:45%;
    height: 100%;
    color: white;
    h1{
        font-size: 2.5rem;
    }
}

.home>.right{
    width: 60%;
    padding: 30px;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    h2{
        background-color: black;
        padding: 8px 16px;
        font-size: 1.5rem;
    }
    p{
        font-size: 1.2rem;
    }
}

.home h2:hover{
    color: rgb(17, 16, 16);
    background-color: rgb(243, 238, 238);
}

.shop{
    height: 100vh;
    width: 100%;
    background-color: white;
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-evenly;
    /* background-color: rgba(0,0,0,0.4); */
}

.shop .card{
    height: 60vh;
    width: 300px;
    background-color: black;
    display: flex;
    align-items: flex-end;
    border: 1px gray solid;

    img{
        
        /* width: 80%; */
        border-radius: 25px;
    }
    h1{
        padding: 4px;
        font-size: 1.5rem;
    }
    p{
        padding-top: 4px;
        font-size: 1.3rem;
    }
    h3{
        padding-top: 4px;
    }
    a,h4{
        /* margin-top: 20px; */
        margin-left: 30px;
        font-size: large;
        border: 1px black solid;
        text-transform: uppercase;
        color: white;
        background-color: black;
        border-radius: 10px;
        /* text-align: center; */
        /* height: 85px; */
        /* align-items: center; */
        font-size: 3rem;
        /* padding-top: 9px; */
        cursor: pointer;
        text-decoration: none;
    }
}

.shop .inner-card{
    height: 92%;
    width: 100%;
    background-color: white;
    border-radius: 20% 20% 0% 0%/5%;
    color: rgba(33, 43, 48, 0.86);
    /* background-image: url(./image/home); */
    flex-direction: column
    

}


/* jbdskjbc */
.product-section {
  /* padding: 1px; */
  text-align: center;
}

.product-section h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  margin-top: 50px;
  background-color: rgba(181, 176, 176, 0.345);
  border: solid 1px rgba(181, 176, 176, 0.516);
  display: flex;
  text-align: center;
  align-items: center;
  margin-left: 50%;
  width: 199px;
  color: #0f0e0e;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}

.product-card p {
  color: #555;
  font-weight: bold;
}

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 50px;
}
